diff --git a/api/services/docling/finalize.py b/api/services/docling/finalize.py index bb1d9c5..913642a 100644 --- a/api/services/docling/finalize.py +++ b/api/services/docling/finalize.py @@ -59,6 +59,61 @@ GEOMETRY = [ extract=["--docling", "results/genreport/ocrh556/ocr.json", "--board", "ocr", "--marks-fill", "results/genreport/ocrh556/marks_fill.json"]), ] + +B1_GEOMETRY = [ + dict(slug="b1-aqa-biology-7402-1-2023jun", title="AQA A-level Biology 7402/1 2023 Jun (image-only OCR baseline)", + board="aqa", level="A-level", path="B1 image-only OCR (RapidOCR margin-pass)", + storage_loc="cc.examboards/aqa/biology/7402/1/2023-jun/qp.pdf", + pdf="samples/b1/aqa-biology-7402-1-2023jun.pdf", + docling="results/b1_rapid/b1-aqa-biology-7402-1-2023jun/merged.json", + rapid="results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p*.json", + gt_key="b1-aqa-biology-7402-1-2023jun"), + dict(slug="b1-aqa-chemistry-7405-1-2022jun", title="AQA A-level Chemistry 7405/1 2022 Jun (image-only OCR baseline)", + board="aqa", level="A-level", path="B1 image-only OCR (RapidOCR margin-pass)", + storage_loc="cc.examboards/aqa/chemistry/7405/1/2022-jun/qp.pdf", + pdf="samples/b1/aqa-chemistry-7405-1-2022jun.pdf", + docling="results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/merged.json", + rapid="results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p*.json", + gt_key="b1-aqa-chemistry-7405-1-2022jun"), + dict(slug="b1-aqa-physics-7408-1-2022jun", title="AQA A-level Physics 7408/1 2022 Jun (image-only OCR baseline)", + board="aqa", level="A-level", path="B1 image-only OCR (RapidOCR margin-pass)", + storage_loc="cc.examboards/aqa/physics/7408/1/2022-jun/qp.pdf", + pdf="samples/b1/aqa-physics-7408-1-2022jun.pdf", + docling="results/b1_rapid/b1-aqa-physics-7408-1-2022jun/merged.json", + rapid="results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p*.json", + gt_key="b1-aqa-physics-7408-1-2022jun"), + dict(slug="b1-aqa-biology-8461-1h-2022jun", title="AQA GCSE Biology 8461/1H 2022 Jun (image-only OCR baseline)", + board="aqa", level="GCSE", path="B1 image-only OCR (RapidOCR margin-pass)", + storage_loc="cc.examboards/aqa/biology/8461/1h/2022-jun/qp.pdf", + pdf="samples/b1/aqa-biology-8461-1h-2022jun.pdf", + docling="results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/merged.json", + rapid="results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p*.json", + gt_key="b1-aqa-biology-8461-1h-2022jun"), + dict(slug="b1-aqa-chemistry-8462-1h-2022jun", title="AQA GCSE Chemistry 8462/1H 2022 Jun (image-only OCR baseline)", + board="aqa", level="GCSE", path="B1 image-only OCR (RapidOCR margin-pass)", + storage_loc="cc.examboards/aqa/chemistry/8462/1h/2022-jun/qp.pdf", + pdf="samples/b1/aqa-chemistry-8462-1h-2022jun.pdf", + docling="results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/merged.json", + rapid="results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p*.json", + gt_key="b1-aqa-chemistry-8462-1h-2022jun"), + dict(slug="b1-aqa-combined-8464-b1h-2022jun", title="AQA GCSE Combined Science Trilogy 8464/B/1H 2022 Jun (image-only OCR baseline)", + board="aqa", level="GCSE", path="B1 image-only OCR (RapidOCR margin-pass)", + storage_loc="cc.examboards/aqa/combined-science-trilogy/8464/b-1h/2022-jun/qp.pdf", + pdf="samples/b1/aqa-combined-8464-b1h-2022jun.pdf", + docling="results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/merged.json", + rapid="results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p*.json", + gt_key="b1-aqa-combined-8464-b1h-2022jun"), + dict(slug="b1-aqa-combined-8464-c1h-2022jun", title="AQA GCSE Combined Science Trilogy 8464/C/1H 2022 Jun (image-only OCR baseline; 8465 not present in dev catalogue)", + board="aqa", level="GCSE", path="B1 image-only OCR (RapidOCR margin-pass)", + storage_loc="cc.examboards/aqa/combined-science-trilogy/8464/c-1h/2022-jun/qp.pdf", + pdf="samples/b1/aqa-combined-8464-c1h-2022jun.pdf", + docling="results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/merged.json", + rapid="results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p*.json", + gt_key="b1-aqa-combined-8464-c1h-2022jun"), +] + +GT_LABELS_PATH = "fixtures/b1_gt_labels.json" + FAST = [ dict(slug="aqa-physics-7408-fast", title="AQA A-level Physics 7408/1 (born-digital)", board="aqa", level="A-level", pdf="samples/extra/aqa-alevel-physics-7408-1-jun22-qp.pdf", @@ -95,16 +150,65 @@ def jload(p): return {} -def stats_from(struct, val): + +def load_gt_labels(): + try: + return json.load(open(GT_LABELS_PATH)) + except Exception: + return {} + + +def part_labels(struct): + labels = [] + for q in struct.get("questions", []) or []: + for part in q.get("parts", []) or []: + lab = part.get("label") + if lab: + labels.append(lab) + return labels + + +def coverage_against_labels(struct, labels): + if not labels: + return None + rec = set(part_labels(struct)) + gt = set(labels) + hit = sorted(rec & gt) + miss = sorted(gt - rec) + return {"coverage_pct": round(len(hit) / len(gt) * 100, 1), + "recovered": len(hit), "total": len(gt), "missed": miss, + "source": "fixtures/b1_gt_labels.json"} + + +def answer_region_count(struct): + top = len(struct.get("regions", []) or []) + per_part = 0 + for q in struct.get("questions", []) or []: + for part in q.get("parts", []) or []: + per_part += len(part.get("regions", []) or []) + return top + per_part + + +def ensure_rapid_cache(p): + if os.path.exists(p["docling"]): + return True + if not os.path.exists(p["pdf"]): + print(f" ! missing source PDF for {p['slug']}: {p['pdf']} (storage_loc={p.get('storage_loc')})") + return False + return run(["scripts/rapid_pass.py", p["pdf"], "b1_rapid/" + p["slug"]]) + +def stats_from(struct, val, gt_labels=None): st = struct.get("stats", {}) or {} mc = st.get("marks_check") or {} - cov = struct.get("coverage", {}) or {} + cov = coverage_against_labels(struct, gt_labels) if gt_labels else (struct.get("coverage", {}) or {}) return { "board": struct.get("board"), "paper_code": struct.get("paper_code"), "n_questions": st.get("n_questions"), "n_parts": st.get("n_parts"), "marks_sum": mc.get("sum"), "official_max": mc.get("expected_max"), "marks_pct": mc.get("pct"), - "coverage_pct": cov.get("coverage_pct"), "coverage_missed": cov.get("missed", []), + "coverage_pct": cov.get("coverage_pct"), "coverage_recovered": cov.get("recovered"), + "coverage_total": cov.get("total"), "coverage_source": cov.get("source"), + "coverage_missed": cov.get("missed", []), "answer_regions": answer_region_count(struct), "validate_verdict": (val.get("summary") or {}).get("worst_severity"), "validate_flags": val.get("flags", []), "questions_expected": (val.get("summary") or {}).get("questions_expected"), @@ -113,12 +217,15 @@ def stats_from(struct, val): } -def do_geometry(p, overlays): +def do_geometry(p, overlays, gt_labels=None, prepare_ocr=False): d = os.path.join(FINAL, p["slug"]); os.makedirs(d, exist_ok=True) S, F, B, R, T, V = (os.path.join(d, f) for f in ("structured.json", "furniture.json", "bands.json", "page_roles.json", "template.json", "validate.json")) - ex = ["extract.py"] + p["extract"] + ["--out", S] + if prepare_ocr and not ensure_rapid_cache(p): + raise RuntimeError(f"unable to prepare B1 OCR cache for {p['slug']}") + extract_args = p.get("extract") or ["--docling", p["docling"], "--rapid", p["rapid"], "--board", p.get("board", "aqa")] + ex = ["extract.py"] + extract_args + ["--out", S] if p.get("gt"): ex += ["--gt", p["gt"]] run(ex) @@ -138,7 +245,7 @@ def do_geometry(p, overlays): odbg = os.path.join(d, "overlays", "debug") run(["scripts/overlay.py", S, p["pdf"], "--docling", p["docling"], "--bands", B, "--furniture", F, "--pages", "1,2,3,4,5", "--dpi", "120", "--out", odbg]) - return stats_from(jload(S), jload(V)), d + return stats_from(jload(S), jload(V), gt_labels), d def do_fast(p): @@ -164,6 +271,7 @@ def per_paper_report(p, s, d, kind): + (f" (missed {s['coverage_missed'][:8]})" if s.get('coverage_missed') else "") if s['coverage_pct'] is not None else "- **coverage vs GT:** n/a", f"- **G6 verdict:** {s['validate_verdict']}", + f"- **answer-region count:** {s.get('answer_regions')}", ] if s["validate_flags"]: lines += ["", "**Flags (human-review hints):**"] + [f"- {f}" for f in s["validate_flags"]] @@ -178,21 +286,28 @@ def per_paper_report(p, s, d, kind): def main(): ap = argparse.ArgumentParser() ap.add_argument("--no-overlays", action="store_true") + ap.add_argument("--b1-only", action="store_true", help="run only the Sprint B1 image-only OCR eval corpus") + ap.add_argument("--prepare-ocr", action="store_true", help="populate missing B1 RapidOCR caches via dsync before running") a = ap.parse_args() os.makedirs(FINAL, exist_ok=True) catalog = {"generated_at": datetime.datetime.now().isoformat(timespec="seconds"), "papers": []} total_imgs = 0 - for p in GEOMETRY: + gt_fixtures = load_gt_labels() + geometry = B1_GEOMETRY if a.b1_only else GEOMETRY + fast = [] if a.b1_only else FAST + + for p in geometry: print(f"[geometry] {p['slug']}") - s, d = do_geometry(p, not a.no_overlays) + gt_labels = (gt_fixtures.get(p.get("gt_key") or p["slug"], {}) or {}).get("labels") + s, d = do_geometry(p, not a.no_overlays, gt_labels=gt_labels, prepare_ocr=a.prepare_ocr) n = per_paper_report(p, s, d, p["path"]) total_imgs += n catalog["papers"].append({**{k: p[k] for k in ("slug", "title", "board", "level")}, "kind": "geometry", "path": p["path"], "dir": d, "overlay_images": n, **s}) - for p in FAST: + for p in fast: print(f"[fast] {p['slug']}") s, d = do_fast(p) per_paper_report(p, s, d, "born-digital fast-path") @@ -214,13 +329,13 @@ def write_index(catalog, total_imgs): "`overlays/template/` (human-review view, all pages) and `overlays/debug/` (raw-detection view).", "Machine catalog: `catalog.json`.", "", "## Image-only / OCR-path (with geometry + overlays)", "", - "| Paper | Board / level | Q/parts | Marks/max | Coverage | G6 | Images |", - "|---|---|---|---|---|---|---|"] + "| Paper | Board / level | Q/parts | Marks/max | Coverage | Answer regions | G6 | Images |", + "|---|---|---|---|---|---|---|---|"] for p in g: cov = f"{p['coverage_pct']}%" if p['coverage_pct'] is not None else "n/a" L.append(f"| [{p['title']}]({p['slug']}/report.md) | {p['board']} {p['level']} | " f"{p['n_questions']}/{p['n_parts']} | {p['marks_sum']}/{p['official_max']} " - f"({p['marks_pct']}%) | {cov} | {p['validate_verdict']} | " + f"({p['marks_pct']}%) | {cov} | {p.get('answer_regions')} | {p['validate_verdict']} | " f"{p['overlay_images']} |") L += ["", "## Born-digital fast-path (CPU, no geometry)", "", "| Paper | Board / level | Q/parts | Marks/max | Coverage | G6 |", diff --git a/api/services/docling/fixtures/b1_gt_labels.json b/api/services/docling/fixtures/b1_gt_labels.json new file mode 100644 index 0000000..7f39758 --- /dev/null +++ b/api/services/docling/fixtures/b1_gt_labels.json @@ -0,0 +1,356 @@ +{ + "b1-aqa-biology-7402-1-2023jun": { + "source_pdf": "cc.examboards/aqa/biology/7402/1/2023-jun/qp.pdf", + "source_method": "AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.", + "board_detected": "aqa", + "paper_code_detected": "7402/1", + "labels": [ + "01.1", + "01.2", + "01.3", + "02.1", + "02.2", + "02.3", + "03.1", + "03.2", + "03.3", + "03.4", + "03.5", + "04.1", + "04.2", + "04.3", + "05.1", + "05.2", + "05.3", + "05.4", + "05.5", + "06.1", + "06.2", + "06.3", + "06.4", + "07.1", + "07.2", + "89.6", + "08.1", + "08.2", + "08.3", + "08.4", + "09.1", + "09.2", + "09.3", + "09.4", + "09.5", + "09.6", + "10.1", + "10.2", + "10.3" + ] + }, + "b1-aqa-chemistry-7405-1-2022jun": { + "source_pdf": "cc.examboards/aqa/chemistry/7405/1/2022-jun/qp.pdf", + "source_method": "AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.", + "board_detected": "aqa", + "paper_code_detected": "7405/1", + "labels": [ + "01.1", + "01.2", + "01.3", + "01.4", + "01.5", + "01.6", + "02.1", + "02.2", + "02.3", + "02.4", + "02.5", + "03.1", + "03.2", + "03.3", + "03.4", + "03.5", + "04.1", + "04.2", + "04.3", + "04.4", + "04.5", + "05.1", + "05.2", + "05.3", + "05.4", + "05.5", + "05.6", + "05.7", + "06.1", + "06.2", + "06.3", + "06.4", + "06.5", + "06.6", + "06.7", + "07.1", + "07.2", + "07.3", + "07.4", + "07.5", + "07.6", + "07.7", + "08.1", + "08.2", + "08.3", + "08.4", + "08.5" + ] + }, + "b1-aqa-physics-7408-1-2022jun": { + "source_pdf": "cc.examboards/aqa/physics/7408/1/2022-jun/qp.pdf", + "source_method": "AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.", + "board_detected": "aqa", + "paper_code_detected": "7408/1", + "labels": [ + "01.1", + "01.2", + "01.3", + "01.4", + "01.5", + "02.1", + "02.2", + "02.3", + "02.4", + "03.1", + "03.2", + "03.3", + "03.4", + "03.5", + "04.1", + "04.2", + "04.3", + "04.4", + "04.5", + "05.1", + "05.2", + "05.3", + "05.4", + "05.5", + "05.6", + "06.1", + "06.2", + "06.3", + "07.0", + "08.0", + "09.0", + "10.0", + "11.0", + "12.0", + "13.0", + "14.0", + "15.0", + "16.0", + "17.0", + "18.0", + "19.0", + "20.0", + "21.0", + "22.0", + "23.0", + "24.0", + "25.0", + "26.0", + "27.0", + "28.0", + "29.0", + "30.0", + "31.0" + ] + }, + "b1-aqa-biology-8461-1h-2022jun": { + "source_pdf": "cc.examboards/aqa/biology/8461/1h/2022-jun/qp.pdf", + "source_method": "AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.", + "board_detected": "aqa", + "paper_code_detected": "8461/1", + "labels": [ + "01.1", + "01.2", + "01.3", + "01.4", + "01.5", + "01.6", + "01.7", + "01.8", + "01.9", + "02.1", + "02.2", + "02.3", + "02.4", + "02.5", + "02.6", + "03.1", + "03.2", + "03.3", + "03.4", + "03.5", + "04.1", + "04.2", + "04.3", + "04.4", + "04.5", + "05.1", + "05.2", + "05.3", + "05.4", + "05.5", + "06.1", + "06.2", + "06.3", + "06.4", + "06.5", + "07.1", + "07.2", + "07.3", + "07.4", + "07.5", + "07.6", + "07.7", + "07.8" + ] + }, + "b1-aqa-chemistry-8462-1h-2022jun": { + "source_pdf": "cc.examboards/aqa/chemistry/8462/1h/2022-jun/qp.pdf", + "source_method": "AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.", + "board_detected": "aqa", + "paper_code_detected": "8462/1", + "labels": [ + "01.1", + "01.2", + "01.3", + "01.4", + "01.5", + "01.6", + "01.7", + "02.1", + "02.2", + "02.3", + "02.4", + "02.5", + "02.6", + "03.1", + "03.2", + "03.3", + "03.4", + "03.5", + "04.1", + "04.2", + "04.3", + "04.4", + "04.5", + "04.6", + "04.7", + "05.1", + "05.2", + "05.3", + "05.4", + "05.5", + "06.1", + "06.2", + "06.3", + "06.4", + "06.5", + "06.6", + "07.1", + "07.2", + "07.3", + "07.4", + "07.5", + "07.6", + "08.1", + "08.2", + "08.3", + "08.4", + "08.5" + ] + }, + "b1-aqa-combined-8464-b1h-2022jun": { + "source_pdf": "cc.examboards/aqa/combined-science-trilogy/8464/b-1h/2022-jun/qp.pdf", + "source_method": "AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.", + "board_detected": "aqa", + "paper_code_detected": null, + "labels": [ + "01.1", + "01.2", + "01.3", + "01.4", + "01.5", + "01.6", + "01.7", + "01.8", + "02.1", + "02.2", + "02.3", + "02.4", + "02.5", + "02.6", + "02.7", + "03.1", + "03.2", + "03.3", + "03.4", + "03.5", + "03.6", + "03.7", + "04.1", + "04.2", + "04.3", + "04.4", + "04.5", + "05.1", + "05.2", + "05.3", + "05.4", + "05.5", + "05.6", + "06.1", + "06.2", + "06.3" + ] + }, + "b1-aqa-combined-8464-c1h-2022jun": { + "source_pdf": "cc.examboards/aqa/combined-science-trilogy/8464/c-1h/2022-jun/qp.pdf", + "source_method": "AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.", + "board_detected": "aqa", + "paper_code_detected": null, + "labels": [ + "01.1", + "01.2", + "01.3", + "01.4", + "01.5", + "02.1", + "02.2", + "02.3", + "02.4", + "02.5", + "03.0", + "04.1", + "04.2", + "04.3", + "04.4", + "04.5", + "04.6", + "04.7", + "05.1", + "05.2", + "05.3", + "05.4", + "06.1", + "06.2", + "06.3", + "06.4", + "06.5", + "07.1", + "07.2", + "07.3", + "07.4", + "07.5", + "07.6" + ] + } +} diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/merged.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/merged.json new file mode 100644 index 0000000..9dbf1d1 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/merged.json @@ -0,0 +1 @@ +{"texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 173.35699462890625, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 726.4844970703125, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.957275390625, "r": 130.65198771158853, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.957275390625, "r": 403.7949625651042, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 653.9129231770834, "r": 102.32291666666667, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 628.44921875, "r": 120.08144124348958, "b": 614.8685709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 601.7123209635416, "r": 156.02130126953125, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 588.1316731770834, "r": 297.24383544921875, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.01373036702474, "t": 555.0288492838542, "r": 150.52461751302084, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "A-level BIOLOGY", "text": "A-level BIOLOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 483.30605061848956, "r": 96.40340169270833, "b": 465.48146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Paper 1", "text": "Paper 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 437.89577229817706, "r": 198.30350748697916, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Wednesday 7 June 2023", "text": "Wednesday 7 June 2023", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 408.18813069661456, "r": 92.59801228841145, "b": 395.45627848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 393.75868733723956, "r": 186.4644775390625, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 379.75364176432294, "r": 231.28361002604166, "b": 368.71938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "\u00b7arulerwithmillimetremeasurements", "text": "\u00b7arulerwithmillimetremeasurements", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 367.44618733723956, "r": 156.44412231445312, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7a scientific calculator.", "text": "\u00b7a scientific calculator.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 341.98248291015625, "r": 109.0880635579427, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 327.9774373372396, "r": 231.28361002604166, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 300.8161417643229, "r": 158.13541666666666, "b": 287.2354939778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7Answer all questions.", "text": "\u00b7Answer all questions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 314.39678955078125, "r": 239.31722005208334, "b": 299.96734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 286.81109619140625, "r": 385.6136067708333, "b": 260.49859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 118]}], "orig": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 260.0741984049479, "r": 424.5132649739583, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 139]}], "orig": "\u00b7If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "\u00b7If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 233.76169840494788, "r": 161.09516398111978, "b": 220.60544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Show all your working.", "text": "Show all your working.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 220.60544840494788, "r": 402.9493408203125, "b": 195.56614176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 181.56109619140625, "r": 106.12831624348958, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 166.28289794921875, "r": 300.20359293619794, "b": 155.24859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Themarksforthequestionsareshowninbrackets.", "text": "\u00b7Themarksforthequestionsareshowninbrackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 152.70220947265625, "r": 246.0823771158854, "b": 141.66794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "\u00b7The maximum markfor thispaperis91.", "text": "\u00b7The maximum markfor thispaperis91.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 212.679443359375, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "JUN237402101", "text": "JUN237402101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 268.491943359375, "t": 438.32017008463544, "r": 332.76088460286456, "b": 421.76877848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Afternoon", "text": "Afternoon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 402.5264892578125, "t": 438.74456787109375, "r": 545.4403076171875, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Time allowed: 2 hours", "text": "Time allowed: 2 hours", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 364.0497233072917, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "IB/M/Jun23/E9", "text": "IB/M/Jun23/E9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 485.8224283854167, "t": 35.14475504557288, "r": 550.93701171875, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "7402/1", "text": "7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 180.54498291015625, "t": 775.7143351236979, "r": 397.45263671875, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Answer all questionsinthespacesprovided.", "text": "Answer all questionsinthespacesprovided.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.04734802246094, "t": 738.7919616699219, "r": 102.32291666666667, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.58474731445312, "t": 737.5187683105469, "r": 533.601318359375, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Give the three structural features found in all virus particles and describe the function ofoneofthesefeatures.", "text": "Give the three structural features found in all virus particles and describe the function ofoneofthesefeatures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.553955078125, "t": 710.7818806966146, "r": 535.7154134114584, "b": 697.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.43039957682292, "t": 683.1961873372396, "r": 120.50426228841145, "b": 675.9814758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 659.0056762695312, "r": 122.19554646809895, "b": 647.1225992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 633.1175537109375, "r": 121.77272542317708, "b": 622.9320882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 608.0782470703125, "r": 265.95501708984375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Functionofonenamedfeature", "text": "Functionofonenamedfeature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.62452697753906, "t": 493.91595458984375, "r": 107.3967793782552, "b": 478.21331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 112.04782104492188, "t": 492.21836344401044, "r": 413.9427083333333, "b": 477.36452229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Explain why viruses are described as acellular and non-living.", "text": "Explain why viruses are described as acellular and non-living.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.553955078125, "t": 478.63771565755206, "r": 536.1382242838541, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.62452697753906, "t": 286.81109619140625, "r": 102.32291666666667, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.73910522460938, "t": 284.2647501627604, "r": 434.2381591796875, "b": 271.1085001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Give one reason why antibiotics are not effective against viruses.", "text": "Give one reason why antibiotics are not effective against viruses.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 490.0506591796875, "t": 271.53289794921875, "r": 535.7154134114584, "b": 256.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.77225240071615, "t": 27.08127848307288, "r": 79.91335042317708, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 558.125, "t": 198.11252848307288, "r": 564.89013671875, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 528.5274658203125, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "02.1 Chitin is a polysaccharide. The chitin monomer is a \u03b2-glucose molecule with one OH", "text": "02.1 Chitin is a polysaccharide. The chitin monomer is a \u03b2-glucose molecule with one OH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 733.2748209635416, "r": 454.1107991536458, "b": 718.8453877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "Figure 1 shows the monomer that forms chitin and the chitin polymer.", "text": "Figure 1 shows the monomer that forms chitin and the chitin polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 302.3177083333333, "t": 707.38671875, "r": 347.5596516927083, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 356.8617350260417, "t": 673.4350992838541, "r": 369.9691975911458, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "OH", "text": "OH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 275.67991129557294, "t": 641.1810709635416, "r": 295.1297200520833, "b": 628.44921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HO", "text": "HO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 328.9554850260417, "t": 627.6004231770834, "r": 360.6671142578125, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 278.21685791015625, "t": 594.4975992838541, "r": 309.50567626953125, "b": 580.4925537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 412.2514241536458, "t": 594.4975992838541, "r": 443.5402425130208, "b": 580.4925537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 317.53928629557294, "t": 577.9461873372395, "r": 335.2978108723958, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HH", "text": "HH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 454.1107991536458, "t": 579.643778483073, "r": 473.9833984375, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "OH", "text": "OH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 174.2026570638021, "t": 545.692159016927, "r": 193.6524658203125, "b": 532.9603068033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HO", "text": "HO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 382.6538899739583, "t": 544.418965657552, "r": 408.8688151041667, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HH", "text": "HH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 225.78692626953125, "t": 530.4139404296875, "r": 257.07574462890625, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 364.0497233072917, "t": 530.4139404296875, "r": 395.3385416666667, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 502.4038492838542, "r": 313.73388671875, "b": 490.09637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Chitin has a similar structure to cellulose.", "text": "Chitin has a similar structure to cellulose.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 474.81817626953125, "r": 523.03076171875, "b": 449.77886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 101]}], "orig": "Use Figure 1 to describe three ways the structure of chitin is similar to the structure of cellulose.", "text": "Use Figure 1 to describe three ways the structure of chitin is similar to the structure of cellulose.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 447.23248291015625, "r": 535.7154134114584, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.8532206217448, "t": 341.55808512369794, "r": 120.92708333333333, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 447.23248291015625, "r": 535.7154134114584, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.8532206217448, "t": 341.55808512369794, "r": 120.92708333333333, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 147.18511962890625, "r": 391.1103108723958, "b": 132.75567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}, {"page_no": 3, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [38, 47]}, {"page_no": 3, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [48, 73]}], "orig": "Question 2 continues on the next page Turn over Donotwrite outsidethe box", "text": "Question 2 continues on the next page Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 104.43702189127605, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 759.1629282633463, "r": 342.4857991536458, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Gas exchange does not occur in the tracheae.", "text": "Gas exchange does not occur in the tracheae.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 732.8504231770834, "r": 531.0643717447916, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 105]}], "orig": "Explain the importance of one adaptation of the gas exchange surface in the tracheal system of an insect.", "text": "Explain the importance of one adaptation of the gas exchange surface in the tracheal system of an insect.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.1311442057292, "t": 707.38671875, "r": 535.7154134114584, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 49.89299011230469, "t": 514.2869262695312, "r": 101.9000956217448, "b": 499.85748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "02].3", "text": "02].3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 513.0137329101562, "r": 511.6145833333333, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Lignin is a polymer found in the walls of xylem vessels in plants. Lignin keeps the xylem vessel open as a continuous tube.", "text": "Lignin is a polymer found in the walls of xylem vessels in plants. Lignin keeps the xylem vessel open as a continuous tube.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 472.27178955078125, "r": 477.788818359375, "b": 459.53993733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Explain the importance of the xylem being kept open as a continuous tube.", "text": "Explain the importance of the xylem being kept open as a continuous tube.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.1311442057292, "t": 460.38873291015625, "r": 536.1382242838541, "b": 445.95928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 557.2793375651041, "t": 232.91290283203125, "r": 565.3129475911459, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 207.6055908203125, "t": 774.441151936849, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turn overfor the nextquestion", "text": "Turn overfor the nextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.31011962890625, "t": 445.95928955078125, "r": 397.0298258463542, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 286.25046793619794, "t": 809.2415542602539, "r": 292.16998291015625, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 104.43702189127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 774.0167541503906, "r": 514.5743408203125, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "The human disease, malaria, is caused by infection with a single-celled eukaryotic organism.", "text": "The human disease, malaria, is caused by infection with a single-celled eukaryotic organism.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 734.5480041503906, "r": 519.2253824869791, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Figure 2 shows a diagram of Plasmodium vivax, one of the species that can cause malaria.", "text": "Figure 2 shows a diagram of Plasmodium vivax, one of the species that can cause malaria.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 301.47206624348956, "t": 695.9280497233073, "r": 347.5596516927083, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 361.5127766927083, "t": 662.8252156575521, "r": 462.1444091796875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Structures containing enzymes that allowP.vivax toenterhumancells", "text": "Structures containing enzymes that allowP.vivax toenterhumancells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 247.7736612955729, "t": 615.29296875, "r": 251.57906087239584, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 395.45627848307294, "r": 513.7286783854166, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Other than the Golgi apparatus, name one structure in Figure 2 which shows that P. vivax is a eukaryote.", "text": "Other than the Golgi apparatus, name one structure in Figure 2 which shows that P. vivax is a eukaryote.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 370.41697184244794, "r": 535.7154134114584, "b": 355.98752848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.89299011230469, "t": 280.4451700846354, "r": 104.85984293619792, "b": 267.2889200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 111.625, "t": 279.59637451171875, "r": 434.6609700520833, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Describe two functions of the Golgi apparatus in a eukaryotic cell.", "text": "Describe two functions of the Golgi apparatus in a eukaryotic cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.553955078125, "t": 264.31817626953125, "r": 536.1382242838541, "b": 249.88873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 361.5127766927083, "t": 662.8252156575521, "r": 462.1444091796875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Structures containing enzymes that allowP.vivax toenterhumancells", "text": "Structures containing enzymes that allowP.vivax toenterhumancells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 247.7736612955729, "t": 615.29296875, "r": 251.57906087239584, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.201700846354164, "t": 389.09035237630206, "r": 102.32291666666667, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 387.304931640625, "t": 638.2103068033854, "r": 514.9971516927084, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Central America Strain C1", "text": "Central America Strain C1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 608.9270426432291, "r": 515.8427734375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Central AmericaStrain C2", "text": "Central AmericaStrain C2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 581.7657470703125, "r": 507.8091634114583, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "South America Strain S1", "text": "South America Strain S1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.03455607096353, "t": 543.1457926432292, "r": 171.2428995768229, "b": 529.9895426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "African", "text": "African", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 330.6467692057292, "t": 540.175028483073, "r": 416.9024658203125, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Europe Strain E1", "text": "Europe Strain E1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.45738728841147, "t": 530.8383178710938, "r": 181.81343587239584, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Common", "text": "Common", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 133.61173502604166, "t": 518.5308634440105, "r": 179.2765096028646, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Ancestor", "text": "Ancestor", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.882080078125, "t": 488.82322184244794, "r": 482.0170491536458, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "EastAsiaStrainA1", "text": "EastAsiaStrainA1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 381.3854166666667, "t": 462.51072184244794, "r": 461.2987467447917, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N1", "text": "- India Strain N1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 382.6538899739583, "t": 448.93007405598956, "r": 461.7215983072917, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N2", "text": "- India Strain N2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 528.5274658203125, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "P. vivax evolved from a common ancestor in Africa. As humans migrated around the world,newstrainsofP.vivaxevolved.", "text": "P. vivax evolved from a common ancestor in Africa. As humans migrated around the world,newstrainsofP.vivaxevolved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 720.1185709635416, "r": 283.7135416666667, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "P. vivax in other parts of the world.", "text": "P. vivax in other parts of the world.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 694.6548563639323, "r": 509.9232991536458, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "Figure 3 shows a phylogenetic diagram of the evolution of these different strains.", "text": "Figure 3 shows a phylogenetic diagram of the evolution of these different strains.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 7, "bbox": {"l": 301.89487711588544, "t": 668.3423665364584, "r": 347.9824625651042, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 387.304931640625, "t": 638.2103068033854, "r": 514.9971516927084, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Central America Strain C1", "text": "Central America Strain C1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 608.9270426432291, "r": 515.8427734375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Central AmericaStrain C2", "text": "Central AmericaStrain C2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 581.7657470703125, "r": 507.8091634114583, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "South America Strain S1", "text": "South America Strain S1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.03455607096353, "t": 543.1457926432292, "r": 171.2428995768229, "b": 529.9895426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "African", "text": "African", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 330.6467692057292, "t": 540.175028483073, "r": 416.9024658203125, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Europe Strain E1", "text": "Europe Strain E1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.45738728841147, "t": 530.8383178710938, "r": 181.81343587239584, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Common", "text": "Common", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 133.61173502604166, "t": 518.5308634440105, "r": 179.2765096028646, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Ancestor", "text": "Ancestor", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.882080078125, "t": 488.82322184244794, "r": 482.0170491536458, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "EastAsiaStrainA1", "text": "EastAsiaStrainA1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 381.3854166666667, "t": 462.51072184244794, "r": 461.2987467447917, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N1", "text": "- India Strain N1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 382.6538899739583, "t": 448.93007405598956, "r": 461.7215983072917, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N2", "text": "- India Strain N2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 270.1832275390625, "t": 416.25164794921875, "r": 298.0894775390625, "b": 402.67100016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Time", "text": "Time", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.201700846354164, "t": 389.09035237630206, "r": 102.32291666666667, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.89346313476562, "t": 387.39276123046875, "r": 479.0572916666667, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "What does Figure 3 suggest is the order of human migration out of Africa?", "text": "What does Figure 3 suggest is the order of human migration out of Africa?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 357.68511962890625, "r": 201.68607584635416, "b": 342.83127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 489.6278483072917, "t": 344.95322672526044, "r": 535.7154134114584, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 319.9139200846354, "r": 396.6070149739583, "b": 306.3332722981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Europe, India, East Asia, Central America, South America", "text": "Europe, India, East Asia, Central America, South America", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 282.9915568033854, "r": 396.1841634114583, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "India,East Asia,Europe, South America,Central America", "text": "India,East Asia,Europe, South America,Central America", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 246.06915283203125, "r": 396.6070149739583, "b": 232.91290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "India,Europe,East Asia, Central America,South America", "text": "India,Europe,East Asia, Central America,South America", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 209.57118733723962, "r": 396.6070149739583, "b": 195.99053955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "South America, Central America,East Asia,Europe, India", "text": "South America, Central America,East Asia,Europe, India", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 187.31011962890625, "t": 139.12156168619788, "r": 391.1103108723958, "b": 123.84340413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 3 continues on the next page", "text": "Question 3 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 7, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 557.7021484375, "t": 157.79498291015625, "r": 565.3129475911459, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 502.7353108723958, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 207]}], "orig": "There are an estimated 229 million cases of human malaria worldwide per year. 94% of these cases are found in Africa, but are not caused by P. vivax. P.vivaxdoescause61%ofthecasesofhumanmalariaoutsideAfrica.", "text": "There are an estimated 229 million cases of human malaria worldwide per year. 94% of these cases are found in Africa, but are not caused by P. vivax. P.vivaxdoescause61%ofthecasesofhumanmalariaoutsideAfrica.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 721.816151936849, "r": 478.6344401041667, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Use this information to calculate the number of cases worldwide caused by P.vivaxeachyear.", "text": "Use this information to calculate the number of cases worldwide caused by P.vivaxeachyear.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.4734700520833, "t": 695.9280497233073, "r": 536.1382242838541, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 308.23720296223956, "t": 568.1850992838542, "r": 534.8697916666666, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Answer casesofmalaria", "text": "Answer casesofmalaria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 49.04734802246094, "t": 529.1407470703125, "r": 101.47727457682292, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 528.7163492838542, "r": 504.8494059244792, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "In Africa today, most of the human population are resistant to malaria caused by P. vivax.", "text": "In Africa today, most of the human population are resistant to malaria caused by P. vivax.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 490.09637451171875, "r": 528.1046142578125, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Use your knowledge of natural selection to explain why this resistance is so common in Africa.", "text": "Use your knowledge of natural selection to explain why this resistance is so common in Africa.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 484.1311442057292, "t": 462.51072184244794, "r": 535.7154134114584, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 557.7021484375, "t": 157.79498291015625, "r": 565.3129475911459, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 105.2826639811198, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.1", "text": "04.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 520.9166666666666, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 175]}], "orig": "Some hospital patients suffer from diarrhoea caused by infection with the bacterium Clostridiumdifficile.TheC.difficilebacteria releasetoxins.These toxins cause the diarrhoea.", "text": "Some hospital patients suffer from diarrhoea caused by infection with the bacterium Clostridiumdifficile.TheC.difficilebacteria releasetoxins.These toxins cause the diarrhoea.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 720.54296875, "r": 506.9635416666667, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 218]}], "orig": "The toxins damage the cells lining the ileum, causing them to lose their microvilli. The damage to thecellsreduces the absorption of theproducts of digestion and reduces the absorption of water, resulting in diarrhoea.", "text": "The toxins damage the cells lining the ileum, causing them to lose their microvilli. The damage to thecellsreduces the absorption of theproducts of digestion and reduces the absorption of water, resulting in diarrhoea.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 666.644775390625, "r": 494.2788899739583, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 142]}], "orig": "Explain why the damage to the cells lining the ileum reduces absorption of the products of digestion and why this reduces absorption of water.", "text": "Explain why the damage to the cells lining the ileum reduces absorption of the products of digestion and why this reduces absorption of water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.553955078125, "t": 639.0591023763021, "r": 535.7154134114584, "b": 625.9028523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 187.73295084635416, "t": 344.95322672526044, "r": 390.6875, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question4continuesonthenextpage", "text": "Question4continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 9, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 407.1775309244792, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Not all patients in hospital with C. difficile develop diarrhoea.", "text": "Not all patients in hospital with C. difficile develop diarrhoea.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 747.7042541503906, "r": 532.3328450520834, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "Scientists measured the anti-toxin antibody concentration in hospital patients with and withoutC.difficileinfection.", "text": "Scientists measured the anti-toxin antibody concentration in hospital patients with and withoutC.difficileinfection.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 708.659901936849, "r": 428.3186442057292, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "They measured the anti-toxin antibody concentration four times:", "text": "They measured the anti-toxin antibody concentration four times:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 116.27604166666667, "t": 684.4693806966146, "r": 282.445068359375, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "\u00b7 on admission to hospital (day 0)", "text": "on admission to hospital (day 0)", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 669.1911417643229, "r": 169.97442626953125, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "\u00b7 on day 3", "text": "on day 3", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 656.8836873372396, "r": 169.97442626953125, "b": 644.1518351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "\u00b7on day 6", "text": "\u00b7on day 6", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 116.27604166666667, "t": 643.3030395507812, "r": 311.19696044921875, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "\u00b7on the day the patient left the hospital.", "text": "\u00b7on the day the patient left the hospital.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 10, "bbox": {"l": 115.007568359375, "t": 618.2637329101562, "r": 298.51230875651044, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Figure 4 shows thescientists'results.", "text": "Figure 4 shows thescientists'results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 10, "bbox": {"l": 268.06911214192706, "t": 594.0732014973959, "r": 312.88824462890625, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.61836751302083, "t": 566.487528483073, "r": 139.95407104492188, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.5", "text": "2.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.19554646809895, "t": 487.97442626953125, "r": 141.2225341796875, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.0", "text": "2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.42992146809896, "t": 438.32017008463544, "r": 82.02746073404948, "b": 426.43711344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Mean", "text": "Mean", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.42992146809896, "t": 426.01271565755206, "r": 98.51751708984375, "b": 414.55405680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "anti-toxin", "text": "anti-toxin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.007100423177086, "t": 415.40285237630206, "r": 96.40340169270833, "b": 401.39780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "antibody", "text": "antibody", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 116.27604166666667, "t": 406.06614176432294, "r": 141.2225341796875, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.5", "text": "1.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.42992146809896, "t": 400.97340901692706, "r": 120.50426228841145, "b": 391.21230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "concentration", "text": "concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 51.161458333333336, "t": 391.21230061848956, "r": 100.63162231445312, "b": 376.78289794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "/ arbitrary", "text": "/ arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 51.58427937825521, "t": 378.05605061848956, "r": 77.79924011230469, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.61836751302083, "t": 329.2506306966146, "r": 144.18229166666666, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1.0\u7c73", "text": "1.0\u7c73", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.19554646809895, "t": 249.46433512369788, "r": 140.79971313476562, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.5", "text": "0.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 140.37689208984375, "t": 238.85447184244788, "r": 146.7192179361979, "b": 230.36655680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 259.61269124348956, "t": 238.00567626953125, "r": 264.68654378255206, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 378.8484700520833, "t": 238.00567626953125, "r": 384.3451741536458, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 471.4464925130208, "t": 240.12762451171875, "r": 529.7958984375, "b": 226.97137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Day patient", "text": "Day patient", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 273.1429850260417, "t": 231.63975016276038, "r": 369.9691975911458, "b": 218.05910237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Hospital stay / days", "text": "Hospital stay / days", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 471.023681640625, "t": 228.66896565755212, "r": 528.9502766927084, "b": 214.66392008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "left hospital", "text": "left hospital", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 139.53125, "t": 211.69317626953125, "r": 160.6723429361979, "b": 197.26373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 182.23626708984375, "t": 195.56614176432288, "r": 424.5132649739583, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "PatientswithC.difficileinfectionbut nodiarrhoea", "text": "PatientswithC.difficileinfectionbut nodiarrhoea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 182.6590779622396, "t": 179.86354573567712, "r": 355.59326171875, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "PatientswithoutC.difficileinfection", "text": "PatientswithoutC.difficileinfection", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 140.37689208984375, "t": 162.46331787109375, "r": 147.56486002604166, "b": 155.24859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "?", "text": "?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 181.390625, "t": 164.58530680338538, "r": 410.9829508463542, "b": 153.55100504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "PatientswithC.difficileinfectionanddiarrhoea", "text": "PatientswithC.difficileinfectionanddiarrhoea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 282.86789957682294, "t": 811.7879257202148, "r": 295.1297200520833, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 106.97395833333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 112.04782104492188, "t": 773.16796875, "r": 529.3730875651041, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "The scientists suggest that the anti-toxin antibody could be given to some patients as a form of passive immunity.", "text": "The scientists suggest that the anti-toxin antibody could be given to some patients as a form of passive immunity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 730.7284545898438, "r": 518.3797200520834, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Use Figure 4 to suggest how this passive immunity would work and which patients should be offered this anti-toxin antibody.", "text": "Use Figure 4 to suggest how this passive immunity would work and which patients should be offered this anti-toxin antibody.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 703.5671590169271, "r": 535.7154134114584, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.89299011230469, "t": 433.22743733723956, "r": 101.9000956217448, "b": 418.79799397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 112.47064208984375, "t": 432.37864176432294, "r": 525.5677083333334, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "To be used as passive immunity treatment, the anti-toxin antibody would be injected. If it was given by mouth, it would be digested.", "text": "To be used as passive immunity treatment, the anti-toxin antibody would be injected. If it was given by mouth, it would be digested.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 391.21230061848956, "r": 385.6136067708333, "b": 378.05605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Describe how the anti-toxin antibody would be digested.", "text": "Describe how the anti-toxin antibody would be digested.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 376.35850016276044, "r": 535.7154134114584, "b": 361.92905680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 207.1827596028646, "t": 111.96026611328125, "r": 370.3920491536458, "b": 98.37961832682288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 11, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 557.2793375651041, "t": 149.30710856119788, "r": 565.3129475911459, "b": 138.27276611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 771.8947804768881, "r": 512.0373942057291, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 183]}], "orig": "Astudentinvestigatedtheuseofcinnamonoilasanantimicrobialsubstance. She investigated the effect of cinnamon oil on the growth of five different bacterial cultures grown on agar plates.", "text": "Astudentinvestigatedtheuseofcinnamonoilasanantimicrobialsubstance. She investigated the effect of cinnamon oil on the growth of five different bacterial cultures grown on agar plates.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.04734802246094, "t": 722.2405497233073, "r": 102.74573771158855, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 720.9673563639323, "r": 505.2722574869792, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "The student added 1o0 mm? of each bacterial culture from its glass bottle onto a spreader.", "text": "The student added 1o0 mm? of each bacterial culture from its glass bottle onto a spreader.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 667.4935709635416, "r": 350.9422200520833, "b": 654.76171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Describe the aseptic techniques she should use.", "text": "Describe the aseptic techniques she should use.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 483.7083333333333, "t": 653.0641276041666, "r": 535.2926025390625, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 62.57765197753906, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 105.70548502604167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 105.70548502604167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 112.47064208984375, "t": 774.0167541503906, "r": 417.3252766927083, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "On each agar plate, the student cut a well (a hole) in the agar.", "text": "On each agar plate, the student cut a well (a hole) in the agar.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 743.0359090169271, "r": 533.601318359375, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "The well had a diameter of 6 mm. The student added 50 mm?of cinnamon oil into the well.", "text": "The well had a diameter of 6 mm. The student added 50 mm?of cinnamon oil into the well.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 701.8695780436198, "r": 526.8361409505209, "b": 676.8302612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Calculate the minimum depth of the well to allow the addition of 50 mm? of cinnamon oil.", "text": "Calculate the minimum depth of the well to allow the addition of 50 mm? of cinnamon oil.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 675.9814758300781, "r": 338.6803792317708, "b": 663.2496134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Use the following equation in your calculation:", "text": "Use the following equation in your calculation:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 252.8475341796875, "t": 651.3665568033854, "r": 397.0298258463542, "b": 636.5127156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Volume of a cylinder = \u03c0r2 x I", "text": "Volume of a cylinder = \u03c0r2 x I", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 624.2052612304688, "r": 249.4649658203125, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Use 3.14 as the value for \u03c0.", "text": "Use 3.14 as the value for \u03c0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 599.1659545898438, "r": 211.83380126953125, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Show your working.", "text": "Show your working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.553955078125, "t": 584.7365112304688, "r": 535.2926025390625, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 379.6941324869792, "t": 353.44114176432294, "r": 535.7154134114584, "b": 341.55808512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Answer mm", "text": "Answer mm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 187.73295084635416, "t": 291.0550740559896, "r": 390.6875, "b": 277.0500284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question5 continueson thenextpage", "text": "Question5 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 773.16796875, "r": 354.7476399739583, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "The student kept the plates at 25 \u00b0C for 24 hours.", "text": "The student kept the plates at 25 \u00b0C for 24 hours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 745.1578877766927, "r": 432.546875, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Figure 5 shows what one of her plates looked like after 24 hours.", "text": "Figure 5 shows what one of her plates looked like after 24 hours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 301.89487711588544, "t": 720.54296875, "r": 347.9824625651042, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 142.913818359375, "t": 692.957275390625, "r": 220.71305338541666, "b": 679.3766377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Bacterial cuture", "text": "Bacterial cuture", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 142.913818359375, "t": 679.3766377766927, "r": 199.1491495768229, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "growing on", "text": "growing on", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 142.49099731445312, "t": 668.3423665364584, "r": 186.4644775390625, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "the agar.", "text": "the agar.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 411.40576171875, "t": 642.8786417643229, "r": 489.6278483072917, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Well containing", "text": "Well containing", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 414.3655192057292, "t": 628.0248209635416, "r": 477.3660074869792, "b": 617.8393351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "cinnamon oil", "text": "cinnamon oil", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 413.5198567708333, "t": 571.5802612304688, "r": 506.5406901041667, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Clearzonewithno", "text": "Clearzonewithno", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 413.5198567708333, "t": 560.5459798177083, "r": 493.4332275390625, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "bacterial growth", "text": "bacterial growth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 495.18914794921875, "r": 529.7958984375, "b": 470.57419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 139]}], "orig": "The student measured the diameter of the clear zone with no bacterial growth around eachwell.Shemade thesemeasurementsto thenearest wholemm", "text": "The student measured the diameter of the clear zone with no bacterial growth around eachwell.Shemade thesemeasurementsto thenearest wholemm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 456.14479573567706, "r": 243.96826171875, "b": 444.68609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Table 1 shows her results.", "text": "Table 1 shows her results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 304.4318033854167, "t": 430.68105061848956, "r": 344.5998942057292, "b": 418.79799397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 516.6884358723959, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "Suggest exactly what the student added to the wells to get the positive control and negativecontrol results.", "text": "Suggest exactly what the student added to the wells to get the positive control and negativecontrol results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 745.1578877766927, "r": 535.7154134114584, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.04734802246094, "t": 553.7556762695312, "r": 106.97395833333333, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 112.04782104492188, "t": 551.2092895507812, "r": 407.1775309244792, "b": 538.901835123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Complete Table 1 to show the median and mean diameters.", "text": "Complete Table 1 to show the median and mean diameters.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 490.0506591796875, "t": 536.35546875, "r": 535.7154134114584, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.04734802246094, "t": 422.61757405598956, "r": 101.9000956217448, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.3162841796875, "t": 421.34438069661456, "r": 431.2784016927083, "b": 408.18813069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "The mean \u00b1 2 standard deviations includes over 95% of the data.", "text": "The mean \u00b1 2 standard deviations includes over 95% of the data.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 395.03188069661456, "r": 488.359375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 129]}], "orig": "Use this information to consider whether the standard deviations suggest the differences in means are likely to be due to chance.", "text": "Use this information to consider whether the standard deviations suggest the differences in means are likely to be due to chance.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 357.26072184244794, "r": 383.49951171875, "b": 343.25567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Explain your answer, including at least one calculation.", "text": "Explain your answer, including at least one calculation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.1311442057292, "t": 344.95322672526044, "r": 536.5610758463541, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 207.6055908203125, "t": 121.29701741536462, "r": 370.8148600260417, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turnoverfor thenextquestion", "text": "Turnoverfor thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 15, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 553.8967692057291, "t": 170.10243733723962, "r": 569.1183675130209, "b": 157.37058512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 106.12831624348958, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 110.77935791015625, "t": 774.0167541503906, "r": 263.41807047526044, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Define genome and proteome.", "text": "Define genome and proteome.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 758.3141377766927, "r": 536.1382242838541, "b": 743.8847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 732.0016377766927, "r": 157.71259562174478, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Genome", "text": "Genome", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 655.1861165364584, "r": 163.6321004231771, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Proteome", "text": "Proteome", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 565.214335123698, "r": 533.601318359375, "b": 488.39882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 476]}], "orig": "The classification system used in the early 2oth century grouped different species of bacteriaaccordingtothepositionandshapeofflagellaonbacterialcellsandbythe number of flagella per cell. These were observed using an optical microscope. Each species of bacteriumhas a characteristiccell shape and arrangement of flagella. These characteristics may be shared with other species within a genus. Flagella are fragile, difficult to stain and may extend from the cell at any angle.", "text": "The classification system used in the early 2oth century grouped different species of bacteriaaccordingtothepositionandshapeofflagellaonbacterialcellsandbythe number of flagella per cell. These were observed using an optical microscope. Each species of bacteriumhas a characteristiccell shape and arrangement of flagella. These characteristics may be shared with other species within a genus. Flagella are fragile, difficult to stain and may extend from the cell at any angle.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.201700846354164, "t": 477.78892008463544, "r": 102.74573771158855, "b": 462.08632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 112.89346313476562, "t": 475.66697184244794, "r": 523.03076171875, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "Consider the accuracy and limitations of the early classification of bacteria using the arrangementofflagella.", "text": "Consider the accuracy and limitations of the early classification of bacteria using the arrangementofflagella.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 448.50567626953125, "r": 534.4469401041666, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 284.1363525390625, "t": 810.9391352335612, "r": 295.1297200520833, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 482.4398600260417, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Suggest why several bacterial species have been renamed in recent years.", "text": "Suggest why several bacterial species have been renamed in recent years.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.4734700520833, "t": 759.1629282633463, "r": 535.2926025390625, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.47016906738281, "t": 643.7274373372396, "r": 101.9000956217448, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 641.60546875, "r": 495.12451171875, "b": 628.8736165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Figure 6 shows an image from an optical microscope of a single bacterial cell.", "text": "Figure 6 shows an image from an optical microscope of a single bacterial cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 17, "bbox": {"l": 302.3177083333333, "t": 612.7466023763021, "r": 348.4053141276042, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 396.30507405598956, "r": 396.1841634114583, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "This bacterial cell is 2.3 \u03bcm long (excluding the flagellum).", "text": "This bacterial cell is 2.3 \u03bcm long (excluding the flagellum).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 368.71938069661456, "r": 315.42519124348956, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Calculate the magnification of this image.", "text": "Calculate the magnification of this image.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 343.68007405598956, "r": 210.9881591796875, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Showyourworking.", "text": "Showyourworking.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 483.7083333333333, "t": 330.94822184244794, "r": 535.7154134114584, "b": 316.5187784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 284.98199462890625, "t": 152.70220947265625, "r": 361.5127766927083, "b": 137.42397054036462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Magnification x", "text": "Magnification x", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 558.125, "t": 155.24859619140625, "r": 564.89013671875, "b": 145.91192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 207.6055908203125, "t": 116.20424397786462, "r": 370.3920491536458, "b": 103.04799397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turnoverfor thenextquestion", "text": "Turnoverfor thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 504.0037841796875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Carbon monoxide (CO) is released during incomplete combustion of fossil fuels.", "text": "Carbon monoxide (CO) is released during incomplete combustion of fossil fuels.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 746.0066731770834, "r": 433.3924967447917, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Figure 7 shows the dissociation curve for oxyhaemoglobin when:", "text": "Figure 7 shows the dissociation curve for oxyhaemoglobin when:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 18, "bbox": {"l": 115.43039957682292, "t": 719.269785563151, "r": 220.29024251302084, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "\u00b7 not exposed to CO", "text": "not exposed to CO", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 18, "bbox": {"l": 123.46400960286458, "t": 707.38671875, "r": 505.2722574869792, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "exposed to CO such that 50% of the oxygen binding sites are occupied by CO (50% COHb).", "text": "exposed to CO such that 50% of the oxygen binding sites are occupied by CO (50% COHb).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 302.3177083333333, "t": 669.6155395507812, "r": 347.9824625651042, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 234.24336751302084, "t": 642.8786417643229, "r": 257.07574462890625, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "100-", "text": "100-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 413.9427083333333, "t": 638.6347045898438, "r": 451.9966634114583, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "No CO", "text": "No CO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 239.74005126953125, "t": 607.2294514973959, "r": 256.65293375651044, "b": 593.6488037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "75-", "text": "75-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 175.47111002604166, "t": 584.7365112304688, "r": 234.24336751302084, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Percentage", "text": "Percentage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 175.8939412434896, "t": 572.4290568033855, "r": 227.90104166666666, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "saturation", "text": "saturation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 239.74005126953125, "t": 571.1558634440105, "r": 256.2301025390625, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 414.788330078125, "t": 570.3070678710938, "r": 473.5605875651042, "b": 558.848409016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "50%COHb", "text": "50%COHb", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 175.47111002604166, "t": 563.0923665364583, "r": 214.3707275390625, "b": 544.8433634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "with O2", "text": "with O2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 239.74005126953125, "t": 535.9310709635417, "r": 256.65293375651044, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "25-", "text": "25-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 255.38446044921875, "t": 489.24761962890625, "r": 260.4583333333333, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 406.3319091796875, "t": 491.79396565755206, "r": 420.7078450520833, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 310.351318359375, "t": 481.18410237630206, "r": 361.0899658203125, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "pO2 / kPa", "text": "pO2 / kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 451.05202229817706, "r": 533.1785074869791, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 117]}], "orig": "Using Figure 7, what can you conclude about how exposure to CO affects the loading andunloadingofoxygenbyhaemoglobin?", "text": "Using Figure 7, what can you conclude about how exposure to CO affects the loading andunloadingofoxygenbyhaemoglobin?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 413.70526123046875, "r": 218.1761271158854, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Explain your answer.", "text": "Explain your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.553955078125, "t": 400.97340901692706, "r": 536.1382242838541, "b": 386.54396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 106.97395833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.2", "text": "07.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 535.7154134114584, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 131]}], "orig": "The World Health Organisation (WHO) suggests that to avoid long-term health effects, COHb concentrations should be kept below 2.5%.", "text": "The World Health Organisation (WHO) suggests that to avoid long-term health effects, COHb concentrations should be kept below 2.5%.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 735.3967997233073, "r": 394.9156901041667, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "WHO recommends that people should not be exposed to:", "text": "WHO recommends that people should not be exposed to:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 19, "bbox": {"l": 115.43039957682292, "t": 709.0842997233073, "r": 352.6335042317708, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "\u00b7 air with > 10 mg m-3 CO for more than 8 hours", "text": "air with > 10 mg m-3 CO for more than 8 hours", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 19, "bbox": {"l": 116.69886271158855, "t": 695.9280497233073, "r": 350.5194091796875, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "air with > 30 mg m-3 CO for more than 1 hour.", "text": "air with > 30 mg m-3 CO for more than 1 hour.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 670.4643351236979, "r": 501.4668375651042, "b": 645.8494262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 135]}], "orig": "Scientists have used a mathematical model to calculate the exposure to carbon monoxidethatwouldresultin2.5%COHbinbothadultsandchildren.", "text": "Scientists have used a mathematical model to calculate the exposure to carbon monoxidethatwouldresultin2.5%COHbinbothadultsandchildren.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 631.4199829101562, "r": 293.4384358723958, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Table2showsthescientists'results.", "text": "Table2showsthescientists'results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 304.85463460286456, "t": 606.3806762695312, "r": 345.022705078125, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 455.29600016276044, "r": 487.5137125651042, "b": 430.68105061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 121]}], "orig": "The scientists suggest that the WHO recommendations for carbon monoxide concentrationsresultingin2.5%COHbshouldbereduced.", "text": "The scientists suggest that the WHO recommendations for carbon monoxide concentrationsresultingin2.5%COHbshouldbereduced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 417.52480061848956, "r": 284.98199462890625, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Evaluate the scientists'conclusion.", "text": "Evaluate the scientists'conclusion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 19, "bbox": {"l": 207.1827596028646, "t": 125.54091389973962, "r": 370.8148600260417, "b": 111.96026611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.1311442057292, "t": 404.79294840494794, "r": 535.7154134114584, "b": 390.36354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 473.9833984375, "t": 70.36960856119788, "r": 538.2523600260416, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 558.125, "t": 177.31715901692712, "r": 564.89013671875, "b": 167.55605061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.1", "text": "08.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.1", "text": "08.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 512.8830159505209, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "Scientists investigated a drug called MiTMAB as a treatment for cancer. MiTMAB inhibits cytokinesis.", "text": "Scientists investigated a drug called MiTMAB as a treatment for cancer. MiTMAB inhibits cytokinesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 733.2748209635416, "r": 509.9232991536458, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Figure 8 shows drawings of cancer cells seen with an optical microscope from a:", "text": "Figure 8 shows drawings of cancer cells seen with an optical microscope from a:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 706.113525390625, "r": 267.64630126953125, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7sampletreatedwithMiTMAB", "text": "\u00b7sampletreatedwithMiTMAB", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 122.19554646809895, "t": 693.8060709635416, "r": 200.8404337565104, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "control sample.", "text": "control sample.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 20, "bbox": {"l": 301.89487711588544, "t": 668.7667643229166, "r": 347.9824625651042, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 230.4379679361979, "t": 642.0298665364584, "r": 239.31722005208334, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 415.6339925130208, "t": 642.0298665364584, "r": 424.9360758463542, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.007568359375, "t": 487.97442626953125, "r": 457.9161783854167, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "The cells in drawing A can be identified as those treated with MiTMAB.", "text": "The cells in drawing A can be identified as those treated with MiTMAB.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 463.78387451171875, "r": 176.73958333333334, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Explain why.", "text": "Explain why.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.1311442057292, "t": 449.77886962890625, "r": 535.2926025390625, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 774.0167541503906, "r": 473.9833984375, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "MiTMAB acts as a non-competitive inhibitor of an enzyme called dynamin.", "text": "MiTMAB acts as a non-competitive inhibitor of an enzyme called dynamin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.007568359375, "t": 747.2798563639323, "r": 418.59375, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Suggest howMiTMAB can cause dynamin to become inactive.", "text": "Suggest howMiTMAB can cause dynamin to become inactive.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 734.1236063639323, "r": 535.7154134114584, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 187.73295084635416, "t": 440.01776123046875, "r": 390.6875, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question8continueson thenextpage", "text": "Question8continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 21, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 60.88636271158854, "t": 23.68609619140625, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 316.2708333333333, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "When active, dynamin has two functions:", "text": "When active, dynamin has two functions:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 745.582285563151, "r": 241.85416666666666, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "\u00b7 it stimulates cytokinesis", "text": "it stimulates cytokinesis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 222.40435791015625, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7it inhibits cell death.", "text": "\u00b7it inhibits cell death.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 702.7183736165365, "r": 486.6680908203125, "b": 689.9865112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "The scientists treated actively growing cultures of cancer cells with MiTMAB.", "text": "The scientists treated actively growing cultures of cancer cells with MiTMAB.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 678.9522399902344, "r": 194.9209187825521, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "They incubated:", "text": "They incubated:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 652.2153523763021, "r": 392.3787841796875, "b": 639.9078776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "\u00b7one sample of 2500 cellswithout MiTMAB as a control", "text": "\u00b7one sample of 2500 cellswithout MiTMAB as a control", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 116.27604166666667, "t": 639.0591023763021, "r": 502.3125, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "\u00b7eight samples, each with 2500 cells and a different concentration of MiTMAB.", "text": "\u00b7eight samples, each with 2500 cells and a different concentration of MiTMAB.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 614.019775390625, "r": 481.17138671875, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "After 72 hours, the scientists measured the number of cells in each sample.", "text": "After 72 hours, the scientists measured the number of cells in each sample.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 588.1316731770834, "r": 298.93511962890625, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Figure 9 shows the scientists' results.", "text": "Figure 9 shows the scientists' results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 563.5167643229167, "r": 513.3058675130209, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "A negative value for proportion of control growth means that fewer than 2500 cells were counted after 72 hours.", "text": "A negative value for proportion of control growth means that fewer than 2500 cells were counted after 72 hours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 22, "bbox": {"l": 301.89487711588544, "t": 522.7748209635417, "r": 347.9824625651042, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 493.06715901692706, "r": 194.9209187825521, "b": 478.63771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.2", "text": "1.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 463.78387451171875, "r": 195.34375, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.0", "text": "1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 434.92502848307294, "r": 194.49810791015625, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.8", "text": "0.8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 175.04829915364584, "t": 406.49053955078125, "r": 195.76656087239584, "b": 395.03188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.6", "text": "0.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 116.27604166666667, "t": 389.93914794921875, "r": 169.97442626953125, "b": 375.93410237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Proportion", "text": "Proportion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 116.69886271158855, "t": 376.78289794921875, "r": 165.3233846028646, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "of control", "text": "of control", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 378.05605061848956, "r": 194.9209187825521, "b": 366.59739176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.4", "text": "0.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.43039957682292, "t": 364.47544352213544, "r": 152.63872273763022, "b": 352.59234619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "growth", "text": "growth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 175.8939412434896, "t": 350.47039794921875, "r": 195.34375, "b": 337.31414794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.2", "text": "0.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 175.8939412434896, "t": 322.0359090169271, "r": 194.9209187825521, "b": 309.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.0", "text": "0.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 169.55160522460938, "t": 293.1770222981771, "r": 195.34375, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-0.2", "text": "-0.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 169.1287841796875, "t": 265.1669718424479, "r": 196.6122029622396, "b": 253.28387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-0.4", "text": "-0.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 189.8470662434896, "t": 255.40586344401038, "r": 205.06864420572916, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 290.4786783854167, "t": 255.40586344401038, "r": 311.6197916666667, "b": 243.09840901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 391.1103108723958, "t": 255.40586344401038, "r": 418.1708984375, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 255.83026123046875, "r": 525.1448567708334, "b": 243.94720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "10000", "text": "10000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 260.8811442057292, "t": 241.40081787109375, "r": 439.7348225911458, "b": 227.82017008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Concentration of MiTMAB / \u03bcg dm-3", "text": "Concentration of MiTMAB / \u03bcg dm-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.3", "text": "08.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 453.26513671875, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Use all the information given to explain the results shown in Figure 9.", "text": "Use all the information given to explain the results shown in Figure 9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 760.4361114501953, "r": 536.1382242838541, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 490.94517008463544, "r": 104.43702189127605, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.4", "text": "08.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 110.35652669270833, "t": 492.21836344401044, "r": 409.7144775390625, "b": 473.12058512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "0.01 dm? of MiTMAB solution was added to the treated cells.", "text": "0.01 dm? of MiTMAB solution was added to the treated cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 462.93511962890625, "r": 533.601318359375, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 141]}], "orig": "Calculate the increase in mass of MiTMAB (in \u03bcg) added to the cells to reduce the cel growth from equal to the control to O.0 of the control.", "text": "Calculate the increase in mass of MiTMAB (in \u03bcg) added to the cells to reduce the cel growth from equal to the control to O.0 of the control.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 424.73952229817706, "r": 211.41097005208334, "b": 409.88572184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Show your working.", "text": "Show your working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.976806640625, "t": 410.73447672526044, "r": 535.7154134114584, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 553.0511067708334, "t": 238.00567626953125, "r": 569.5411783854166, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 322.6131591796875, "t": 231.63975016276038, "r": 361.5127766927083, "b": 219.75665283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Answer", "text": "Answer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 520.4938151041666, "t": 230.36655680338538, "r": 535.7154134114584, "b": 218.48350016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "\u03bcg", "text": "\u03bcg", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 207.1827596028646, "t": 156.52178955078125, "r": 369.9691975911458, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 63.00047302246094, "t": 25.80808512369788, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 419.0165608723958, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Dengue fever is a human disease caused by the dengue virus.", "text": "Dengue fever is a human disease caused by the dengue virus.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 745.582285563151, "r": 496.8157958984375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 101]}], "orig": "Scientists designed an ELiSA test to detect antibodies to the dengue virus in a patient'sbloodsample.", "text": "Scientists designed an ELiSA test to detect antibodies to the dengue virus in a patient'sbloodsample.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 707.38671875, "r": 508.6548258463542, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Figure 10 shows a diagram of this test and some information about how it works.", "text": "Figure 10 shows a diagram of this test and some information about how it works.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 298.93511962890625, "t": 682.7717997233073, "r": 350.5194091796875, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 325.15008544921875, "t": 625.9028523763021, "r": 331.06960042317706, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "X", "text": "X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 188.15576171875, "t": 609.7758382161459, "r": 267.2234700520833, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Diffusion from X", "text": "Diffusion from X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 187.31011962890625, "t": 598.3171590169271, "r": 255.80729166666666, "b": 585.160909016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "of anti-human", "text": "of anti-human", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 186.8873087565104, "t": 586.0097045898438, "r": 253.27034505208334, "b": 574.1266276041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "antibody with", "text": "antibody with", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 186.8873087565104, "t": 572.8534545898438, "r": 273.1429850260417, "b": 561.8191731770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "enzyme attached", "text": "enzyme attached", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 383.0767008463542, "t": 559.2728068033855, "r": 462.1444091796875, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Diffusion from Y", "text": "Diffusion from Y", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 383.0767008463542, "t": 546.965352376302, "r": 438.4663899739583, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "of patient's", "text": "of patient's", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 382.2310384114583, "t": 535.5066731770833, "r": 449.882568359375, "b": 521.5016276041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "blood sample", "text": "blood sample", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 459.96433512369794, "r": 512.8830159505209, "b": 434.92502848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 120]}], "orig": "Figure 11 shows the negative and positive results that were produced 20 minutes after theuseof thetest shown inFigure10.", "text": "Figure 11 shows the negative and positive results that were produced 20 minutes after theuseof thetest shown inFigure10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 298.93511962890625, "t": 423.04197184244794, "r": 350.0965983072917, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 11", "text": "Figure 11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 221.98152669270834, "t": 393.75868733723956, "r": 271.02886962890625, "b": 377.63169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Negative", "text": "Negative", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 380.9625651041667, "t": 392.90989176432294, "r": 425.35888671875, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Positive", "text": "Positive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 104.85984293619792, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.1", "text": "09.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 523.4535725911459, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "Suggest what is on the test at line T and explain what causes the line to appear in a positive test.", "text": "Suggest what is on the test at line T and explain what causes the line to appear in a positive test.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.1311442057292, "t": 747.2798563639323, "r": 534.8697916666666, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 50.31581115722656, "t": 555.0288492838542, "r": 101.9000956217448, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.2", "text": "09.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 552.9068806966145, "r": 322.6131591796875, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "A line at C shows that the test has worked.", "text": "A line at C shows that the test has worked.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.16192626953125, "t": 528.7163492838542, "r": 426.2045491536458, "b": 514.2869262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Suggest one reason why a line at C shows the test has worked.", "text": "Suggest one reason why a line at C shows the test has worked.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.0506591796875, "t": 515.9844970703125, "r": 535.7154134114584, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 187.73295084635416, "t": 374.66090901692706, "r": 390.6875, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question9continuesonthenextpage", "text": "Question9continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 240.16288248697916, "t": 691.684092203776, "r": 410.1372884114583, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Inject rabbit with human antibodies", "text": "Inject rabbit with human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 246.0823771158854, "t": 641.60546875, "r": 404.640625, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Collect blood samplefromrabbit", "text": "Collect blood samplefromrabbit", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 206.75992838541666, "t": 593.2244262695312, "r": 443.9630533854167, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "FuseBcellsfromblood samplewithcancer cells", "text": "FuseBcellsfromblood samplewithcancer cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 194.49810791015625, "t": 541.8725992838542, "r": 456.647705078125, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Select fused cells that produce anti-human antibodies", "text": "Select fused cells that produce anti-human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 192.38399251302084, "t": 491.79396565755206, "r": 457.9161783854167, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Culture these cells and extract the secreted antibodies", "text": "Culture these cells and extract the secreted antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 252.00189208984375, "t": 442.56414794921875, "r": 397.45263671875, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Add enzymetotheantibodies", "text": "Add enzymetotheantibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 529.7958984375, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 12 shows a flowchart of how the anti-human antibodies with enzyme attached are produced.", "text": "Figure 12 shows a flowchart of how the anti-human antibodies with enzyme attached are produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 26, "bbox": {"l": 299.3579508463542, "t": 731.152842203776, "r": 350.9422200520833, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 12", "text": "Figure 12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 240.16288248697916, "t": 691.684092203776, "r": 410.1372884114583, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Inject rabbit with human antibodies", "text": "Inject rabbit with human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 246.0823771158854, "t": 641.60546875, "r": 404.640625, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Collect blood samplefromrabbit", "text": "Collect blood samplefromrabbit", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 206.75992838541666, "t": 593.2244262695312, "r": 443.9630533854167, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "FuseBcellsfromblood samplewithcancer cells", "text": "FuseBcellsfromblood samplewithcancer cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 194.49810791015625, "t": 541.8725992838542, "r": 456.647705078125, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Select fused cells that produce anti-human antibodies", "text": "Select fused cells that produce anti-human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 192.38399251302084, "t": 491.79396565755206, "r": 457.9161783854167, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Culture these cells and extract the secreted antibodies", "text": "Culture these cells and extract the secreted antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 252.00189208984375, "t": 442.56414794921875, "r": 397.45263671875, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Add enzymetotheantibodies", "text": "Add enzymetotheantibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.89299011230469, "t": 406.06614176432294, "r": 103.16855875651042, "b": 390.78794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.3", "text": "09.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 404.36855061848956, "r": 517.1112467447916, "b": 391.63669840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "Suggest why the fused cells allow continuous production of monoclonal antibodies.", "text": "Suggest why the fused cells allow continuous production of monoclonal antibodies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.553955078125, "t": 391.63669840494794, "r": 535.7154134114584, "b": 378.48044840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 200.65887451171875, "r": 103.5913798014323, "b": 184.95627848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.4", "text": "09.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 198.11252848307288, "r": 434.6609700520833, "b": 184.53188069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Evaluate the ethics of theproduction process shown in Figure 12.", "text": "Evaluate the ethics of theproduction process shown in Figure 12.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 184.95627848307288, "r": 535.7154134114584, "b": 170.10243733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 80.75899251302083, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 479.9029134114583, "t": 26.65688069661462, "r": 539.0979817708334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 188.15576171875, "t": 775.7143351236979, "r": 390.6875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 9 continues on the next page", "text": "Question 9 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 398.7211100260417, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.34943135579427, "t": 27.08127848307288, "r": 81.1818135579427, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 762.1336924235026, "r": 520.4938151041666, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 156]}], "orig": "the same symptoms. Early identification is important because people suffering with dengue fever can become ill very quickly and may need hospital treatment.", "text": "the same symptoms. Early identification is important because people suffering with dengue fever can become ill very quickly and may need hospital treatment.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 115.007568359375, "t": 722.2405497233073, "r": 505.2722574869792, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "Scientists compared the effectiveness of three diagnostic tests for dengue fever.", "text": "Scientists compared the effectiveness of three diagnostic tests for dengue fever.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 117.12168375651042, "t": 695.503651936849, "r": 533.601318359375, "b": 670.4643351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Laboratory-basedtest-apatient'sbloodsampleissentfromthedoctor'sclinictoa laboratory for testing.", "text": "Laboratory-basedtest-apatient'sbloodsampleissentfromthedoctor'sclinictoa laboratory for testing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 116.27604166666667, "t": 670.4643351236979, "r": 313.3110758463542, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Current test used in the doctor's clinic.", "text": "Current test used in the doctor's clinic.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 657.3080851236979, "r": 531.4871826171875, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "\u00b7 New test to be used in the doctor's clinic - the ELISA test shown in Figures 10 and 11 (on page 24).", "text": "New test to be used in the doctor's clinic - the ELISA test shown in Figures 10 and 11 (on page 24).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 115.007568359375, "t": 619.1125284830729, "r": 328.9554850260417, "b": 607.2294514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Thescientists'resultsareshowninTable3.", "text": "Thescientists'resultsareshowninTable3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 593.2244262695312, "r": 509.07763671875, "b": 568.1850992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 141]}], "orig": "A blood sample from each patient with confirmed dengue fever at each time after onset of symptoms was tested with all three diagnostic tests.", "text": "A blood sample from each patient with confirmed dengue fever at each time after onset of symptoms was tested with all three diagnostic tests.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 304.0089925130208, "t": 555.4532470703125, "r": 345.8683675130208, "b": 542.2969970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 3", "text": "Table 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.5", "text": "09.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 515.4199625651041, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 118]}], "orig": "The scientists recommend that the new test is used for the identification of dengue feverinallcountriesaroundtheworld.", "text": "The scientists recommend that the new test is used for the identification of dengue feverinallcountriesaroundtheworld.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.58474731445312, "t": 735.3967997233073, "r": 408.8688151041667, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Discuss this recommendation. Use all the information given.", "text": "Discuss this recommendation. Use all the information given.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 484.553955078125, "t": 721.816151936849, "r": 535.2926025390625, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 453.17401123046875, "r": 102.32291666666667, "b": 437.04697672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.6", "text": "09.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.58474731445312, "t": 436.62261962890625, "r": 261.30397542317706, "b": 425.16392008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "capillaries into the tissue fluid.", "text": "capillaries into the tissue fluid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 115.43039957682292, "t": 412.00767008463544, "r": 468.0639241536458, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Explain how this would affect the return of tissue fluid into the capillaries.", "text": "Explain how this would affect the return of tissue fluid into the capillaries.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 484.1311442057292, "t": 399.27581787109375, "r": 536.5610758463541, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 207.1827596028646, "t": 162.88771565755212, "r": 370.3920491536458, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 29, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 58.77225240071615, "t": 25.80808512369788, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 553.4739583333334, "t": 249.88873291015625, "r": 568.6955159505209, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 797.3584899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 106.97395833333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10.1", "text": "10.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 112.47064208984375, "t": 773.16796875, "r": 429.164306640625, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Describe how a quaternary protein is formed from its monomers.", "text": "Describe how a quaternary protein is formed from its monomers.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 115.007568359375, "t": 743.8847045898438, "r": 390.6875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Do not include the process of translation in your answer.", "text": "Do not include the process of translation in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 484.1311442057292, "t": 732.426035563151, "r": 535.2926025390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 81.1818135579427, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 545.0174967447916, "t": 789.7193756103516, "r": 585.1855875651041, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Do not write outsidethe box", "text": "Do not write outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 281.1765950520833, "t": 812.6367162068685, "r": 296.398193359375, "b": 798.2072804768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 438.4663899739583, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "10.2 Describe the structure of DNA and the structure of a chromosome.", "text": "10.2 Describe the structure of DNA and the structure of a chromosome.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 484.553955078125, "t": 759.5873209635416, "r": 536.1382242838541, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 185.1960245768229, "t": 110.26275634765625, "r": 393.2244059244792, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Question10 continueson the nextpage", "text": "Question10 continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 56.36456298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 31, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 58.34943135579427, "t": 26.23248291015625, "r": 79.4905293782552, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10.3", "text": "10.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 457.9161783854167, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Mutation can result in an increase in genetic variation within a species.", "text": "Mutation can result in an increase in genetic variation within a species.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.58474731445312, "t": 747.7042541503906, "r": 528.1046142578125, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Describe and explain the other processes that result in increases in genetic variation withinaspecies.", "text": "Describe and explain the other processes that result in increases in genetic variation withinaspecies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 484.1311442057292, "t": 720.1185709635416, "r": 535.7154134114584, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 231.28361002604166, "t": 244.37160237630212, "r": 346.7139892578125, "b": 232.91290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 553.4739583333334, "t": 313.9723917643229, "r": 569.9639892578125, "b": 299.96734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 33, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 188.15576171875, "t": 445.11049397786456, "r": 398.7211100260417, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 33, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 34, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 54.96685282389323, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 545.0174967447916, "t": 774.8655446370443, "r": 584.7627766927084, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 34, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.65151468912761, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 541.2121175130209, "t": 775.2899424235026, "r": 580.5345458984375, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 35, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 184.773193359375, "t": 771.0459899902344, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "Additional page, if required. Write the questionnumbers in the left-hand margin.", "text": "Additional page, if required. Write the questionnumbers in the left-hand margin.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 221]}], "orig": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CopyrightTeam.", "text": "CopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Copyright?2023AQAand itslicensors.Allrightsreserved.", "text": "Copyright?2023AQAand itslicensors.Allrightsreserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 65.11458333333333, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 380.5397542317708, "t": 43.63271077473962, "r": 509.5004475911458, "b": 33.87156168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "236A7402/1", "text": "236A7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 545.0174967447916, "t": 775.2899424235026, "r": 584.7627766927084, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 36, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.3661193847656, "t": 404.91436767578125, "r": 544.3709106445312, "b": 170.28326416015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.6879475911458, "t": 444.3417561848958, "r": 534.4469401041666, "b": 455.3760172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 464.2882893880208, "r": 489.2049967447917, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 465.5614827473958, "r": 530.6415608723959, "b": 476.5957845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 483.8105061848958, "r": 473.1377766927083, "b": 492.7227783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 464.6813151041667, "t": 500.3618977864583, "r": 474.40625, "b": 510.54736328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 517.3376871744791, "r": 473.9833984375, "b": 528.3719889322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 534.7379150390625, "r": 473.9833984375, "b": 544.9233805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 551.289306640625, "r": 473.9833984375, "b": 562.3236083984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 567.8407389322916, "r": 473.9833984375, "b": 579.2993977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 585.2409261067709, "r": 473.9833984375, "b": 596.2751871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 602.2167561848959, "r": 473.9833984375, "b": 613.2510172526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 619.1925455729166, "r": 473.9833984375, "b": 630.6512044270834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 463.835693359375, "t": 635.7439371744791, "r": 476.0975341796875, "b": 647.20263671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 11, "end_row_offset_idx": 12, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.5738525390625, "t": 654.8417561848959, "r": 487.5137125651042, "b": 667.9980061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 12, "end_row_offset_idx": 13, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 13, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.6879475911458, "t": 444.3417561848958, "r": 534.4469401041666, "b": 455.3760172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.6879475911458, "t": 444.3417561848958, "r": 534.4469401041666, "b": 455.3760172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 464.2882893880208, "r": 489.2049967447917, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 465.5614827473958, "r": 530.6415608723959, "b": 476.5957845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 483.8105061848958, "r": 473.1377766927083, "b": 492.7227783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 464.6813151041667, "t": 500.3618977864583, "r": 474.40625, "b": 510.54736328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 517.3376871744791, "r": 473.9833984375, "b": 528.3719889322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 534.7379150390625, "r": 473.9833984375, "b": 544.9233805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 551.289306640625, "r": 473.9833984375, "b": 562.3236083984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 567.8407389322916, "r": 473.9833984375, "b": 579.2993977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 585.2409261067709, "r": 473.9833984375, "b": 596.2751871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 602.2167561848959, "r": 473.9833984375, "b": 613.2510172526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 619.1925455729166, "r": 473.9833984375, "b": 630.6512044270834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 463.835693359375, "t": 635.7439371744791, "r": 476.0975341796875, "b": 647.20263671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 11, "end_row_offset_idx": 12, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 11, "end_row_offset_idx": 12, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.5738525390625, "t": 654.8417561848959, "r": 487.5137125651042, "b": 667.9980061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 12, "end_row_offset_idx": 13, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 12, "end_row_offset_idx": 13, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 14, "bbox": {"l": 117.84334564208984, "t": 406.4332580566406, "r": 530.4790649414062, "b": 130.2188720703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/13"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 163.6321004231771, "t": 463.01513671875, "r": 251.57906087239584, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacterial culture", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 392.3787841796875, "t": 471.07861328125, "r": 433.8153483072917, "b": 496.1179606119792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Positive control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 468.0639241536458, "t": 471.5030110677083, "r": 514.1514892578125, "b": 496.5423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Negative control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 302.7405192057292, "t": 477.4445393880208, "r": 369.1235758463542, "b": 490.1764322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Cinnamon oil", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.30965169270833, "t": 508.4254150390625, "r": 186.4644775390625, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacillus spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 509.2742106119792, "r": 343.7542724609375, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 509.2742106119792, "r": 421.5535074869792, "b": 523.2792561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 510.54736328125, "r": 495.5473225911458, "b": 522.8548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.30965169270833, "t": 535.1623128255209, "r": 239.74005126953125, "b": 550.4405110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Staphylococcus aureus", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 535.1623128255209, "r": 343.3314208984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "20", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 535.5867106119791, "r": 421.5535074869792, "b": 549.5917561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "17", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 536.85986328125, "r": 495.5473225911458, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.0411885579427, "t": 560.6260172526041, "r": 242.2769775390625, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Listeria monocytogenes", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 561.4748128255209, "r": 343.7542724609375, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 561.4748128255209, "r": 421.5535074869792, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 563.17236328125, "r": 495.5473225911458, "b": 575.4798583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.88683064778645, "t": 586.9385172526041, "r": 202.5317179361979, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Escherichia coli", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 587.3629150390625, "r": 343.7542724609375, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 587.3629150390625, "r": 421.5535074869792, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 588.6361083984375, "r": 495.5473225911458, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.30965169270833, "t": 612.4022216796875, "r": 194.9209187825521, "b": 628.1048583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Klebsiella spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 613.2510172526041, "r": 343.3314208984375, "b": 627.2560628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 613.6754150390625, "r": 421.5535074869792, "b": 627.6804606119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 614.5242106119791, "r": 495.5473225911458, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.0411885579427, "t": 639.1391194661459, "r": 232.55208333333334, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Median for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 641.2611083984375, "r": 495.5473225911458, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.46400960286458, "t": 665.4516194661459, "r": 224.5184529622396, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Mean for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 666.7248128255209, "r": 495.5473225911458, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.73248291015625, "t": 692.6128743489584, "r": 287.51894124348956, "b": 703.647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Standarddeviationforallcultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 325.5729166666667, "t": 690.490966796875, "r": 345.445556640625, "b": 705.7691243489584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 404.2177734375, "t": 690.0665690104166, "r": 422.8219401041667, "b": 706.617919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 692.6128743489584, "r": 495.12451171875, "b": 704.9203287760416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 4, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 163.6321004231771, "t": 463.01513671875, "r": 251.57906087239584, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacterial culture", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 302.7405192057292, "t": 477.4445393880208, "r": 369.1235758463542, "b": 490.1764322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Cinnamon oil", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 392.3787841796875, "t": 471.07861328125, "r": 433.8153483072917, "b": 496.1179606119792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Positive control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 468.0639241536458, "t": 471.5030110677083, "r": 514.1514892578125, "b": 496.5423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Negative control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.30965169270833, "t": 508.4254150390625, "r": 186.4644775390625, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacillus spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 509.2742106119792, "r": 343.7542724609375, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 509.2742106119792, "r": 421.5535074869792, "b": 523.2792561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 510.54736328125, "r": 495.5473225911458, "b": 522.8548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.30965169270833, "t": 535.1623128255209, "r": 239.74005126953125, "b": 550.4405110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Staphylococcus aureus", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 535.1623128255209, "r": 343.3314208984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "20", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 535.5867106119791, "r": 421.5535074869792, "b": 549.5917561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "17", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 536.85986328125, "r": 495.5473225911458, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.0411885579427, "t": 560.6260172526041, "r": 242.2769775390625, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Listeria monocytogenes", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 561.4748128255209, "r": 343.7542724609375, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 561.4748128255209, "r": 421.5535074869792, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 563.17236328125, "r": 495.5473225911458, "b": 575.4798583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.88683064778645, "t": 586.9385172526041, "r": 202.5317179361979, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Escherichia coli", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 587.3629150390625, "r": 343.7542724609375, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 587.3629150390625, "r": 421.5535074869792, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 588.6361083984375, "r": 495.5473225911458, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.30965169270833, "t": 612.4022216796875, "r": 194.9209187825521, "b": 628.1048583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Klebsiella spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 613.2510172526041, "r": 343.3314208984375, "b": 627.2560628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 613.6754150390625, "r": 421.5535074869792, "b": 627.6804606119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 614.5242106119791, "r": 495.5473225911458, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.0411885579427, "t": 639.1391194661459, "r": 232.55208333333334, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Median for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 641.2611083984375, "r": 495.5473225911458, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.46400960286458, "t": 665.4516194661459, "r": 224.5184529622396, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Mean for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 666.7248128255209, "r": 495.5473225911458, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.73248291015625, "t": 692.6128743489584, "r": 287.51894124348956, "b": 703.647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Standarddeviationforallcultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 325.5729166666667, "t": 690.490966796875, "r": 345.445556640625, "b": 705.7691243489584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 404.2177734375, "t": 690.0665690104166, "r": 422.8219401041667, "b": 706.617919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 692.6128743489584, "r": 495.12451171875, "b": 704.9203287760416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 19, "bbox": {"l": 117.88717651367188, "t": 582.575439453125, "r": 530.2239990234375, "b": 468.1828918457031, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/9"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 314.15671793619794, "t": 263.5493977864583, "r": 503.5809733072917, "b": 292.40826416015625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "CO concentration in the air / mg m-3 resultingin2.5%COHb", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.46400960286458, "t": 278.40321858723956, "r": 265.5321858723958, "b": 304.2913411458333, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Exposure duration at rest / hours", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 334.875, "t": 301.320556640625, "r": 362.78125, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Child", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.8020833333333, "t": 301.320556640625, "r": 484.1311442057292, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Adult", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 199.57196044921875, "t": 328.90625, "r": 208.02840169270834, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 336.14345296223956, "t": 326.78428141276044, "r": 361.0899658203125, "b": 342.0625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "31.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 457.4933675130208, "t": 327.633056640625, "r": 482.4398600260417, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "40.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 198.726318359375, "t": 354.3699544270833, "r": 208.45123291015625, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 342.0629475911458, "t": 353.945556640625, "r": 361.0899658203125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 458.3389892578125, "t": 354.3699544270833, "r": 482.0170491536458, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 4, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": {"l": 123.46400960286458, "t": 278.40321858723956, "r": 265.5321858723958, "b": 304.2913411458333, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Exposure duration at rest / hours", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 314.15671793619794, "t": 263.5493977864583, "r": 503.5809733072917, "b": 292.40826416015625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "CO concentration in the air / mg m-3 resultingin2.5%COHb", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 314.15671793619794, "t": 263.5493977864583, "r": 503.5809733072917, "b": 292.40826416015625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "CO concentration in the air / mg m-3 resultingin2.5%COHb", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.46400960286458, "t": 278.40321858723956, "r": 265.5321858723958, "b": 304.2913411458333, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Exposure duration at rest / hours", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 334.875, "t": 301.320556640625, "r": 362.78125, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Child", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.8020833333333, "t": 301.320556640625, "r": 484.1311442057292, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Adult", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 199.57196044921875, "t": 328.90625, "r": 208.02840169270834, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 336.14345296223956, "t": 326.78428141276044, "r": 361.0899658203125, "b": 342.0625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "31.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 457.4933675130208, "t": 327.633056640625, "r": 482.4398600260417, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "40.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 198.726318359375, "t": 354.3699544270833, "r": 208.45123291015625, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 342.0629475911458, "t": 353.945556640625, "r": 361.0899658203125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 458.3389892578125, "t": 354.3699544270833, "r": 482.0170491536458, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 28, "bbox": {"l": 117.90519714355469, "t": 530.8365783691406, "r": 530.6185913085938, "b": 384.3605651855469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 225.36409505208334, "t": 319.99395751953125, "r": 305.7002766927083, "b": 370.4969889322917, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Number of confirmed dengue fever patients tested", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.0411885579427, "t": 326.35988362630206, "r": 211.83380126953125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Time after onset of symptoms / days", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 328.53265380859375, "t": 345.8820393880208, "r": 388.1505533854167, "b": 371.7701822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Laboratory- based test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 396.1841634114583, "t": 353.0967610677083, "r": 457.9161783854167, "b": 365.82861328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Current test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 472.2921142578125, "t": 353.0967610677083, "r": 519.2253824869791, "b": 366.2530110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "New test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 159.82670084635416, "t": 384.5020345052083, "r": 181.81343587239584, "b": 399.7802327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 385.7751871744792, "r": 280.33095296223956, "b": 398.5070393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 351.3650309244792, "t": 385.7751871744792, "r": 365.3181559244792, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 386.6239827473958, "r": 434.2381591796875, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 494.2788899739583, "t": 385.7751871744792, "r": 504.0037841796875, "b": 399.3558349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 159.40387980143228, "t": 410.8145345052083, "r": 181.390625, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 264.68654378255206, "t": 410.8145345052083, "r": 280.33095296223956, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "38", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.0965983072917, "t": 410.8145345052083, "r": 365.7410074869792, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "28", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 412.0876871744792, "r": 434.2381591796875, "b": 424.3951822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 410.8145345052083, "r": 503.5809733072917, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "24", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 159.40387980143228, "t": 437.1270345052083, "r": 181.390625, "b": 451.5564371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5-7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 437.9757893880208, "r": 280.33095296223956, "b": 450.7076822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.4389241536458, "t": 438.4001871744792, "r": 365.3181559244792, "b": 450.2832845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 419.4393717447917, "t": 437.1270345052083, "r": 435.0837809244792, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 437.1270345052083, "r": 504.0037841796875, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 5, "num_cols": 5, "orientation": "rot_0", "grid": [[{"bbox": {"l": 123.0411885579427, "t": 326.35988362630206, "r": 211.83380126953125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Time after onset of symptoms / days", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 225.36409505208334, "t": 319.99395751953125, "r": 305.7002766927083, "b": 370.4969889322917, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Number of confirmed dengue fever patients tested", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.0411885579427, "t": 326.35988362630206, "r": 211.83380126953125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Time after onset of symptoms / days", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 225.36409505208334, "t": 319.99395751953125, "r": 305.7002766927083, "b": 370.4969889322917, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Number of confirmed dengue fever patients tested", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 328.53265380859375, "t": 345.8820393880208, "r": 388.1505533854167, "b": 371.7701822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Laboratory- based test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 396.1841634114583, "t": 353.0967610677083, "r": 457.9161783854167, "b": 365.82861328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Current test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 472.2921142578125, "t": 353.0967610677083, "r": 519.2253824869791, "b": 366.2530110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "New test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 159.82670084635416, "t": 384.5020345052083, "r": 181.81343587239584, "b": 399.7802327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 385.7751871744792, "r": 280.33095296223956, "b": 398.5070393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 351.3650309244792, "t": 385.7751871744792, "r": 365.3181559244792, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 386.6239827473958, "r": 434.2381591796875, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 494.2788899739583, "t": 385.7751871744792, "r": 504.0037841796875, "b": 399.3558349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 159.40387980143228, "t": 410.8145345052083, "r": 181.390625, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 264.68654378255206, "t": 410.8145345052083, "r": 280.33095296223956, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "38", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.0965983072917, "t": 410.8145345052083, "r": 365.7410074869792, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "28", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 412.0876871744792, "r": 434.2381591796875, "b": 424.3951822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 410.8145345052083, "r": 503.5809733072917, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "24", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 159.40387980143228, "t": 437.1270345052083, "r": 181.390625, "b": 451.5564371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5-7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 437.9757893880208, "r": 280.33095296223956, "b": 450.7076822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.4389241536458, "t": 438.4001871744792, "r": 365.3181559244792, "b": 450.2832845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 419.4393717447917, "t": 437.1270345052083, "r": 435.0837809244792, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 437.1270345052083, "r": 504.0037841796875, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.75285720825195, "t": 797.5618782043457, "r": 168.73263549804688, "b": 750.7547225952148, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.738304138183594, "t": 53.39813232421875, "r": 232.82923889160156, "b": 17.52978515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.79362869262695, "t": 53.08154296875, "r": 99.09292602539062, "b": 17.36419677734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 545.0670776367188, "t": 223.08392333984375, "r": 576.2114868164062, "b": 181.8350830078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.670082092285156, "t": 53.06951904296875, "r": 98.925537109375, "b": 17.565185546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 174.68348693847656, "t": 678.4638214111328, "r": 473.4761657714844, "b": 517.2424621582031, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 113.6479721069336, "t": 446.2611999511719, "r": 535.0597534179688, "b": 202.7186279296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.827579498291016, "t": 53.08203125, "r": 99.175048828125, "b": 17.63958740234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 545.1842651367188, "t": 258.13323974609375, "r": 576.4935913085938, "b": 218.5069580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 39.210819244384766, "t": 788.9965972900391, "r": 541.126708984375, "b": 74.01202392578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.505149841308594, "t": 53.05731201171875, "r": 99.4954605102539, "b": 16.613525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 83.32060241699219, "t": 775.6388702392578, "r": 104.85667419433594, "b": 759.4894866943359, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.60575485229492, "t": 53.17462158203125, "r": 99.0291748046875, "b": 17.504150390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 185.11962890625, "t": 665.8579711914062, "r": 461.7964782714844, "b": 414.4193115234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 47.08686065673828, "t": 390.10565185546875, "r": 105.59192657470703, "b": 372.57489013671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.7526969909668, "t": 53.21405029296875, "r": 99.15525817871094, "b": 17.678466796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 133.25204467773438, "t": 638.6665191650391, "r": 515.5753784179688, "b": 405.51715087890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 544.9602661132812, "t": 183.20513916015625, "r": 576.623291015625, "b": 141.35186767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.66440200805664, "t": 53.15325927734375, "r": 99.01779174804688, "b": 17.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.81245040893555, "t": 53.08746337890625, "r": 99.12252807617188, "b": 17.7144775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 40.93195724487305, "t": 577.9063415527344, "r": 537.04541015625, "b": 81.12896728515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/9"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.6055793762207, "t": 53.30047607421875, "r": 99.07133483886719, "b": 17.55902099609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.76731872558594, "t": 53.1451416015625, "r": 99.2094497680664, "b": 17.8843994140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 545.2431030273438, "t": 174.44384765625, "r": 576.5680541992188, "b": 134.07025146484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.73418426513672, "t": 53.0821533203125, "r": 99.10938262939453, "b": 17.3834228515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 48.139076232910156, "t": 775.6809158325195, "r": 103.93136596679688, "b": 759.4694137573242, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.70768356323242, "t": 53.1370849609375, "r": 99.12738037109375, "b": 17.514892578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.5362548828125, "t": 53.17645263671875, "r": 98.98401641845703, "b": 17.7249755859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 142.4031219482422, "t": 719.0232009887695, "r": 505.2492980957031, "b": 511.989501953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/2"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.770362854003906, "t": 53.152099609375, "r": 99.1795425415039, "b": 17.470947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.74127197265625, "t": 53.10418701171875, "r": 99.16690063476562, "b": 17.5113525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.769287109375, "t": 53.2208251953125, "r": 99.2181396484375, "b": 17.799560546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 223.7501678466797, "t": 584.8180236816406, "r": 425.0548400878906, "b": 410.3366394042969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 46.14360427856445, "t": 776.3026504516602, "r": 105.09618377685547, "b": 759.3049163818359, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.57915496826172, "t": 53.1851806640625, "r": 99.00019836425781, "b": 17.6298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 174.9173583984375, "t": 642.5787658691406, "r": 473.54656982421875, "b": 467.1842956542969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 45.22420883178711, "t": 776.5735702514648, "r": 105.89710998535156, "b": 758.970817565918, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.63395309448242, "t": 53.15869140625, "r": 98.9942855834961, "b": 17.73187255859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 545.2316284179688, "t": 201.66522216796875, "r": 575.9176025390625, "b": 161.1776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 45.190303802490234, "t": 776.6559371948242, "r": 105.86597442626953, "b": 758.5201568603516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.63211441040039, "t": 53.179931640625, "r": 99.04114532470703, "b": 17.34979248046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 150.9450225830078, "t": 617.3224029541016, "r": 313.2983703613281, "b": 503.0533142089844, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 334.0459899902344, "t": 617.4680633544922, "r": 496.58880615234375, "b": 502.9727478027344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.76779556274414, "t": 53.100830078125, "r": 99.30591583251953, "b": 17.63604736328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.62015914916992, "t": 53.1810302734375, "r": 99.0409927368164, "b": 17.2210693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 115.98562622070312, "t": 490.761474609375, "r": 525.6766967773438, "b": 228.09912109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/12"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.774227142333984, "t": 53.1300048828125, "r": 99.13195037841797, "b": 17.39892578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 45.659908294677734, "t": 776.9897079467773, "r": 81.86409759521484, "b": 758.8364791870117, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.52434539794922, "t": 53.19195556640625, "r": 99.01769256591797, "b": 17.4388427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 186.83546447753906, "t": 681.4509887695312, "r": 461.82470703125, "b": 475.6357116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 208.346923828125, "t": 394.1239929199219, "r": 439.4477844238281, "b": 196.01318359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/15"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.770870208740234, "t": 53.0679931640625, "r": 99.18653869628906, "b": 17.40289306640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 181.8665771484375, "t": 702.0701293945312, "r": 466.7599792480469, "b": 421.53448486328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.65751266479492, "t": 53.2117919921875, "r": 99.11640167236328, "b": 17.35589599609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.4676628112793, "t": 53.09393310546875, "r": 99.56715393066406, "b": 16.8975830078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.65123748779297, "t": 53.13800048828125, "r": 99.01586151123047, "b": 17.35797119140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.823516845703125, "t": 53.09564208984375, "r": 99.14620971679688, "b": 17.60443115234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 545.1295776367188, "t": 274.22503662109375, "r": 576.8034057617188, "b": 232.59393310546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.74403762817383, "t": 53.09490966796875, "r": 99.15995025634766, "b": 17.37774658203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.771995544433594, "t": 53.10174560546875, "r": 99.37220764160156, "b": 17.5792236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.77596664428711, "t": 53.02545166015625, "r": 99.17550659179688, "b": 17.2506103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 544.9116821289062, "t": 337.0838623046875, "r": 576.8983764648438, "b": 296.21673583984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 33, "bbox": {"l": 43.492340087890625, "t": 52.9921875, "r": 99.49662780761719, "b": 16.61517333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 34, "bbox": {"l": 43.72754669189453, "t": 53.10546875, "r": 99.3370132446289, "b": 17.23223876953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 43.70325469970703, "t": 53.17596435546875, "r": 99.36039733886719, "b": 16.9381103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 43.66989517211914, "t": 53.25164794921875, "r": 99.0889892578125, "b": 17.10797119140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 365.30670166015625, "t": 70.7662353515625, "r": 529.5682373046875, "b": 34.24615478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}, "2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}, "3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}, "4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}, "5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}, "6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}, "7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}, "8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}, "9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}, "10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}, "11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}, "12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}, "13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}, "14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}, "15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}, "16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}, "17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}, "18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}, "19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}, "20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}, "21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}, "22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}, "23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}, "24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}, "25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}, "26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}, "27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}, "28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}, "29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}, "30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}, "31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}, "32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}, "33": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 33}, "34": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 34}, "35": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 35}, "36": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 36}}, "_failed_pages": []} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p1.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p1.json new file mode 100644 index 0000000..a8f77d3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p1.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/15"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/23"}, {"$ref": "#/groups/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/27"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/28"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 173.35699462890625, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 726.4844970703125, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.957275390625, "r": 130.65198771158853, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.957275390625, "r": 403.7949625651042, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 653.9129231770834, "r": 102.32291666666667, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 628.44921875, "r": 120.08144124348958, "b": 614.8685709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 601.7123209635416, "r": 156.02130126953125, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 588.1316731770834, "r": 297.24383544921875, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.01373036702474, "t": 555.0288492838542, "r": 150.52461751302084, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "A-level BIOLOGY", "text": "A-level BIOLOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 483.30605061848956, "r": 96.40340169270833, "b": 465.48146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Paper 1", "text": "Paper 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 437.89577229817706, "r": 198.30350748697916, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Wednesday 7 June 2023", "text": "Wednesday 7 June 2023", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 408.18813069661456, "r": 92.59801228841145, "b": 395.45627848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 393.75868733723956, "r": 186.4644775390625, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 379.75364176432294, "r": 231.28361002604166, "b": 368.71938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "\u00b7arulerwithmillimetremeasurements", "text": "\u00b7arulerwithmillimetremeasurements", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 367.44618733723956, "r": 156.44412231445312, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7a scientific calculator.", "text": "\u00b7a scientific calculator.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 341.98248291015625, "r": 109.0880635579427, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 327.9774373372396, "r": 231.28361002604166, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 300.8161417643229, "r": 158.13541666666666, "b": 287.2354939778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7Answer all questions.", "text": "\u00b7Answer all questions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 314.39678955078125, "r": 239.31722005208334, "b": 299.96734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 286.81109619140625, "r": 385.6136067708333, "b": 260.49859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 118]}], "orig": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 260.0741984049479, "r": 424.5132649739583, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 139]}], "orig": "\u00b7If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "\u00b7If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 233.76169840494788, "r": 161.09516398111978, "b": 220.60544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Show all your working.", "text": "Show all your working.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 220.60544840494788, "r": 402.9493408203125, "b": 195.56614176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 181.56109619140625, "r": 106.12831624348958, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 166.28289794921875, "r": 300.20359293619794, "b": 155.24859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Themarksforthequestionsareshowninbrackets.", "text": "\u00b7Themarksforthequestionsareshowninbrackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 152.70220947265625, "r": 246.0823771158854, "b": 141.66794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "\u00b7The maximum markfor thispaperis91.", "text": "\u00b7The maximum markfor thispaperis91.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 212.679443359375, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "JUN237402101", "text": "JUN237402101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 268.491943359375, "t": 438.32017008463544, "r": 332.76088460286456, "b": 421.76877848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Afternoon", "text": "Afternoon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 402.5264892578125, "t": 438.74456787109375, "r": 545.4403076171875, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Time allowed: 2 hours", "text": "Time allowed: 2 hours", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 364.0497233072917, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "IB/M/Jun23/E9", "text": "IB/M/Jun23/E9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 485.8224283854167, "t": 35.14475504557288, "r": 550.93701171875, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "7402/1", "text": "7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.75285720825195, "t": 797.5618782043457, "r": 168.73263549804688, "b": 750.7547225952148, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.738304138183594, "t": 53.39813232421875, "r": 232.82923889160156, "b": 17.52978515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.3661193847656, "t": 404.91436767578125, "r": 544.3709106445312, "b": 170.28326416015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.6879475911458, "t": 444.3417561848958, "r": 534.4469401041666, "b": 455.3760172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 464.2882893880208, "r": 489.2049967447917, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 465.5614827473958, "r": 530.6415608723959, "b": 476.5957845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 483.8105061848958, "r": 473.1377766927083, "b": 492.7227783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 464.6813151041667, "t": 500.3618977864583, "r": 474.40625, "b": 510.54736328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 517.3376871744791, "r": 473.9833984375, "b": 528.3719889322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 534.7379150390625, "r": 473.9833984375, "b": 544.9233805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 551.289306640625, "r": 473.9833984375, "b": 562.3236083984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 567.8407389322916, "r": 473.9833984375, "b": 579.2993977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 585.2409261067709, "r": 473.9833984375, "b": 596.2751871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 602.2167561848959, "r": 473.9833984375, "b": 613.2510172526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 619.1925455729166, "r": 473.9833984375, "b": 630.6512044270834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 463.835693359375, "t": 635.7439371744791, "r": 476.0975341796875, "b": 647.20263671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 11, "end_row_offset_idx": 12, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.5738525390625, "t": 654.8417561848959, "r": 487.5137125651042, "b": 667.9980061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 12, "end_row_offset_idx": 13, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 13, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.6879475911458, "t": 444.3417561848958, "r": 534.4469401041666, "b": 455.3760172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.6879475911458, "t": 444.3417561848958, "r": 534.4469401041666, "b": 455.3760172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 464.2882893880208, "r": 489.2049967447917, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 465.5614827473958, "r": 530.6415608723959, "b": 476.5957845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 483.8105061848958, "r": 473.1377766927083, "b": 492.7227783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 464.6813151041667, "t": 500.3618977864583, "r": 474.40625, "b": 510.54736328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 517.3376871744791, "r": 473.9833984375, "b": 528.3719889322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 534.7379150390625, "r": 473.9833984375, "b": 544.9233805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 551.289306640625, "r": 473.9833984375, "b": 562.3236083984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 567.8407389322916, "r": 473.9833984375, "b": 579.2993977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 585.2409261067709, "r": 473.9833984375, "b": 596.2751871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 602.2167561848959, "r": 473.9833984375, "b": 613.2510172526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 619.1925455729166, "r": 473.9833984375, "b": 630.6512044270834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 463.835693359375, "t": 635.7439371744791, "r": 476.0975341796875, "b": 647.20263671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 11, "end_row_offset_idx": 12, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 11, "end_row_offset_idx": 12, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.5738525390625, "t": 654.8417561848959, "r": 487.5137125651042, "b": 667.9980061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 12, "end_row_offset_idx": 13, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 12, "end_row_offset_idx": 13, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p10.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p10.json new file mode 100644 index 0000000..c4faab7 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p10.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 407.1775309244792, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Not all patients in hospital with C. difficile develop diarrhoea.", "text": "Not all patients in hospital with C. difficile develop diarrhoea.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 747.7042541503906, "r": 532.3328450520834, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "Scientists measured the anti-toxin antibody concentration in hospital patients with and withoutC.difficileinfection.", "text": "Scientists measured the anti-toxin antibody concentration in hospital patients with and withoutC.difficileinfection.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 708.659901936849, "r": 428.3186442057292, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "They measured the anti-toxin antibody concentration four times:", "text": "They measured the anti-toxin antibody concentration four times:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 116.27604166666667, "t": 684.4693806966146, "r": 282.445068359375, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "\u00b7 on admission to hospital (day 0)", "text": "on admission to hospital (day 0)", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 669.1911417643229, "r": 169.97442626953125, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "\u00b7 on day 3", "text": "on day 3", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 656.8836873372396, "r": 169.97442626953125, "b": 644.1518351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "\u00b7on day 6", "text": "\u00b7on day 6", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 116.27604166666667, "t": 643.3030395507812, "r": 311.19696044921875, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "\u00b7on the day the patient left the hospital.", "text": "\u00b7on the day the patient left the hospital.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 10, "bbox": {"l": 115.007568359375, "t": 618.2637329101562, "r": 298.51230875651044, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Figure 4 shows thescientists'results.", "text": "Figure 4 shows thescientists'results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 10, "bbox": {"l": 268.06911214192706, "t": 594.0732014973959, "r": 312.88824462890625, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.61836751302083, "t": 566.487528483073, "r": 139.95407104492188, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.5", "text": "2.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.19554646809895, "t": 487.97442626953125, "r": 141.2225341796875, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.0", "text": "2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.42992146809896, "t": 438.32017008463544, "r": 82.02746073404948, "b": 426.43711344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Mean", "text": "Mean", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.42992146809896, "t": 426.01271565755206, "r": 98.51751708984375, "b": 414.55405680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "anti-toxin", "text": "anti-toxin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.007100423177086, "t": 415.40285237630206, "r": 96.40340169270833, "b": 401.39780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "antibody", "text": "antibody", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 116.27604166666667, "t": 406.06614176432294, "r": 141.2225341796875, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.5", "text": "1.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 52.42992146809896, "t": 400.97340901692706, "r": 120.50426228841145, "b": 391.21230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "concentration", "text": "concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 51.161458333333336, "t": 391.21230061848956, "r": 100.63162231445312, "b": 376.78289794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "/ arbitrary", "text": "/ arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 51.58427937825521, "t": 378.05605061848956, "r": 77.79924011230469, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.61836751302083, "t": 329.2506306966146, "r": 144.18229166666666, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1.0\u7c73", "text": "1.0\u7c73", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 122.19554646809895, "t": 249.46433512369788, "r": 140.79971313476562, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.5", "text": "0.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 140.37689208984375, "t": 238.85447184244788, "r": 146.7192179361979, "b": 230.36655680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 259.61269124348956, "t": 238.00567626953125, "r": 264.68654378255206, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 378.8484700520833, "t": 238.00567626953125, "r": 384.3451741536458, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 471.4464925130208, "t": 240.12762451171875, "r": 529.7958984375, "b": 226.97137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Day patient", "text": "Day patient", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 273.1429850260417, "t": 231.63975016276038, "r": 369.9691975911458, "b": 218.05910237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Hospital stay / days", "text": "Hospital stay / days", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 471.023681640625, "t": 228.66896565755212, "r": 528.9502766927084, "b": 214.66392008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "left hospital", "text": "left hospital", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 139.53125, "t": 211.69317626953125, "r": 160.6723429361979, "b": 197.26373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 182.23626708984375, "t": 195.56614176432288, "r": 424.5132649739583, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "PatientswithC.difficileinfectionbut nodiarrhoea", "text": "PatientswithC.difficileinfectionbut nodiarrhoea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 182.6590779622396, "t": 179.86354573567712, "r": 355.59326171875, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "PatientswithoutC.difficileinfection", "text": "PatientswithoutC.difficileinfection", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 140.37689208984375, "t": 162.46331787109375, "r": 147.56486002604166, "b": 155.24859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "?", "text": "?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 181.390625, "t": 164.58530680338538, "r": 410.9829508463542, "b": 153.55100504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "PatientswithC.difficileinfectionanddiarrhoea", "text": "PatientswithC.difficileinfectionanddiarrhoea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 40.93195724487305, "t": 577.9063415527344, "r": 537.04541015625, "b": 81.12896728515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/9"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.6055793762207, "t": 53.30047607421875, "r": 99.07133483886719, "b": 17.55902099609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p11.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p11.json new file mode 100644 index 0000000..7afe451 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p11.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 282.86789957682294, "t": 811.7879257202148, "r": 295.1297200520833, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 106.97395833333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 112.04782104492188, "t": 773.16796875, "r": 529.3730875651041, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "The scientists suggest that the anti-toxin antibody could be given to some patients as a form of passive immunity.", "text": "The scientists suggest that the anti-toxin antibody could be given to some patients as a form of passive immunity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 730.7284545898438, "r": 518.3797200520834, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Use Figure 4 to suggest how this passive immunity would work and which patients should be offered this anti-toxin antibody.", "text": "Use Figure 4 to suggest how this passive immunity would work and which patients should be offered this anti-toxin antibody.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 703.5671590169271, "r": 535.7154134114584, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.89299011230469, "t": 433.22743733723956, "r": 101.9000956217448, "b": 418.79799397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 112.47064208984375, "t": 432.37864176432294, "r": 525.5677083333334, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "To be used as passive immunity treatment, the anti-toxin antibody would be injected. If it was given by mouth, it would be digested.", "text": "To be used as passive immunity treatment, the anti-toxin antibody would be injected. If it was given by mouth, it would be digested.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 391.21230061848956, "r": 385.6136067708333, "b": 378.05605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Describe how the anti-toxin antibody would be digested.", "text": "Describe how the anti-toxin antibody would be digested.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 376.35850016276044, "r": 535.7154134114584, "b": 361.92905680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 207.1827596028646, "t": 111.96026611328125, "r": 370.3920491536458, "b": 98.37961832682288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 11, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 557.2793375651041, "t": 149.30710856119788, "r": 565.3129475911459, "b": 138.27276611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.76731872558594, "t": 53.1451416015625, "r": 99.2094497680664, "b": 17.8843994140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 545.2431030273438, "t": 174.44384765625, "r": 576.5680541992188, "b": 134.07025146484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p12.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p12.json new file mode 100644 index 0000000..38e13a9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p12.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 771.8947804768881, "r": 512.0373942057291, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 183]}], "orig": "Astudentinvestigatedtheuseofcinnamonoilasanantimicrobialsubstance. She investigated the effect of cinnamon oil on the growth of five different bacterial cultures grown on agar plates.", "text": "Astudentinvestigatedtheuseofcinnamonoilasanantimicrobialsubstance. She investigated the effect of cinnamon oil on the growth of five different bacterial cultures grown on agar plates.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.04734802246094, "t": 722.2405497233073, "r": 102.74573771158855, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 720.9673563639323, "r": 505.2722574869792, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "The student added 1o0 mm? of each bacterial culture from its glass bottle onto a spreader.", "text": "The student added 1o0 mm? of each bacterial culture from its glass bottle onto a spreader.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 667.4935709635416, "r": 350.9422200520833, "b": 654.76171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Describe the aseptic techniques she should use.", "text": "Describe the aseptic techniques she should use.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 483.7083333333333, "t": 653.0641276041666, "r": 535.2926025390625, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 62.57765197753906, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.73418426513672, "t": 53.0821533203125, "r": 99.10938262939453, "b": 17.3834228515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p13.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p13.json new file mode 100644 index 0000000..5634cf2 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p13.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 105.70548502604167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 105.70548502604167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 112.47064208984375, "t": 774.0167541503906, "r": 417.3252766927083, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "On each agar plate, the student cut a well (a hole) in the agar.", "text": "On each agar plate, the student cut a well (a hole) in the agar.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 743.0359090169271, "r": 533.601318359375, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "The well had a diameter of 6 mm. The student added 50 mm?of cinnamon oil into the well.", "text": "The well had a diameter of 6 mm. The student added 50 mm?of cinnamon oil into the well.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 701.8695780436198, "r": 526.8361409505209, "b": 676.8302612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Calculate the minimum depth of the well to allow the addition of 50 mm? of cinnamon oil.", "text": "Calculate the minimum depth of the well to allow the addition of 50 mm? of cinnamon oil.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 675.9814758300781, "r": 338.6803792317708, "b": 663.2496134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Use the following equation in your calculation:", "text": "Use the following equation in your calculation:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 252.8475341796875, "t": 651.3665568033854, "r": 397.0298258463542, "b": 636.5127156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Volume of a cylinder = \u03c0r2 x I", "text": "Volume of a cylinder = \u03c0r2 x I", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 624.2052612304688, "r": 249.4649658203125, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Use 3.14 as the value for \u03c0.", "text": "Use 3.14 as the value for \u03c0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 599.1659545898438, "r": 211.83380126953125, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Show your working.", "text": "Show your working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.553955078125, "t": 584.7365112304688, "r": 535.2926025390625, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 379.6941324869792, "t": 353.44114176432294, "r": 535.7154134114584, "b": 341.55808512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Answer mm", "text": "Answer mm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 187.73295084635416, "t": 291.0550740559896, "r": 390.6875, "b": 277.0500284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question5 continueson thenextpage", "text": "Question5 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 48.139076232910156, "t": 775.6809158325195, "r": 103.93136596679688, "b": 759.4694137573242, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.70768356323242, "t": 53.1370849609375, "r": 99.12738037109375, "b": 17.514892578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p14.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p14.json new file mode 100644 index 0000000..5f01ac9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p14.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 773.16796875, "r": 354.7476399739583, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "The student kept the plates at 25 \u00b0C for 24 hours.", "text": "The student kept the plates at 25 \u00b0C for 24 hours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 745.1578877766927, "r": 432.546875, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Figure 5 shows what one of her plates looked like after 24 hours.", "text": "Figure 5 shows what one of her plates looked like after 24 hours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 301.89487711588544, "t": 720.54296875, "r": 347.9824625651042, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 142.913818359375, "t": 692.957275390625, "r": 220.71305338541666, "b": 679.3766377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Bacterial cuture", "text": "Bacterial cuture", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 142.913818359375, "t": 679.3766377766927, "r": 199.1491495768229, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "growing on", "text": "growing on", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 142.49099731445312, "t": 668.3423665364584, "r": 186.4644775390625, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "the agar.", "text": "the agar.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 411.40576171875, "t": 642.8786417643229, "r": 489.6278483072917, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Well containing", "text": "Well containing", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 414.3655192057292, "t": 628.0248209635416, "r": 477.3660074869792, "b": 617.8393351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "cinnamon oil", "text": "cinnamon oil", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 413.5198567708333, "t": 571.5802612304688, "r": 506.5406901041667, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Clearzonewithno", "text": "Clearzonewithno", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 413.5198567708333, "t": 560.5459798177083, "r": 493.4332275390625, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "bacterial growth", "text": "bacterial growth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 495.18914794921875, "r": 529.7958984375, "b": 470.57419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 139]}], "orig": "The student measured the diameter of the clear zone with no bacterial growth around eachwell.Shemade thesemeasurementsto thenearest wholemm", "text": "The student measured the diameter of the clear zone with no bacterial growth around eachwell.Shemade thesemeasurementsto thenearest wholemm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 456.14479573567706, "r": 243.96826171875, "b": 444.68609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Table 1 shows her results.", "text": "Table 1 shows her results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 304.4318033854167, "t": 430.68105061848956, "r": 344.5998942057292, "b": 418.79799397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.5362548828125, "t": 53.17645263671875, "r": 98.98401641845703, "b": 17.7249755859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 142.4031219482422, "t": 719.0232009887695, "r": 505.2492980957031, "b": 511.989501953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/2"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 14, "bbox": {"l": 117.84334564208984, "t": 406.4332580566406, "r": 530.4790649414062, "b": 130.2188720703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/13"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 163.6321004231771, "t": 463.01513671875, "r": 251.57906087239584, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacterial culture", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 392.3787841796875, "t": 471.07861328125, "r": 433.8153483072917, "b": 496.1179606119792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Positive control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 468.0639241536458, "t": 471.5030110677083, "r": 514.1514892578125, "b": 496.5423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Negative control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 302.7405192057292, "t": 477.4445393880208, "r": 369.1235758463542, "b": 490.1764322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Cinnamon oil", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.30965169270833, "t": 508.4254150390625, "r": 186.4644775390625, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacillus spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 509.2742106119792, "r": 343.7542724609375, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 509.2742106119792, "r": 421.5535074869792, "b": 523.2792561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 510.54736328125, "r": 495.5473225911458, "b": 522.8548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.30965169270833, "t": 535.1623128255209, "r": 239.74005126953125, "b": 550.4405110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Staphylococcus aureus", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 535.1623128255209, "r": 343.3314208984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "20", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 535.5867106119791, "r": 421.5535074869792, "b": 549.5917561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "17", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 536.85986328125, "r": 495.5473225911458, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.0411885579427, "t": 560.6260172526041, "r": 242.2769775390625, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Listeria monocytogenes", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 561.4748128255209, "r": 343.7542724609375, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 561.4748128255209, "r": 421.5535074869792, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 563.17236328125, "r": 495.5473225911458, "b": 575.4798583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.88683064778645, "t": 586.9385172526041, "r": 202.5317179361979, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Escherichia coli", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 587.3629150390625, "r": 343.7542724609375, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 587.3629150390625, "r": 421.5535074869792, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 588.6361083984375, "r": 495.5473225911458, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.30965169270833, "t": 612.4022216796875, "r": 194.9209187825521, "b": 628.1048583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Klebsiella spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 613.2510172526041, "r": 343.3314208984375, "b": 627.2560628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 613.6754150390625, "r": 421.5535074869792, "b": 627.6804606119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 614.5242106119791, "r": 495.5473225911458, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.0411885579427, "t": 639.1391194661459, "r": 232.55208333333334, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Median for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 641.2611083984375, "r": 495.5473225911458, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.46400960286458, "t": 665.4516194661459, "r": 224.5184529622396, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Mean for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 666.7248128255209, "r": 495.5473225911458, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 124.73248291015625, "t": 692.6128743489584, "r": 287.51894124348956, "b": 703.647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Standarddeviationforallcultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 325.5729166666667, "t": 690.490966796875, "r": 345.445556640625, "b": 705.7691243489584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 404.2177734375, "t": 690.0665690104166, "r": 422.8219401041667, "b": 706.617919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 692.6128743489584, "r": 495.12451171875, "b": 704.9203287760416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 4, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 339.5260416666667, "t": 444.3417561848958, "r": 486.6680908203125, "b": 457.4980061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 4, "text": "Diameterofclearzone/ mm", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 163.6321004231771, "t": 463.01513671875, "r": 251.57906087239584, "b": 477.0201822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacterial culture", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 302.7405192057292, "t": 477.4445393880208, "r": 369.1235758463542, "b": 490.1764322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Cinnamon oil", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 392.3787841796875, "t": 471.07861328125, "r": 433.8153483072917, "b": 496.1179606119792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Positive control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 468.0639241536458, "t": 471.5030110677083, "r": 514.1514892578125, "b": 496.5423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Negative control", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.30965169270833, "t": 508.4254150390625, "r": 186.4644775390625, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bacillus spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 509.2742106119792, "r": 343.7542724609375, "b": 524.1280110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 509.2742106119792, "r": 421.5535074869792, "b": 523.2792561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 510.54736328125, "r": 495.5473225911458, "b": 522.8548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.30965169270833, "t": 535.1623128255209, "r": 239.74005126953125, "b": 550.4405110677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Staphylococcus aureus", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 535.1623128255209, "r": 343.3314208984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "20", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.4862467447917, "t": 535.5867106119791, "r": 421.5535074869792, "b": 549.5917561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "17", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 536.85986328125, "r": 495.5473225911458, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.0411885579427, "t": 560.6260172526041, "r": 242.2769775390625, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Listeria monocytogenes", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 561.4748128255209, "r": 343.7542724609375, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 561.4748128255209, "r": 421.5535074869792, "b": 575.9042561848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 563.17236328125, "r": 495.5473225911458, "b": 575.4798583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.88683064778645, "t": 586.9385172526041, "r": 202.5317179361979, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Escherichia coli", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 587.3629150390625, "r": 343.7542724609375, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 587.3629150390625, "r": 421.5535074869792, "b": 601.7923583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 588.6361083984375, "r": 495.5473225911458, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.30965169270833, "t": 612.4022216796875, "r": 194.9209187825521, "b": 628.1048583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Klebsiella spp.", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 327.68701171875, "t": 613.2510172526041, "r": 343.3314208984375, "b": 627.2560628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 405.9090983072917, "t": 613.6754150390625, "r": 421.5535074869792, "b": 627.6804606119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 614.5242106119791, "r": 495.5473225911458, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.0411885579427, "t": 639.1391194661459, "r": 232.55208333333334, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Median for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 641.2611083984375, "r": 495.5473225911458, "b": 652.7197672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.46400960286458, "t": 665.4516194661459, "r": 224.5184529622396, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Mean for all cultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.0909016927083, "t": 666.7248128255209, "r": 495.5473225911458, "b": 679.0322672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 124.73248291015625, "t": 692.6128743489584, "r": 287.51894124348956, "b": 703.647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Standarddeviationforallcultures", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 325.5729166666667, "t": 690.490966796875, "r": 345.445556640625, "b": 705.7691243489584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 404.2177734375, "t": 690.0665690104166, "r": 422.8219401041667, "b": 706.617919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.5137125651042, "t": 692.6128743489584, "r": 495.12451171875, "b": 704.9203287760416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p15.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p15.json new file mode 100644 index 0000000..764635d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p15.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 516.6884358723959, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "Suggest exactly what the student added to the wells to get the positive control and negativecontrol results.", "text": "Suggest exactly what the student added to the wells to get the positive control and negativecontrol results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 745.1578877766927, "r": 535.7154134114584, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.04734802246094, "t": 553.7556762695312, "r": 106.97395833333333, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 112.04782104492188, "t": 551.2092895507812, "r": 407.1775309244792, "b": 538.901835123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Complete Table 1 to show the median and mean diameters.", "text": "Complete Table 1 to show the median and mean diameters.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 490.0506591796875, "t": 536.35546875, "r": 535.7154134114584, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.04734802246094, "t": 422.61757405598956, "r": 101.9000956217448, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.3162841796875, "t": 421.34438069661456, "r": 431.2784016927083, "b": 408.18813069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "The mean \u00b1 2 standard deviations includes over 95% of the data.", "text": "The mean \u00b1 2 standard deviations includes over 95% of the data.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 395.03188069661456, "r": 488.359375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 129]}], "orig": "Use this information to consider whether the standard deviations suggest the differences in means are likely to be due to chance.", "text": "Use this information to consider whether the standard deviations suggest the differences in means are likely to be due to chance.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 357.26072184244794, "r": 383.49951171875, "b": 343.25567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Explain your answer, including at least one calculation.", "text": "Explain your answer, including at least one calculation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.1311442057292, "t": 344.95322672526044, "r": 536.5610758463541, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 207.6055908203125, "t": 121.29701741536462, "r": 370.8148600260417, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turnoverfor thenextquestion", "text": "Turnoverfor thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 15, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 553.8967692057291, "t": 170.10243733723962, "r": 569.1183675130209, "b": 157.37058512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.770362854003906, "t": 53.152099609375, "r": 99.1795425415039, "b": 17.470947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p16.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p16.json new file mode 100644 index 0000000..cd7a70a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p16.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 106.12831624348958, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 110.77935791015625, "t": 774.0167541503906, "r": 263.41807047526044, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Define genome and proteome.", "text": "Define genome and proteome.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 758.3141377766927, "r": 536.1382242838541, "b": 743.8847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 732.0016377766927, "r": 157.71259562174478, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Genome", "text": "Genome", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 655.1861165364584, "r": 163.6321004231771, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Proteome", "text": "Proteome", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 565.214335123698, "r": 533.601318359375, "b": 488.39882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 476]}], "orig": "The classification system used in the early 2oth century grouped different species of bacteriaaccordingtothepositionandshapeofflagellaonbacterialcellsandbythe number of flagella per cell. These were observed using an optical microscope. Each species of bacteriumhas a characteristiccell shape and arrangement of flagella. These characteristics may be shared with other species within a genus. Flagella are fragile, difficult to stain and may extend from the cell at any angle.", "text": "The classification system used in the early 2oth century grouped different species of bacteriaaccordingtothepositionandshapeofflagellaonbacterialcellsandbythe number of flagella per cell. These were observed using an optical microscope. Each species of bacteriumhas a characteristiccell shape and arrangement of flagella. These characteristics may be shared with other species within a genus. Flagella are fragile, difficult to stain and may extend from the cell at any angle.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.201700846354164, "t": 477.78892008463544, "r": 102.74573771158855, "b": 462.08632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 112.89346313476562, "t": 475.66697184244794, "r": 523.03076171875, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "Consider the accuracy and limitations of the early classification of bacteria using the arrangementofflagella.", "text": "Consider the accuracy and limitations of the early classification of bacteria using the arrangementofflagella.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 448.50567626953125, "r": 534.4469401041666, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.74127197265625, "t": 53.10418701171875, "r": 99.16690063476562, "b": 17.5113525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p17.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p17.json new file mode 100644 index 0000000..6e0862e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p17.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 284.1363525390625, "t": 810.9391352335612, "r": 295.1297200520833, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 482.4398600260417, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Suggest why several bacterial species have been renamed in recent years.", "text": "Suggest why several bacterial species have been renamed in recent years.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.4734700520833, "t": 759.1629282633463, "r": 535.2926025390625, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.47016906738281, "t": 643.7274373372396, "r": 101.9000956217448, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 641.60546875, "r": 495.12451171875, "b": 628.8736165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Figure 6 shows an image from an optical microscope of a single bacterial cell.", "text": "Figure 6 shows an image from an optical microscope of a single bacterial cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 17, "bbox": {"l": 302.3177083333333, "t": 612.7466023763021, "r": 348.4053141276042, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 396.30507405598956, "r": 396.1841634114583, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "This bacterial cell is 2.3 \u03bcm long (excluding the flagellum).", "text": "This bacterial cell is 2.3 \u03bcm long (excluding the flagellum).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 368.71938069661456, "r": 315.42519124348956, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Calculate the magnification of this image.", "text": "Calculate the magnification of this image.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 343.68007405598956, "r": 210.9881591796875, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Showyourworking.", "text": "Showyourworking.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 483.7083333333333, "t": 330.94822184244794, "r": 535.7154134114584, "b": 316.5187784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 284.98199462890625, "t": 152.70220947265625, "r": 361.5127766927083, "b": 137.42397054036462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Magnification x", "text": "Magnification x", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 558.125, "t": 155.24859619140625, "r": 564.89013671875, "b": 145.91192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 207.6055908203125, "t": 116.20424397786462, "r": 370.3920491536458, "b": 103.04799397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turnoverfor thenextquestion", "text": "Turnoverfor thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.769287109375, "t": 53.2208251953125, "r": 99.2181396484375, "b": 17.799560546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 223.7501678466797, "t": 584.8180236816406, "r": 425.0548400878906, "b": 410.3366394042969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p18.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p18.json new file mode 100644 index 0000000..5774183 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p18.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 504.0037841796875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Carbon monoxide (CO) is released during incomplete combustion of fossil fuels.", "text": "Carbon monoxide (CO) is released during incomplete combustion of fossil fuels.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 746.0066731770834, "r": 433.3924967447917, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Figure 7 shows the dissociation curve for oxyhaemoglobin when:", "text": "Figure 7 shows the dissociation curve for oxyhaemoglobin when:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 18, "bbox": {"l": 115.43039957682292, "t": 719.269785563151, "r": 220.29024251302084, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "\u00b7 not exposed to CO", "text": "not exposed to CO", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 18, "bbox": {"l": 123.46400960286458, "t": 707.38671875, "r": 505.2722574869792, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "exposed to CO such that 50% of the oxygen binding sites are occupied by CO (50% COHb).", "text": "exposed to CO such that 50% of the oxygen binding sites are occupied by CO (50% COHb).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 302.3177083333333, "t": 669.6155395507812, "r": 347.9824625651042, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 234.24336751302084, "t": 642.8786417643229, "r": 257.07574462890625, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "100-", "text": "100-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 413.9427083333333, "t": 638.6347045898438, "r": 451.9966634114583, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "No CO", "text": "No CO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 239.74005126953125, "t": 607.2294514973959, "r": 256.65293375651044, "b": 593.6488037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "75-", "text": "75-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 175.47111002604166, "t": 584.7365112304688, "r": 234.24336751302084, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Percentage", "text": "Percentage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 175.8939412434896, "t": 572.4290568033855, "r": 227.90104166666666, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "saturation", "text": "saturation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 239.74005126953125, "t": 571.1558634440105, "r": 256.2301025390625, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 414.788330078125, "t": 570.3070678710938, "r": 473.5605875651042, "b": 558.848409016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "50%COHb", "text": "50%COHb", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 175.47111002604166, "t": 563.0923665364583, "r": 214.3707275390625, "b": 544.8433634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "with O2", "text": "with O2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 239.74005126953125, "t": 535.9310709635417, "r": 256.65293375651044, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "25-", "text": "25-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 255.38446044921875, "t": 489.24761962890625, "r": 260.4583333333333, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 406.3319091796875, "t": 491.79396565755206, "r": 420.7078450520833, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 310.351318359375, "t": 481.18410237630206, "r": 361.0899658203125, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "pO2 / kPa", "text": "pO2 / kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 451.05202229817706, "r": 533.1785074869791, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 117]}], "orig": "Using Figure 7, what can you conclude about how exposure to CO affects the loading andunloadingofoxygenbyhaemoglobin?", "text": "Using Figure 7, what can you conclude about how exposure to CO affects the loading andunloadingofoxygenbyhaemoglobin?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 413.70526123046875, "r": 218.1761271158854, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Explain your answer.", "text": "Explain your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.553955078125, "t": 400.97340901692706, "r": 536.1382242838541, "b": 386.54396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 46.14360427856445, "t": 776.3026504516602, "r": 105.09618377685547, "b": 759.3049163818359, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.57915496826172, "t": 53.1851806640625, "r": 99.00019836425781, "b": 17.6298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 174.9173583984375, "t": 642.5787658691406, "r": 473.54656982421875, "b": 467.1842956542969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p19.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p19.json new file mode 100644 index 0000000..14125e0 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p19.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/14"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 106.97395833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.2", "text": "07.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 535.7154134114584, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 131]}], "orig": "The World Health Organisation (WHO) suggests that to avoid long-term health effects, COHb concentrations should be kept below 2.5%.", "text": "The World Health Organisation (WHO) suggests that to avoid long-term health effects, COHb concentrations should be kept below 2.5%.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 735.3967997233073, "r": 394.9156901041667, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "WHO recommends that people should not be exposed to:", "text": "WHO recommends that people should not be exposed to:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 19, "bbox": {"l": 115.43039957682292, "t": 709.0842997233073, "r": 352.6335042317708, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "\u00b7 air with > 10 mg m-3 CO for more than 8 hours", "text": "air with > 10 mg m-3 CO for more than 8 hours", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 19, "bbox": {"l": 116.69886271158855, "t": 695.9280497233073, "r": 350.5194091796875, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "air with > 30 mg m-3 CO for more than 1 hour.", "text": "air with > 30 mg m-3 CO for more than 1 hour.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 670.4643351236979, "r": 501.4668375651042, "b": 645.8494262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 135]}], "orig": "Scientists have used a mathematical model to calculate the exposure to carbon monoxidethatwouldresultin2.5%COHbinbothadultsandchildren.", "text": "Scientists have used a mathematical model to calculate the exposure to carbon monoxidethatwouldresultin2.5%COHbinbothadultsandchildren.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 631.4199829101562, "r": 293.4384358723958, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Table2showsthescientists'results.", "text": "Table2showsthescientists'results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 304.85463460286456, "t": 606.3806762695312, "r": 345.022705078125, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 455.29600016276044, "r": 487.5137125651042, "b": 430.68105061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 121]}], "orig": "The scientists suggest that the WHO recommendations for carbon monoxide concentrationsresultingin2.5%COHbshouldbereduced.", "text": "The scientists suggest that the WHO recommendations for carbon monoxide concentrationsresultingin2.5%COHbshouldbereduced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 417.52480061848956, "r": 284.98199462890625, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Evaluate the scientists'conclusion.", "text": "Evaluate the scientists'conclusion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 19, "bbox": {"l": 207.1827596028646, "t": 125.54091389973962, "r": 370.8148600260417, "b": 111.96026611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.1311442057292, "t": 404.79294840494794, "r": 535.7154134114584, "b": 390.36354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 473.9833984375, "t": 70.36960856119788, "r": 538.2523600260416, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 558.125, "t": 177.31715901692712, "r": 564.89013671875, "b": 167.55605061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 45.22420883178711, "t": 776.5735702514648, "r": 105.89710998535156, "b": 758.970817565918, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.63395309448242, "t": 53.15869140625, "r": 98.9942855834961, "b": 17.73187255859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 545.2316284179688, "t": 201.66522216796875, "r": 575.9176025390625, "b": 161.1776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 19, "bbox": {"l": 117.88717651367188, "t": 582.575439453125, "r": 530.2239990234375, "b": 468.1828918457031, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/9"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 314.15671793619794, "t": 263.5493977864583, "r": 503.5809733072917, "b": 292.40826416015625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "CO concentration in the air / mg m-3 resultingin2.5%COHb", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.46400960286458, "t": 278.40321858723956, "r": 265.5321858723958, "b": 304.2913411458333, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Exposure duration at rest / hours", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 334.875, "t": 301.320556640625, "r": 362.78125, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Child", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.8020833333333, "t": 301.320556640625, "r": 484.1311442057292, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Adult", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 199.57196044921875, "t": 328.90625, "r": 208.02840169270834, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 336.14345296223956, "t": 326.78428141276044, "r": 361.0899658203125, "b": 342.0625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "31.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 457.4933675130208, "t": 327.633056640625, "r": 482.4398600260417, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "40.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 198.726318359375, "t": 354.3699544270833, "r": 208.45123291015625, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 342.0629475911458, "t": 353.945556640625, "r": 361.0899658203125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 458.3389892578125, "t": 354.3699544270833, "r": 482.0170491536458, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 4, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": {"l": 123.46400960286458, "t": 278.40321858723956, "r": 265.5321858723958, "b": 304.2913411458333, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Exposure duration at rest / hours", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 314.15671793619794, "t": 263.5493977864583, "r": 503.5809733072917, "b": 292.40826416015625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "CO concentration in the air / mg m-3 resultingin2.5%COHb", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 314.15671793619794, "t": 263.5493977864583, "r": 503.5809733072917, "b": 292.40826416015625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "CO concentration in the air / mg m-3 resultingin2.5%COHb", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.46400960286458, "t": 278.40321858723956, "r": 265.5321858723958, "b": 304.2913411458333, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Exposure duration at rest / hours", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 334.875, "t": 301.320556640625, "r": 362.78125, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Child", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.8020833333333, "t": 301.320556640625, "r": 484.1311442057292, "b": 314.9012044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Adult", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 199.57196044921875, "t": 328.90625, "r": 208.02840169270834, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 336.14345296223956, "t": 326.78428141276044, "r": 361.0899658203125, "b": 342.0625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "31.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 457.4933675130208, "t": 327.633056640625, "r": 482.4398600260417, "b": 341.6381022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "40.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 198.726318359375, "t": 354.3699544270833, "r": 208.45123291015625, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 342.0629475911458, "t": 353.945556640625, "r": 361.0899658203125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 458.3389892578125, "t": 354.3699544270833, "r": 482.0170491536458, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10.6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p2.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p2.json new file mode 100644 index 0000000..43d0e76 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p2.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/16"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 180.54498291015625, "t": 775.7143351236979, "r": 397.45263671875, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Answer all questionsinthespacesprovided.", "text": "Answer all questionsinthespacesprovided.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.04734802246094, "t": 738.7919616699219, "r": 102.32291666666667, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.58474731445312, "t": 737.5187683105469, "r": 533.601318359375, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Give the three structural features found in all virus particles and describe the function ofoneofthesefeatures.", "text": "Give the three structural features found in all virus particles and describe the function ofoneofthesefeatures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.553955078125, "t": 710.7818806966146, "r": 535.7154134114584, "b": 697.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.43039957682292, "t": 683.1961873372396, "r": 120.50426228841145, "b": 675.9814758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 659.0056762695312, "r": 122.19554646809895, "b": 647.1225992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 633.1175537109375, "r": 121.77272542317708, "b": 622.9320882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 608.0782470703125, "r": 265.95501708984375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Functionofonenamedfeature", "text": "Functionofonenamedfeature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.62452697753906, "t": 493.91595458984375, "r": 107.3967793782552, "b": 478.21331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 112.04782104492188, "t": 492.21836344401044, "r": 413.9427083333333, "b": 477.36452229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Explain why viruses are described as acellular and non-living.", "text": "Explain why viruses are described as acellular and non-living.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.553955078125, "t": 478.63771565755206, "r": 536.1382242838541, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.62452697753906, "t": 286.81109619140625, "r": 102.32291666666667, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.73910522460938, "t": 284.2647501627604, "r": 434.2381591796875, "b": 271.1085001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Give one reason why antibiotics are not effective against viruses.", "text": "Give one reason why antibiotics are not effective against viruses.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 490.0506591796875, "t": 271.53289794921875, "r": 535.7154134114584, "b": 256.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.77225240071615, "t": 27.08127848307288, "r": 79.91335042317708, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 558.125, "t": 198.11252848307288, "r": 564.89013671875, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.79362869262695, "t": 53.08154296875, "r": 99.09292602539062, "b": 17.36419677734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 545.0670776367188, "t": 223.08392333984375, "r": 576.2114868164062, "b": 181.8350830078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p20.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p20.json new file mode 100644 index 0000000..76e52c1 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p20.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/pictures/3"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.1", "text": "08.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.1", "text": "08.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 512.8830159505209, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "Scientists investigated a drug called MiTMAB as a treatment for cancer. MiTMAB inhibits cytokinesis.", "text": "Scientists investigated a drug called MiTMAB as a treatment for cancer. MiTMAB inhibits cytokinesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 733.2748209635416, "r": 509.9232991536458, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Figure 8 shows drawings of cancer cells seen with an optical microscope from a:", "text": "Figure 8 shows drawings of cancer cells seen with an optical microscope from a:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 706.113525390625, "r": 267.64630126953125, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7sampletreatedwithMiTMAB", "text": "\u00b7sampletreatedwithMiTMAB", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 122.19554646809895, "t": 693.8060709635416, "r": 200.8404337565104, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "control sample.", "text": "control sample.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 20, "bbox": {"l": 301.89487711588544, "t": 668.7667643229166, "r": 347.9824625651042, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 230.4379679361979, "t": 642.0298665364584, "r": 239.31722005208334, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 415.6339925130208, "t": 642.0298665364584, "r": 424.9360758463542, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.007568359375, "t": 487.97442626953125, "r": 457.9161783854167, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "The cells in drawing A can be identified as those treated with MiTMAB.", "text": "The cells in drawing A can be identified as those treated with MiTMAB.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 463.78387451171875, "r": 176.73958333333334, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Explain why.", "text": "Explain why.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.1311442057292, "t": 449.77886962890625, "r": 535.2926025390625, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 45.190303802490234, "t": 776.6559371948242, "r": 105.86597442626953, "b": 758.5201568603516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.63211441040039, "t": 53.179931640625, "r": 99.04114532470703, "b": 17.34979248046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 150.9450225830078, "t": 617.3224029541016, "r": 313.2983703613281, "b": 503.0533142089844, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 334.0459899902344, "t": 617.4680633544922, "r": 496.58880615234375, "b": 502.9727478027344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p21.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p21.json new file mode 100644 index 0000000..1f49683 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p21.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 774.0167541503906, "r": 473.9833984375, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "MiTMAB acts as a non-competitive inhibitor of an enzyme called dynamin.", "text": "MiTMAB acts as a non-competitive inhibitor of an enzyme called dynamin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.007568359375, "t": 747.2798563639323, "r": 418.59375, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Suggest howMiTMAB can cause dynamin to become inactive.", "text": "Suggest howMiTMAB can cause dynamin to become inactive.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 734.1236063639323, "r": 535.7154134114584, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 187.73295084635416, "t": 440.01776123046875, "r": 390.6875, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question8continueson thenextpage", "text": "Question8continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 21, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 60.88636271158854, "t": 23.68609619140625, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.76779556274414, "t": 53.100830078125, "r": 99.30591583251953, "b": 17.63604736328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p22.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p22.json new file mode 100644 index 0000000..182430e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p22.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 316.2708333333333, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "When active, dynamin has two functions:", "text": "When active, dynamin has two functions:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 745.582285563151, "r": 241.85416666666666, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "\u00b7 it stimulates cytokinesis", "text": "it stimulates cytokinesis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 222.40435791015625, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7it inhibits cell death.", "text": "\u00b7it inhibits cell death.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 702.7183736165365, "r": 486.6680908203125, "b": 689.9865112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "The scientists treated actively growing cultures of cancer cells with MiTMAB.", "text": "The scientists treated actively growing cultures of cancer cells with MiTMAB.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 678.9522399902344, "r": 194.9209187825521, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "They incubated:", "text": "They incubated:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 652.2153523763021, "r": 392.3787841796875, "b": 639.9078776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "\u00b7one sample of 2500 cellswithout MiTMAB as a control", "text": "\u00b7one sample of 2500 cellswithout MiTMAB as a control", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 116.27604166666667, "t": 639.0591023763021, "r": 502.3125, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "\u00b7eight samples, each with 2500 cells and a different concentration of MiTMAB.", "text": "\u00b7eight samples, each with 2500 cells and a different concentration of MiTMAB.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 614.019775390625, "r": 481.17138671875, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "After 72 hours, the scientists measured the number of cells in each sample.", "text": "After 72 hours, the scientists measured the number of cells in each sample.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 588.1316731770834, "r": 298.93511962890625, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Figure 9 shows the scientists' results.", "text": "Figure 9 shows the scientists' results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 563.5167643229167, "r": 513.3058675130209, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "A negative value for proportion of control growth means that fewer than 2500 cells were counted after 72 hours.", "text": "A negative value for proportion of control growth means that fewer than 2500 cells were counted after 72 hours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 22, "bbox": {"l": 301.89487711588544, "t": 522.7748209635417, "r": 347.9824625651042, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 493.06715901692706, "r": 194.9209187825521, "b": 478.63771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.2", "text": "1.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 463.78387451171875, "r": 195.34375, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.0", "text": "1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 434.92502848307294, "r": 194.49810791015625, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.8", "text": "0.8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 175.04829915364584, "t": 406.49053955078125, "r": 195.76656087239584, "b": 395.03188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.6", "text": "0.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 116.27604166666667, "t": 389.93914794921875, "r": 169.97442626953125, "b": 375.93410237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Proportion", "text": "Proportion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 116.69886271158855, "t": 376.78289794921875, "r": 165.3233846028646, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "of control", "text": "of control", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 176.3167521158854, "t": 378.05605061848956, "r": 194.9209187825521, "b": 366.59739176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.4", "text": "0.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.43039957682292, "t": 364.47544352213544, "r": 152.63872273763022, "b": 352.59234619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "growth", "text": "growth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 175.8939412434896, "t": 350.47039794921875, "r": 195.34375, "b": 337.31414794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.2", "text": "0.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 175.8939412434896, "t": 322.0359090169271, "r": 194.9209187825521, "b": 309.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.0", "text": "0.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 169.55160522460938, "t": 293.1770222981771, "r": 195.34375, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-0.2", "text": "-0.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 169.1287841796875, "t": 265.1669718424479, "r": 196.6122029622396, "b": 253.28387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-0.4", "text": "-0.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 189.8470662434896, "t": 255.40586344401038, "r": 205.06864420572916, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 290.4786783854167, "t": 255.40586344401038, "r": 311.6197916666667, "b": 243.09840901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 391.1103108723958, "t": 255.40586344401038, "r": 418.1708984375, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 255.83026123046875, "r": 525.1448567708334, "b": 243.94720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "10000", "text": "10000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 260.8811442057292, "t": 241.40081787109375, "r": 439.7348225911458, "b": 227.82017008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Concentration of MiTMAB / \u03bcg dm-3", "text": "Concentration of MiTMAB / \u03bcg dm-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.62015914916992, "t": 53.1810302734375, "r": 99.0409927368164, "b": 17.2210693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 115.98562622070312, "t": 490.761474609375, "r": 525.6766967773438, "b": 228.09912109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/12"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p23.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p23.json new file mode 100644 index 0000000..3ab38ba --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p23.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.3", "text": "08.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 453.26513671875, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Use all the information given to explain the results shown in Figure 9.", "text": "Use all the information given to explain the results shown in Figure 9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 760.4361114501953, "r": 536.1382242838541, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 490.94517008463544, "r": 104.43702189127605, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.4", "text": "08.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 110.35652669270833, "t": 492.21836344401044, "r": 409.7144775390625, "b": 473.12058512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "0.01 dm? of MiTMAB solution was added to the treated cells.", "text": "0.01 dm? of MiTMAB solution was added to the treated cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 462.93511962890625, "r": 533.601318359375, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 141]}], "orig": "Calculate the increase in mass of MiTMAB (in \u03bcg) added to the cells to reduce the cel growth from equal to the control to O.0 of the control.", "text": "Calculate the increase in mass of MiTMAB (in \u03bcg) added to the cells to reduce the cel growth from equal to the control to O.0 of the control.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 424.73952229817706, "r": 211.41097005208334, "b": 409.88572184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Show your working.", "text": "Show your working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.976806640625, "t": 410.73447672526044, "r": 535.7154134114584, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 553.0511067708334, "t": 238.00567626953125, "r": 569.5411783854166, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 322.6131591796875, "t": 231.63975016276038, "r": 361.5127766927083, "b": 219.75665283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Answer", "text": "Answer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 520.4938151041666, "t": 230.36655680338538, "r": 535.7154134114584, "b": 218.48350016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "\u03bcg", "text": "\u03bcg", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 207.1827596028646, "t": 156.52178955078125, "r": 369.9691975911458, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 63.00047302246094, "t": 25.80808512369788, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.774227142333984, "t": 53.1300048828125, "r": 99.13195037841797, "b": 17.39892578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p24.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p24.json new file mode 100644 index 0000000..a4c5a9e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p24.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/14"}, {"$ref": "#/pictures/3"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 419.0165608723958, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Dengue fever is a human disease caused by the dengue virus.", "text": "Dengue fever is a human disease caused by the dengue virus.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 745.582285563151, "r": 496.8157958984375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 101]}], "orig": "Scientists designed an ELiSA test to detect antibodies to the dengue virus in a patient'sbloodsample.", "text": "Scientists designed an ELiSA test to detect antibodies to the dengue virus in a patient'sbloodsample.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 707.38671875, "r": 508.6548258463542, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Figure 10 shows a diagram of this test and some information about how it works.", "text": "Figure 10 shows a diagram of this test and some information about how it works.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 298.93511962890625, "t": 682.7717997233073, "r": 350.5194091796875, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 325.15008544921875, "t": 625.9028523763021, "r": 331.06960042317706, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "X", "text": "X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 188.15576171875, "t": 609.7758382161459, "r": 267.2234700520833, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Diffusion from X", "text": "Diffusion from X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 187.31011962890625, "t": 598.3171590169271, "r": 255.80729166666666, "b": 585.160909016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "of anti-human", "text": "of anti-human", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 186.8873087565104, "t": 586.0097045898438, "r": 253.27034505208334, "b": 574.1266276041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "antibody with", "text": "antibody with", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 186.8873087565104, "t": 572.8534545898438, "r": 273.1429850260417, "b": 561.8191731770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "enzyme attached", "text": "enzyme attached", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 383.0767008463542, "t": 559.2728068033855, "r": 462.1444091796875, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Diffusion from Y", "text": "Diffusion from Y", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 383.0767008463542, "t": 546.965352376302, "r": 438.4663899739583, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "of patient's", "text": "of patient's", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 382.2310384114583, "t": 535.5066731770833, "r": 449.882568359375, "b": 521.5016276041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "blood sample", "text": "blood sample", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 459.96433512369794, "r": 512.8830159505209, "b": 434.92502848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 120]}], "orig": "Figure 11 shows the negative and positive results that were produced 20 minutes after theuseof thetest shown inFigure10.", "text": "Figure 11 shows the negative and positive results that were produced 20 minutes after theuseof thetest shown inFigure10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 298.93511962890625, "t": 423.04197184244794, "r": 350.0965983072917, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 11", "text": "Figure 11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 221.98152669270834, "t": 393.75868733723956, "r": 271.02886962890625, "b": 377.63169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Negative", "text": "Negative", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 380.9625651041667, "t": 392.90989176432294, "r": 425.35888671875, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Positive", "text": "Positive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 45.659908294677734, "t": 776.9897079467773, "r": 81.86409759521484, "b": 758.8364791870117, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.52434539794922, "t": 53.19195556640625, "r": 99.01769256591797, "b": 17.4388427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 186.83546447753906, "t": 681.4509887695312, "r": 461.82470703125, "b": 475.6357116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 208.346923828125, "t": 394.1239929199219, "r": 439.4477844238281, "b": 196.01318359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/15"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p25.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p25.json new file mode 100644 index 0000000..7d867ba --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p25.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/9"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 104.85984293619792, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.1", "text": "09.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 523.4535725911459, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "Suggest what is on the test at line T and explain what causes the line to appear in a positive test.", "text": "Suggest what is on the test at line T and explain what causes the line to appear in a positive test.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.1311442057292, "t": 747.2798563639323, "r": 534.8697916666666, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 50.31581115722656, "t": 555.0288492838542, "r": 101.9000956217448, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.2", "text": "09.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 552.9068806966145, "r": 322.6131591796875, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "A line at C shows that the test has worked.", "text": "A line at C shows that the test has worked.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.16192626953125, "t": 528.7163492838542, "r": 426.2045491536458, "b": 514.2869262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Suggest one reason why a line at C shows the test has worked.", "text": "Suggest one reason why a line at C shows the test has worked.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.0506591796875, "t": 515.9844970703125, "r": 535.7154134114584, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 187.73295084635416, "t": 374.66090901692706, "r": 390.6875, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question9continuesonthenextpage", "text": "Question9continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.770870208740234, "t": 53.0679931640625, "r": 99.18653869628906, "b": 17.40289306640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p26.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p26.json new file mode 100644 index 0000000..b39fd7f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p26.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 240.16288248697916, "t": 691.684092203776, "r": 410.1372884114583, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Inject rabbit with human antibodies", "text": "Inject rabbit with human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 246.0823771158854, "t": 641.60546875, "r": 404.640625, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Collect blood samplefromrabbit", "text": "Collect blood samplefromrabbit", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 206.75992838541666, "t": 593.2244262695312, "r": 443.9630533854167, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "FuseBcellsfromblood samplewithcancer cells", "text": "FuseBcellsfromblood samplewithcancer cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 194.49810791015625, "t": 541.8725992838542, "r": 456.647705078125, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Select fused cells that produce anti-human antibodies", "text": "Select fused cells that produce anti-human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 192.38399251302084, "t": 491.79396565755206, "r": 457.9161783854167, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Culture these cells and extract the secreted antibodies", "text": "Culture these cells and extract the secreted antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 252.00189208984375, "t": 442.56414794921875, "r": 397.45263671875, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Add enzymetotheantibodies", "text": "Add enzymetotheantibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 529.7958984375, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 12 shows a flowchart of how the anti-human antibodies with enzyme attached are produced.", "text": "Figure 12 shows a flowchart of how the anti-human antibodies with enzyme attached are produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 26, "bbox": {"l": 299.3579508463542, "t": 731.152842203776, "r": 350.9422200520833, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 12", "text": "Figure 12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 240.16288248697916, "t": 691.684092203776, "r": 410.1372884114583, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Inject rabbit with human antibodies", "text": "Inject rabbit with human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 246.0823771158854, "t": 641.60546875, "r": 404.640625, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Collect blood samplefromrabbit", "text": "Collect blood samplefromrabbit", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 206.75992838541666, "t": 593.2244262695312, "r": 443.9630533854167, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "FuseBcellsfromblood samplewithcancer cells", "text": "FuseBcellsfromblood samplewithcancer cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 194.49810791015625, "t": 541.8725992838542, "r": 456.647705078125, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Select fused cells that produce anti-human antibodies", "text": "Select fused cells that produce anti-human antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 192.38399251302084, "t": 491.79396565755206, "r": 457.9161783854167, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Culture these cells and extract the secreted antibodies", "text": "Culture these cells and extract the secreted antibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 252.00189208984375, "t": 442.56414794921875, "r": 397.45263671875, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Add enzymetotheantibodies", "text": "Add enzymetotheantibodies", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.89299011230469, "t": 406.06614176432294, "r": 103.16855875651042, "b": 390.78794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.3", "text": "09.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 404.36855061848956, "r": 517.1112467447916, "b": 391.63669840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "Suggest why the fused cells allow continuous production of monoclonal antibodies.", "text": "Suggest why the fused cells allow continuous production of monoclonal antibodies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.553955078125, "t": 391.63669840494794, "r": 535.7154134114584, "b": 378.48044840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 200.65887451171875, "r": 103.5913798014323, "b": 184.95627848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.4", "text": "09.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 198.11252848307288, "r": 434.6609700520833, "b": 184.53188069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Evaluate the ethics of theproduction process shown in Figure 12.", "text": "Evaluate the ethics of theproduction process shown in Figure 12.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 184.95627848307288, "r": 535.7154134114584, "b": 170.10243733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 80.75899251302083, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 479.9029134114583, "t": 26.65688069661462, "r": 539.0979817708334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 181.8665771484375, "t": 702.0701293945312, "r": 466.7599792480469, "b": 421.53448486328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.65751266479492, "t": 53.2117919921875, "r": 99.11640167236328, "b": 17.35589599609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p27.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p27.json new file mode 100644 index 0000000..a8772ab --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p27.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 188.15576171875, "t": 775.7143351236979, "r": 390.6875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 9 continues on the next page", "text": "Question 9 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 398.7211100260417, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.4676628112793, "t": 53.09393310546875, "r": 99.56715393066406, "b": 16.8975830078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p28.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p28.json new file mode 100644 index 0000000..c843c1b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p28.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.34943135579427, "t": 27.08127848307288, "r": 81.1818135579427, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 762.1336924235026, "r": 520.4938151041666, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 156]}], "orig": "the same symptoms. Early identification is important because people suffering with dengue fever can become ill very quickly and may need hospital treatment.", "text": "the same symptoms. Early identification is important because people suffering with dengue fever can become ill very quickly and may need hospital treatment.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 115.007568359375, "t": 722.2405497233073, "r": 505.2722574869792, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "Scientists compared the effectiveness of three diagnostic tests for dengue fever.", "text": "Scientists compared the effectiveness of three diagnostic tests for dengue fever.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 117.12168375651042, "t": 695.503651936849, "r": 533.601318359375, "b": 670.4643351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Laboratory-basedtest-apatient'sbloodsampleissentfromthedoctor'sclinictoa laboratory for testing.", "text": "Laboratory-basedtest-apatient'sbloodsampleissentfromthedoctor'sclinictoa laboratory for testing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 116.27604166666667, "t": 670.4643351236979, "r": 313.3110758463542, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Current test used in the doctor's clinic.", "text": "Current test used in the doctor's clinic.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 657.3080851236979, "r": 531.4871826171875, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "\u00b7 New test to be used in the doctor's clinic - the ELISA test shown in Figures 10 and 11 (on page 24).", "text": "New test to be used in the doctor's clinic - the ELISA test shown in Figures 10 and 11 (on page 24).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 115.007568359375, "t": 619.1125284830729, "r": 328.9554850260417, "b": 607.2294514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Thescientists'resultsareshowninTable3.", "text": "Thescientists'resultsareshowninTable3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 593.2244262695312, "r": 509.07763671875, "b": 568.1850992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 141]}], "orig": "A blood sample from each patient with confirmed dengue fever at each time after onset of symptoms was tested with all three diagnostic tests.", "text": "A blood sample from each patient with confirmed dengue fever at each time after onset of symptoms was tested with all three diagnostic tests.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 304.0089925130208, "t": 555.4532470703125, "r": 345.8683675130208, "b": 542.2969970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 3", "text": "Table 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.65123748779297, "t": 53.13800048828125, "r": 99.01586151123047, "b": 17.35797119140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 28, "bbox": {"l": 117.90519714355469, "t": 530.8365783691406, "r": 530.6185913085938, "b": 384.3605651855469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 225.36409505208334, "t": 319.99395751953125, "r": 305.7002766927083, "b": 370.4969889322917, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Number of confirmed dengue fever patients tested", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 123.0411885579427, "t": 326.35988362630206, "r": 211.83380126953125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Time after onset of symptoms / days", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 328.53265380859375, "t": 345.8820393880208, "r": 388.1505533854167, "b": 371.7701822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Laboratory- based test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 396.1841634114583, "t": 353.0967610677083, "r": 457.9161783854167, "b": 365.82861328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Current test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 472.2921142578125, "t": 353.0967610677083, "r": 519.2253824869791, "b": 366.2530110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "New test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 159.82670084635416, "t": 384.5020345052083, "r": 181.81343587239584, "b": 399.7802327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 385.7751871744792, "r": 280.33095296223956, "b": 398.5070393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 351.3650309244792, "t": 385.7751871744792, "r": 365.3181559244792, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 386.6239827473958, "r": 434.2381591796875, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 494.2788899739583, "t": 385.7751871744792, "r": 504.0037841796875, "b": 399.3558349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 159.40387980143228, "t": 410.8145345052083, "r": 181.390625, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 264.68654378255206, "t": 410.8145345052083, "r": 280.33095296223956, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "38", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.0965983072917, "t": 410.8145345052083, "r": 365.7410074869792, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "28", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 412.0876871744792, "r": 434.2381591796875, "b": 424.3951822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 410.8145345052083, "r": 503.5809733072917, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "24", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 159.40387980143228, "t": 437.1270345052083, "r": 181.390625, "b": 451.5564371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5-7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 437.9757893880208, "r": 280.33095296223956, "b": 450.7076822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.4389241536458, "t": 438.4001871744792, "r": 365.3181559244792, "b": 450.2832845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 419.4393717447917, "t": 437.1270345052083, "r": 435.0837809244792, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 437.1270345052083, "r": 504.0037841796875, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 5, "num_cols": 5, "orientation": "rot_0", "grid": [[{"bbox": {"l": 123.0411885579427, "t": 326.35988362630206, "r": 211.83380126953125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Time after onset of symptoms / days", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 225.36409505208334, "t": 319.99395751953125, "r": 305.7002766927083, "b": 370.4969889322917, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Number of confirmed dengue fever patients tested", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.8617350260417, "t": 319.99395751953125, "r": 495.9701741536458, "b": 333.57460530598956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 5, "text": "Number of positive results", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 123.0411885579427, "t": 326.35988362630206, "r": 211.83380126953125, "b": 367.5262044270833, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Time after onset of symptoms / days", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 225.36409505208334, "t": 319.99395751953125, "r": 305.7002766927083, "b": 370.4969889322917, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Number of confirmed dengue fever patients tested", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 328.53265380859375, "t": 345.8820393880208, "r": 388.1505533854167, "b": 371.7701822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Laboratory- based test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 396.1841634114583, "t": 353.0967610677083, "r": 457.9161783854167, "b": 365.82861328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Current test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 472.2921142578125, "t": 353.0967610677083, "r": 519.2253824869791, "b": 366.2530110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "New test", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 159.82670084635416, "t": 384.5020345052083, "r": 181.81343587239584, "b": 399.7802327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 385.7751871744792, "r": 280.33095296223956, "b": 398.5070393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 351.3650309244792, "t": 385.7751871744792, "r": 365.3181559244792, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "10", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 386.6239827473958, "r": 434.2381591796875, "b": 398.9314371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 494.2788899739583, "t": 385.7751871744792, "r": 504.0037841796875, "b": 399.3558349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 159.40387980143228, "t": 410.8145345052083, "r": 181.390625, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 264.68654378255206, "t": 410.8145345052083, "r": 280.33095296223956, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "38", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.0965983072917, "t": 410.8145345052083, "r": 365.7410074869792, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "28", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 425.7816975911458, "t": 412.0876871744792, "r": 434.2381591796875, "b": 424.3951822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 410.8145345052083, "r": 503.5809733072917, "b": 425.6683349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "24", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 159.40387980143228, "t": 437.1270345052083, "r": 181.390625, "b": 451.5564371744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5-7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 265.5321858723958, "t": 437.9757893880208, "r": 280.33095296223956, "b": 450.7076822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "18", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 356.4389241536458, "t": 438.4001871744792, "r": 365.3181559244792, "b": 450.2832845052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 419.4393717447917, "t": 437.1270345052083, "r": 435.0837809244792, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 487.9365234375, "t": 437.1270345052083, "r": 504.0037841796875, "b": 451.1320393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p29.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p29.json new file mode 100644 index 0000000..407872f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p29.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.5", "text": "09.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 515.4199625651041, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 118]}], "orig": "The scientists recommend that the new test is used for the identification of dengue feverinallcountriesaroundtheworld.", "text": "The scientists recommend that the new test is used for the identification of dengue feverinallcountriesaroundtheworld.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.58474731445312, "t": 735.3967997233073, "r": 408.8688151041667, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Discuss this recommendation. Use all the information given.", "text": "Discuss this recommendation. Use all the information given.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 484.553955078125, "t": 721.816151936849, "r": 535.2926025390625, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 453.17401123046875, "r": 102.32291666666667, "b": 437.04697672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "09.6", "text": "09.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.58474731445312, "t": 436.62261962890625, "r": 261.30397542317706, "b": 425.16392008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "capillaries into the tissue fluid.", "text": "capillaries into the tissue fluid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 115.43039957682292, "t": 412.00767008463544, "r": 468.0639241536458, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Explain how this would affect the return of tissue fluid into the capillaries.", "text": "Explain how this would affect the return of tissue fluid into the capillaries.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 484.1311442057292, "t": 399.27581787109375, "r": 536.5610758463541, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 207.1827596028646, "t": 162.88771565755212, "r": 370.3920491536458, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 29, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 58.77225240071615, "t": 25.80808512369788, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 553.4739583333334, "t": 249.88873291015625, "r": 568.6955159505209, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.823516845703125, "t": 53.09564208984375, "r": 99.14620971679688, "b": 17.60443115234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 545.1295776367188, "t": 274.22503662109375, "r": 576.8034057617188, "b": 232.59393310546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p3.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p3.json new file mode 100644 index 0000000..5eb8cdd --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p3.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 528.5274658203125, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "02.1 Chitin is a polysaccharide. The chitin monomer is a \u03b2-glucose molecule with one OH", "text": "02.1 Chitin is a polysaccharide. The chitin monomer is a \u03b2-glucose molecule with one OH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 733.2748209635416, "r": 454.1107991536458, "b": 718.8453877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "Figure 1 shows the monomer that forms chitin and the chitin polymer.", "text": "Figure 1 shows the monomer that forms chitin and the chitin polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 302.3177083333333, "t": 707.38671875, "r": 347.5596516927083, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 356.8617350260417, "t": 673.4350992838541, "r": 369.9691975911458, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "OH", "text": "OH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 275.67991129557294, "t": 641.1810709635416, "r": 295.1297200520833, "b": 628.44921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HO", "text": "HO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 328.9554850260417, "t": 627.6004231770834, "r": 360.6671142578125, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 278.21685791015625, "t": 594.4975992838541, "r": 309.50567626953125, "b": 580.4925537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 412.2514241536458, "t": 594.4975992838541, "r": 443.5402425130208, "b": 580.4925537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 317.53928629557294, "t": 577.9461873372395, "r": 335.2978108723958, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HH", "text": "HH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 454.1107991536458, "t": 579.643778483073, "r": 473.9833984375, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "OH", "text": "OH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 174.2026570638021, "t": 545.692159016927, "r": 193.6524658203125, "b": 532.9603068033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HO", "text": "HO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 382.6538899739583, "t": 544.418965657552, "r": 408.8688151041667, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "HH", "text": "HH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 225.78692626953125, "t": 530.4139404296875, "r": 257.07574462890625, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 364.0497233072917, "t": 530.4139404296875, "r": 395.3385416666667, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "N(Ac)", "text": "N(Ac)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 502.4038492838542, "r": 313.73388671875, "b": 490.09637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Chitin has a similar structure to cellulose.", "text": "Chitin has a similar structure to cellulose.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 474.81817626953125, "r": 523.03076171875, "b": 449.77886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 101]}], "orig": "Use Figure 1 to describe three ways the structure of chitin is similar to the structure of cellulose.", "text": "Use Figure 1 to describe three ways the structure of chitin is similar to the structure of cellulose.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 447.23248291015625, "r": 535.7154134114584, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.8532206217448, "t": 341.55808512369794, "r": 120.92708333333333, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 447.23248291015625, "r": 535.7154134114584, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.8532206217448, "t": 341.55808512369794, "r": 120.92708333333333, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 147.18511962890625, "r": 391.1103108723958, "b": 132.75567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}, {"page_no": 3, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [38, 47]}, {"page_no": 3, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [48, 73]}], "orig": "Question 2 continues on the next page Turn over Donotwrite outsidethe box", "text": "Question 2 continues on the next page Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.670082092285156, "t": 53.06951904296875, "r": 98.925537109375, "b": 17.565185546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 174.68348693847656, "t": 678.4638214111328, "r": 473.4761657714844, "b": 517.2424621582031, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 113.6479721069336, "t": 446.2611999511719, "r": 535.0597534179688, "b": 202.7186279296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p30.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p30.json new file mode 100644 index 0000000..ed7df59 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p30.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 797.3584899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 106.97395833333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10.1", "text": "10.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 112.47064208984375, "t": 773.16796875, "r": 429.164306640625, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Describe how a quaternary protein is formed from its monomers.", "text": "Describe how a quaternary protein is formed from its monomers.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 115.007568359375, "t": 743.8847045898438, "r": 390.6875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Do not include the process of translation in your answer.", "text": "Do not include the process of translation in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 484.1311442057292, "t": 732.426035563151, "r": 535.2926025390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 81.1818135579427, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 545.0174967447916, "t": 789.7193756103516, "r": 585.1855875651041, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Do not write outsidethe box", "text": "Do not write outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.74403762817383, "t": 53.09490966796875, "r": 99.15995025634766, "b": 17.37774658203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p31.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p31.json new file mode 100644 index 0000000..f13aa91 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p31.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 281.1765950520833, "t": 812.6367162068685, "r": 296.398193359375, "b": 798.2072804768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 438.4663899739583, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "10.2 Describe the structure of DNA and the structure of a chromosome.", "text": "10.2 Describe the structure of DNA and the structure of a chromosome.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 484.553955078125, "t": 759.5873209635416, "r": 536.1382242838541, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 185.1960245768229, "t": 110.26275634765625, "r": 393.2244059244792, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Question10 continueson the nextpage", "text": "Question10 continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 56.36456298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 31, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 58.34943135579427, "t": 26.23248291015625, "r": 79.4905293782552, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.771995544433594, "t": 53.10174560546875, "r": 99.37220764160156, "b": 17.5792236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p32.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p32.json new file mode 100644 index 0000000..a8cfb21 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p32.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10.3", "text": "10.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 457.9161783854167, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Mutation can result in an increase in genetic variation within a species.", "text": "Mutation can result in an increase in genetic variation within a species.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.58474731445312, "t": 747.7042541503906, "r": 528.1046142578125, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Describe and explain the other processes that result in increases in genetic variation withinaspecies.", "text": "Describe and explain the other processes that result in increases in genetic variation withinaspecies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 484.1311442057292, "t": 720.1185709635416, "r": 535.7154134114584, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 231.28361002604166, "t": 244.37160237630212, "r": 346.7139892578125, "b": 232.91290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 553.4739583333334, "t": 313.9723917643229, "r": 569.9639892578125, "b": 299.96734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.77596664428711, "t": 53.02545166015625, "r": 99.17550659179688, "b": 17.2506103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 544.9116821289062, "t": 337.0838623046875, "r": 576.8983764648438, "b": 296.21673583984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p33.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p33.json new file mode 100644 index 0000000..395a088 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p33.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 33, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 188.15576171875, "t": 445.11049397786456, "r": 398.7211100260417, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 33, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 33, "bbox": {"l": 43.492340087890625, "t": 52.9921875, "r": 99.49662780761719, "b": 16.61517333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"33": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 33}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p34.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p34.json new file mode 100644 index 0000000..354924b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p34.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 34, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 54.96685282389323, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 545.0174967447916, "t": 774.8655446370443, "r": 584.7627766927084, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 34, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 34, "bbox": {"l": 43.72754669189453, "t": 53.10546875, "r": 99.3370132446289, "b": 17.23223876953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"34": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 34}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p35.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p35.json new file mode 100644 index 0000000..b7f0595 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p35.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.65151468912761, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 541.2121175130209, "t": 775.2899424235026, "r": 580.5345458984375, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 35, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 43.70325469970703, "t": 53.17596435546875, "r": 99.36039733886719, "b": 16.9381103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"35": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 35}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p36.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p36.json new file mode 100644 index 0000000..fdad656 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p36.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 184.773193359375, "t": 771.0459899902344, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "Additional page, if required. Write the questionnumbers in the left-hand margin.", "text": "Additional page, if required. Write the questionnumbers in the left-hand margin.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 221]}], "orig": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CopyrightTeam.", "text": "CopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Copyright?2023AQAand itslicensors.Allrightsreserved.", "text": "Copyright?2023AQAand itslicensors.Allrightsreserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 65.11458333333333, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 380.5397542317708, "t": 43.63271077473962, "r": 509.5004475911458, "b": 33.87156168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "236A7402/1", "text": "236A7402/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 545.0174967447916, "t": 775.2899424235026, "r": 584.7627766927084, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 36, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 43.66989517211914, "t": 53.25164794921875, "r": 99.0889892578125, "b": 17.10797119140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 365.30670166015625, "t": 70.7662353515625, "r": 529.5682373046875, "b": 34.24615478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"36": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 36}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p4.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p4.json new file mode 100644 index 0000000..474d98c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p4.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 104.43702189127605, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 759.1629282633463, "r": 342.4857991536458, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Gas exchange does not occur in the tracheae.", "text": "Gas exchange does not occur in the tracheae.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 732.8504231770834, "r": 531.0643717447916, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 105]}], "orig": "Explain the importance of one adaptation of the gas exchange surface in the tracheal system of an insect.", "text": "Explain the importance of one adaptation of the gas exchange surface in the tracheal system of an insect.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.1311442057292, "t": 707.38671875, "r": 535.7154134114584, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 49.89299011230469, "t": 514.2869262695312, "r": 101.9000956217448, "b": 499.85748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "02].3", "text": "02].3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 513.0137329101562, "r": 511.6145833333333, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Lignin is a polymer found in the walls of xylem vessels in plants. Lignin keeps the xylem vessel open as a continuous tube.", "text": "Lignin is a polymer found in the walls of xylem vessels in plants. Lignin keeps the xylem vessel open as a continuous tube.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 472.27178955078125, "r": 477.788818359375, "b": 459.53993733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Explain the importance of the xylem being kept open as a continuous tube.", "text": "Explain the importance of the xylem being kept open as a continuous tube.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.1311442057292, "t": 460.38873291015625, "r": 536.1382242838541, "b": 445.95928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 557.2793375651041, "t": 232.91290283203125, "r": 565.3129475911459, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.827579498291016, "t": 53.08203125, "r": 99.175048828125, "b": 17.63958740234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 545.1842651367188, "t": 258.13323974609375, "r": 576.4935913085938, "b": 218.5069580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p5.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p5.json new file mode 100644 index 0000000..f0fe612 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p5.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 207.6055908203125, "t": 774.441151936849, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turn overfor the nextquestion", "text": "Turn overfor the nextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.31011962890625, "t": 445.95928955078125, "r": 397.0298258463542, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 39.210819244384766, "t": 788.9965972900391, "r": 541.126708984375, "b": 74.01202392578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.505149841308594, "t": 53.05731201171875, "r": 99.4954605102539, "b": 16.613525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p6.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p6.json new file mode 100644 index 0000000..d73c294 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p6.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 286.25046793619794, "t": 809.2415542602539, "r": 292.16998291015625, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 104.43702189127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 774.0167541503906, "r": 514.5743408203125, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "The human disease, malaria, is caused by infection with a single-celled eukaryotic organism.", "text": "The human disease, malaria, is caused by infection with a single-celled eukaryotic organism.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 734.5480041503906, "r": 519.2253824869791, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Figure 2 shows a diagram of Plasmodium vivax, one of the species that can cause malaria.", "text": "Figure 2 shows a diagram of Plasmodium vivax, one of the species that can cause malaria.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 301.47206624348956, "t": 695.9280497233073, "r": 347.5596516927083, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 361.5127766927083, "t": 662.8252156575521, "r": 462.1444091796875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Structures containing enzymes that allowP.vivax toenterhumancells", "text": "Structures containing enzymes that allowP.vivax toenterhumancells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 247.7736612955729, "t": 615.29296875, "r": 251.57906087239584, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 395.45627848307294, "r": 513.7286783854166, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Other than the Golgi apparatus, name one structure in Figure 2 which shows that P. vivax is a eukaryote.", "text": "Other than the Golgi apparatus, name one structure in Figure 2 which shows that P. vivax is a eukaryote.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 370.41697184244794, "r": 535.7154134114584, "b": 355.98752848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.89299011230469, "t": 280.4451700846354, "r": 104.85984293619792, "b": 267.2889200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 111.625, "t": 279.59637451171875, "r": 434.6609700520833, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Describe two functions of the Golgi apparatus in a eukaryotic cell.", "text": "Describe two functions of the Golgi apparatus in a eukaryotic cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.553955078125, "t": 264.31817626953125, "r": 536.1382242838541, "b": 249.88873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 361.5127766927083, "t": 662.8252156575521, "r": 462.1444091796875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Structures containing enzymes that allowP.vivax toenterhumancells", "text": "Structures containing enzymes that allowP.vivax toenterhumancells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 247.7736612955729, "t": 615.29296875, "r": 251.57906087239584, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 83.32060241699219, "t": 775.6388702392578, "r": 104.85667419433594, "b": 759.4894866943359, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.60575485229492, "t": 53.17462158203125, "r": 99.0291748046875, "b": 17.504150390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 185.11962890625, "t": 665.8579711914062, "r": 461.7964782714844, "b": 414.4193115234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p7.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p7.json new file mode 100644 index 0000000..8a72cc6 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p7.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.201700846354164, "t": 389.09035237630206, "r": 102.32291666666667, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 387.304931640625, "t": 638.2103068033854, "r": 514.9971516927084, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Central America Strain C1", "text": "Central America Strain C1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 608.9270426432291, "r": 515.8427734375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Central AmericaStrain C2", "text": "Central AmericaStrain C2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 581.7657470703125, "r": 507.8091634114583, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "South America Strain S1", "text": "South America Strain S1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.03455607096353, "t": 543.1457926432292, "r": 171.2428995768229, "b": 529.9895426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "African", "text": "African", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 330.6467692057292, "t": 540.175028483073, "r": 416.9024658203125, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Europe Strain E1", "text": "Europe Strain E1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.45738728841147, "t": 530.8383178710938, "r": 181.81343587239584, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Common", "text": "Common", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 133.61173502604166, "t": 518.5308634440105, "r": 179.2765096028646, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Ancestor", "text": "Ancestor", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.882080078125, "t": 488.82322184244794, "r": 482.0170491536458, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "EastAsiaStrainA1", "text": "EastAsiaStrainA1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 381.3854166666667, "t": 462.51072184244794, "r": 461.2987467447917, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N1", "text": "- India Strain N1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 382.6538899739583, "t": 448.93007405598956, "r": 461.7215983072917, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N2", "text": "- India Strain N2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 528.5274658203125, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "P. vivax evolved from a common ancestor in Africa. As humans migrated around the world,newstrainsofP.vivaxevolved.", "text": "P. vivax evolved from a common ancestor in Africa. As humans migrated around the world,newstrainsofP.vivaxevolved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 720.1185709635416, "r": 283.7135416666667, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "P. vivax in other parts of the world.", "text": "P. vivax in other parts of the world.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 694.6548563639323, "r": 509.9232991536458, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "Figure 3 shows a phylogenetic diagram of the evolution of these different strains.", "text": "Figure 3 shows a phylogenetic diagram of the evolution of these different strains.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 7, "bbox": {"l": 301.89487711588544, "t": 668.3423665364584, "r": 347.9824625651042, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 387.304931640625, "t": 638.2103068033854, "r": 514.9971516927084, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Central America Strain C1", "text": "Central America Strain C1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 608.9270426432291, "r": 515.8427734375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Central AmericaStrain C2", "text": "Central AmericaStrain C2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.4592692057292, "t": 581.7657470703125, "r": 507.8091634114583, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "South America Strain S1", "text": "South America Strain S1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.03455607096353, "t": 543.1457926432292, "r": 171.2428995768229, "b": 529.9895426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "African", "text": "African", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 330.6467692057292, "t": 540.175028483073, "r": 416.9024658203125, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Europe Strain E1", "text": "Europe Strain E1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 134.45738728841147, "t": 530.8383178710938, "r": 181.81343587239584, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Common", "text": "Common", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 133.61173502604166, "t": 518.5308634440105, "r": 179.2765096028646, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Ancestor", "text": "Ancestor", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 386.882080078125, "t": 488.82322184244794, "r": 482.0170491536458, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "EastAsiaStrainA1", "text": "EastAsiaStrainA1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 381.3854166666667, "t": 462.51072184244794, "r": 461.2987467447917, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N1", "text": "- India Strain N1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 382.6538899739583, "t": 448.93007405598956, "r": 461.7215983072917, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "- India Strain N2", "text": "- India Strain N2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 270.1832275390625, "t": 416.25164794921875, "r": 298.0894775390625, "b": 402.67100016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Time", "text": "Time", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.201700846354164, "t": 389.09035237630206, "r": 102.32291666666667, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.89346313476562, "t": 387.39276123046875, "r": 479.0572916666667, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "What does Figure 3 suggest is the order of human migration out of Africa?", "text": "What does Figure 3 suggest is the order of human migration out of Africa?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 357.68511962890625, "r": 201.68607584635416, "b": 342.83127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 489.6278483072917, "t": 344.95322672526044, "r": 535.7154134114584, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 319.9139200846354, "r": 396.6070149739583, "b": 306.3332722981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Europe, India, East Asia, Central America, South America", "text": "Europe, India, East Asia, Central America, South America", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 282.9915568033854, "r": 396.1841634114583, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "India,East Asia,Europe, South America,Central America", "text": "India,East Asia,Europe, South America,Central America", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 246.06915283203125, "r": 396.6070149739583, "b": 232.91290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "India,Europe,East Asia, Central America,South America", "text": "India,Europe,East Asia, Central America,South America", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 209.57118733723962, "r": 396.6070149739583, "b": 195.99053955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "South America, Central America,East Asia,Europe, India", "text": "South America, Central America,East Asia,Europe, India", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 187.31011962890625, "t": 139.12156168619788, "r": 391.1103108723958, "b": 123.84340413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 3 continues on the next page", "text": "Question 3 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 7, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 47.08686065673828, "t": 390.10565185546875, "r": 105.59192657470703, "b": 372.57489013671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.7526969909668, "t": 53.21405029296875, "r": 99.15525817871094, "b": 17.678466796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 133.25204467773438, "t": 638.6665191650391, "r": 515.5753784179688, "b": 405.51715087890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p8.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p8.json new file mode 100644 index 0000000..404431c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p8.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 557.7021484375, "t": 157.79498291015625, "r": 565.3129475911459, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 502.7353108723958, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 207]}], "orig": "There are an estimated 229 million cases of human malaria worldwide per year. 94% of these cases are found in Africa, but are not caused by P. vivax. P.vivaxdoescause61%ofthecasesofhumanmalariaoutsideAfrica.", "text": "There are an estimated 229 million cases of human malaria worldwide per year. 94% of these cases are found in Africa, but are not caused by P. vivax. P.vivaxdoescause61%ofthecasesofhumanmalariaoutsideAfrica.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 721.816151936849, "r": 478.6344401041667, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Use this information to calculate the number of cases worldwide caused by P.vivaxeachyear.", "text": "Use this information to calculate the number of cases worldwide caused by P.vivaxeachyear.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.4734700520833, "t": 695.9280497233073, "r": 536.1382242838541, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 308.23720296223956, "t": 568.1850992838542, "r": 534.8697916666666, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Answer casesofmalaria", "text": "Answer casesofmalaria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 49.04734802246094, "t": 529.1407470703125, "r": 101.47727457682292, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 528.7163492838542, "r": 504.8494059244792, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "In Africa today, most of the human population are resistant to malaria caused by P. vivax.", "text": "In Africa today, most of the human population are resistant to malaria caused by P. vivax.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 490.09637451171875, "r": 528.1046142578125, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Use your knowledge of natural selection to explain why this resistance is so common in Africa.", "text": "Use your knowledge of natural selection to explain why this resistance is so common in Africa.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 484.1311442057292, "t": 462.51072184244794, "r": 535.7154134114584, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 557.7021484375, "t": 157.79498291015625, "r": 565.3129475911459, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 544.9602661132812, "t": 183.20513916015625, "r": 576.623291015625, "b": 141.35186767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.66440200805664, "t": 53.15325927734375, "r": 99.01779174804688, "b": 17.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p9.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p9.json new file mode 100644 index 0000000..5cc710b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-7402-1-2023jun/p9.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-7402-1-2023jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3111177210799046394, "filename": "aqa-biology-7402-1-2023jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 105.2826639811198, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.1", "text": "04.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 520.9166666666666, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 175]}], "orig": "Some hospital patients suffer from diarrhoea caused by infection with the bacterium Clostridiumdifficile.TheC.difficilebacteria releasetoxins.These toxins cause the diarrhoea.", "text": "Some hospital patients suffer from diarrhoea caused by infection with the bacterium Clostridiumdifficile.TheC.difficilebacteria releasetoxins.These toxins cause the diarrhoea.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 720.54296875, "r": 506.9635416666667, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 218]}], "orig": "The toxins damage the cells lining the ileum, causing them to lose their microvilli. The damage to thecellsreduces the absorption of theproducts of digestion and reduces the absorption of water, resulting in diarrhoea.", "text": "The toxins damage the cells lining the ileum, causing them to lose their microvilli. The damage to thecellsreduces the absorption of theproducts of digestion and reduces the absorption of water, resulting in diarrhoea.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 666.644775390625, "r": 494.2788899739583, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 142]}], "orig": "Explain why the damage to the cells lining the ileum reduces absorption of the products of digestion and why this reduces absorption of water.", "text": "Explain why the damage to the cells lining the ileum reduces absorption of the products of digestion and why this reduces absorption of water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.553955078125, "t": 639.0591023763021, "r": 535.7154134114584, "b": 625.9028523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 187.73295084635416, "t": 344.95322672526044, "r": 390.6875, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question4continuesonthenextpage", "text": "Question4continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 9, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun23/7402/1", "text": "IB/M/Jun23/7402/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.81245040893555, "t": 53.08746337890625, "r": 99.12252807617188, "b": 17.7144775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/merged.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/merged.json new file mode 100644 index 0000000..790ee8c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/merged.json @@ -0,0 +1 @@ +{"texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 726.0600992838541, "r": 233.8205362955729, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 54.96685282389323, "t": 628.8736165364584, "r": 120.50426228841145, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 601.7123209635416, "r": 156.02130126953125, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 588.5560709635416, "r": 309.92848714192706, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 150.52461751302084, "b": 497.31109619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "GCSE BIOLOGY", "text": "GCSE BIOLOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 41.01373036702474, "t": 482.45729573567706, "r": 198.30350748697916, "b": 465.48146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Higher Tier Paper 1H", "text": "Higher Tier Paper 1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 398.42702229817706, "r": 92.17519124348958, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 384.42197672526044, "r": 186.04166666666666, "b": 370.41697184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 369.99257405598956, "r": 84.14157104492188, "b": 358.53387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 356.83632405598956, "r": 156.02130126953125, "b": 345.80202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7a scientific calculator.", "text": "\u00b7a scientific calculator.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 331.37261962890625, "r": 109.0880635579427, "b": 318.6407267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 317.7919718424479, "r": 231.28361002604166, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 291.4794718424479, "r": 241.0085245768229, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.01373036702474, "t": 305.06011962890625, "r": 243.12261962890625, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7Pencil should only be used for drawing.", "text": "\u00b7Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 277.47442626953125, "r": 270.60605875651044, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "\u00b7 Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 238.43007405598962, "r": 402.9493408203125, "b": 212.54197184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "\u00b7 Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 263.4693806966146, "r": 424.9360758463542, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "o pua au pe sabed paus aun asn (shlamsue nos sof aoeds exa paau nos f \u00b7 this book. Write the question number against your answer(s).", "text": "o pua au pe sabed paus aun asn (shlamsue nos sof aoeds exa paau nos f \u00b7 this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 210.84438069661462, "r": 356.0160725911458, "b": 197.26373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "\u00b7In all calculations, show clearly how you work out your answer.", "text": "\u00b7In all calculations, show clearly how you work out your answer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 184.10748291015625, "r": 106.12831624348958, "b": 172.64882405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 170.52683512369788, "r": 251.57906087239584, "b": 158.21938069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "\u00b7 The maximum mark for this paper is 100.", "text": "The maximum mark for this paper is 100.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 156.52178955078125, "r": 282.02223714192706, "b": 144.21433512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "\u00b7 The marks for questions are shown in brackets.", "text": "The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 143.78993733723962, "r": 323.88161214192706, "b": 130.20928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "\u00b7You are expected to use a calculator where appropriate.", "text": "\u00b7You are expected to use a calculator where appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 129.78489176432288, "r": 391.1103108723958, "b": 104.32118733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "You areremindedoftheneedforgoodEnglishandclearpresentation inyour answers.", "text": "You areremindedoftheneedforgoodEnglishandclearpresentation inyour answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 66.80586751302083, "t": 24.95928955078125, "r": 227.47821044921875, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "1UN2284611H0", "text": "1UN2284611H0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 488.359375, "t": 551.6336873372395, "r": 536.1382242838541, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 330.6467692057292, "t": 428.13470458984375, "r": 543.7490234375, "b": 413.28086344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 45 minutes", "text": "Time allowed: 1 hour 45 minutes", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 321.3446858723958, "t": 20.71531168619788, "r": 372.928955078125, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E20", "text": "IB/M/Jun22/E20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 473.1377766927083, "t": 33.87156168619788, "r": 551.3598225911459, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "8461/1H", "text": "8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 194.07527669270834, "t": 774.8655446370443, "r": 383.49951171875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "There are no questions on this page", "text": "There are no questions on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 188.5785929361979, "t": 445.11049397786456, "r": 398.2982991536458, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 538.6751708984375, "t": 788.4461924235026, "r": 578.84326171875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.015625, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 179.6993408203125, "t": 775.7143351236979, "r": 397.45263671875, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.62452697753906, "t": 738.7919616699219, "r": 79.4905293782552, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 737.9431660970052, "r": 317.53928629557294, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "This question is about cells and transport.", "text": "This question is about cells and transport.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 698.0500183105469, "r": 101.9000956217448, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 696.3524373372396, "r": 206.33711751302084, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Complete Table 1.", "text": "Complete Table 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.1311442057292, "t": 683.6205851236979, "r": 536.5610758463541, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 303.58616129557294, "t": 658.1568806966146, "r": 345.022705078125, "b": 645.0006306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 152.21590169270834, "t": 623.7808634440104, "r": 243.12261962890625, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Name of cell part", "text": "Name of cell part", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 354.7476399739583, "t": 624.6296590169271, "r": 462.1444091796875, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Function of cell part", "text": "Function of cell part", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 337.83473714192706, "t": 573.277852376302, "r": 477.788818359375, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Contains genetic information", "text": "Contains genetic information", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 164.47774251302084, "t": 502.8282470703125, "r": 229.16949462890625, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Mitochondria", "text": "Mitochondria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 294.28407796223956, "t": 436.62261962890625, "r": 522.1850992838541, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Controls the movement of substances into and out of the cell", "text": "Controls the movement of substances into and out of the cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 338.16294352213544, "r": 270.1832275390625, "b": 324.15789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Cells in potatoes are plant cells.", "text": "Cells in potatoes are plant cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 312.6991984049479, "r": 334.0293375651042, "b": 299.5429484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Cells in potatoes do not contain chloroplasts.", "text": "Cells in potatoes do not contain chloroplasts.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.201700846354164, "t": 275.7768351236979, "r": 103.16855875651042, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 273.65484619140625, "r": 292.59279378255206, "b": 259.22540283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "What is the function of chloroplasts?", "text": "What is the function of chloroplasts?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.0506591796875, "t": 260.0741984049479, "r": 536.1382242838541, "b": 245.64479573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 46.93323771158854, "t": 158.21938069661462, "r": 102.32291666666667, "b": 140.81915283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 155.67299397786462, "r": 475.2518717447917, "b": 140.81915283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Name one type of cell in a potato plant that does not contain chloroplasts.", "text": "Name one type of cell in a potato plant that does not contain chloroplasts.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 489.6278483072917, "t": 142.09234619140625, "r": 535.7154134114584, "b": 127.66290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 90.74053955078125, "r": 390.6875, "b": 77.58428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Question 1 continueson the nextpage", "text": "Question 1 continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 773.16796875, "r": 471.023681640625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "A student investigated the effect of salt concentration on pieces of potato.", "text": "A student investigated the effect of salt concentration on pieces of potato.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 234.66617838541666, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 722.6649373372396, "r": 339.10321044921875, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "1. Cut three pieces of potato of the same size.", "text": "Cut three pieces of potato of the same size.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 697.2012329101562, "r": 314.15671793619794, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "2. Record the mass of each potato piece.", "text": "Record the mass of each potato piece.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 671.7375183105469, "r": 383.9223225911458, "b": 659.8544514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "3.Add 150cm?of 0.4mol/dm3salt solution to abeaker.", "text": "3.Add 150cm?of 0.4mol/dm3salt solution to abeaker.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 647.5469970703125, "r": 322.6131591796875, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "4. Place each potato piece into the beaker.", "text": "Place each potato piece into the beaker.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "4."}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 621.6588948567709, "r": 531.0643717447916, "b": 607.2294514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "5. After 30 minutes, remove each potato piece and dry the surface with a paper towel.", "text": "After 30 minutes, remove each potato piece and dry the surface with a paper towel.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "5."}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 596.6195882161459, "r": 314.57952880859375, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "6. Record the mass of each potato piece.", "text": "Record the mass of each potato piece.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "6."}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 571.1558634440105, "r": 444.8087158203125, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "7. Repeat steps 1 to 6 using different concentrations of salt solution.", "text": "Repeat steps 1 to 6 using different concentrations of salt solution.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "7."}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 495.18914794921875, "r": 102.32291666666667, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 492.64276123046875, "r": 375.8887125651042, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "What is the independent variable in the investigation?", "text": "What is the independent variable in the investigation?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.0506591796875, "t": 479.48651123046875, "r": 536.1382242838541, "b": 465.05706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.3162841796875, "t": 467.17905680338544, "r": 201.26324462890625, "b": 451.90081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 115.8532206217448, "t": 427.71030680338544, "r": 256.65293375651044, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Concentrationofsaltsolution", "text": "Concentrationofsaltsolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 391.63669840494794, "r": 216.90767415364584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Mass of potato piece", "text": "Mass of potato piece", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 355.13873291015625, "r": 275.25710042317706, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Time potato is left in salt solution", "text": "Time potato is left in salt solution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 318.21636962890625, "r": 226.20975748697916, "b": 304.6357218424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Volume of salt solution", "text": "Volume of salt solution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 230.36655680338538, "r": 102.32291666666667, "b": 214.66392008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.3162841796875, "t": 227.82017008463538, "r": 482.0170491536458, "b": 201.08327229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Why did the student dry the surface of each potato piece with a paper towel in step 5?", "text": "Why did the student dry the surface of each potato piece with a paper towel in step 5?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.0506591796875, "t": 203.62965901692712, "r": 535.7154134114584, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 776.1387329101562, "r": 486.6680908203125, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "The student calculated the percentage change in mass of each potato piece.", "text": "The student calculated the percentage change in mass of each potato piece.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 724.3625183105469, "r": 102.74573771158855, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.6", "text": "01.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 722.2405497233073, "r": 219.8674112955729, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "For one potato piece:", "text": "For one potato piece:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 703.1427612304688, "r": 260.8811442057292, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "\u00b7 the starting mass was 2.5 g", "text": "the starting mass was 2.5 g", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 684.4693806966146, "r": 246.0823771158854, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7 the end mass was 2.7 g.", "text": "the end mass was 2.7 g.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 645.4250284830729, "r": 418.59375, "b": 632.2687784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Calculate the percentage increase in mass of the potato piece.", "text": "Calculate the percentage increase in mass of the potato piece.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.976806640625, "t": 632.2687784830729, "r": 535.7154134114584, "b": 619.1125284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 619.5369262695312, "r": 201.26324462890625, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Use the equation:", "text": "Use the equation:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 154.33001708984375, "t": 595.3463948567709, "r": 427.0501708984375, "b": 567.3363037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "increase in mass percentage increase in mass : \u00d7100 starting mass", "text": "increase in mass percentage increase in mass : \u00d7100 starting mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 208.45123291015625, "t": 426.86151123046875, "r": 518.8025309244791, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Percentage increase in mass : %", "text": "Percentage increase in mass : %", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.73295084635416, "t": 375.50970458984375, "r": 390.6875, "b": 362.35345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question1continueson thenextpage", "text": "Question1continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.62452697753906, "t": 448.50567626953125, "r": 104.01420084635417, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.7", "text": "01.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 77.79924011230469, "t": 24.95928955078125, "r": 84.56439208984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 775.7143351236979, "r": 534.8697916666666, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 122]}], "orig": "The student used the results from each potato piece to calculate the mean percentage change in mass at each concentration.", "text": "The student used the results from each potato piece to calculate the mean percentage change in mass at each concentration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 736.2455851236979, "r": 243.54545084635416, "b": 724.3625183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Table2showstheresults.", "text": "Table2showstheresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 446.80808512369794, "r": 212.25663248697916, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Complete Figure 1.", "text": "Complete Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 420.07118733723956, "r": 174.6254679361979, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "You should:", "text": "You should:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 401.39780680338544, "r": 200.4176025390625, "b": 387.39276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "\u00b7 label the x-axis", "text": "label the x-axis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 116.69886271158855, "t": 381.45123291015625, "r": 289.63303629557294, "b": 368.71938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "useasuitablescalefor thex-axis", "text": "useasuitablescalefor thex-axis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 118.39014689127605, "t": 361.50465901692706, "r": 254.538818359375, "b": 349.19720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "plot the data from Table 2", "text": "plot the data from Table 2", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 117.5445048014323, "t": 341.55808512369794, "r": 229.59232584635416, "b": 330.09942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "drawa line ofbest fit.", "text": "drawa line ofbest fit.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 304.85463460286456, "t": 708.2355041503906, "r": 345.022705078125, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.553955078125, "t": 328.82623291015625, "r": 535.7154134114584, "b": 315.66998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 282.86789957682294, "t": 172.64882405598962, "r": 361.9355875651042, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Concentration=", "text": "Concentration=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 173.07322184244788, "r": 528.1046142578125, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mol/dm3", "text": "mol/dm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 7, "bbox": {"l": 303.16335042317706, "t": 775.2899424235026, "r": 346.7139892578125, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 106.12831624348958, "t": 724.7869160970052, "r": 130.22916666666666, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10.0", "text": "10.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.04782104492188, "t": 695.503651936849, "r": 130.22916666666666, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "9.0", "text": "9.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 667.91796875, "r": 131.0748087565104, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "8.0", "text": "8.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 639.4834798177084, "r": 130.65198771158853, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "7.0", "text": "7.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 611.0490112304688, "r": 130.65198771158853, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "6.0", "text": "6.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 583.0389404296875, "r": 131.0748087565104, "b": 569.8826904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "5.0-", "text": "5.0-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.04734802246094, "t": 573.277852376302, "r": 78.22206115722656, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Mean", "text": "Mean", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.04734802246094, "t": 560.9703776041667, "r": 106.97395833333333, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "percentage", "text": "percentage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 110.77935791015625, "t": 554.1800537109375, "r": 129.80634562174478, "b": 542.7213948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "4.0", "text": "4.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.47016906738281, "t": 549.0873209635417, "r": 107.81960042317708, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "(%) change", "text": "(%) change", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.62452697753906, "t": 536.35546875, "r": 88.79261271158855, "b": 523.6236165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "inmass", "text": "inmass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 525.3211873372395, "r": 130.65198771158853, "b": 513.862528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "3.0", "text": "3.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 497.73549397786456, "r": 130.65198771158853, "b": 485.00364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.0", "text": "2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.04782104492188, "t": 468.87664794921875, "r": 129.80634562174478, "b": 456.99355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.0", "text": "1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.04782104492188, "t": 440.44215901692706, "r": 130.22916666666666, "b": 428.98350016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.0", "text": "0.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 105.2826639811198, "t": 412.43206787109375, "r": 130.65198771158853, "b": 400.12461344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-1.0", "text": "-1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 104.43702189127605, "t": 383.57322184244794, "r": 130.65198771158853, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-2.0", "text": "-2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 50.73863728841146, "t": 269.8353068033854, "r": 80.75899251302083, "b": 257.5278523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 268.98651123046875, "r": 466.3726399739583, "b": 240.97642008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "What concentration of salt solution was equal to the concentration of the solution inside the potato pieces?", "text": "What concentration of salt solution was equal to the concentration of the solution inside the potato pieces?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 226.54697672526038, "r": 184.35038248697916, "b": 213.81512451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 1.", "text": "Use Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 490.8962809244792, "t": 213.81512451171875, "r": 535.7154134114584, "b": 200.65887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 282.86789957682294, "t": 172.64882405598962, "r": 361.9355875651042, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Concentration=", "text": "Concentration=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 173.07322184244788, "r": 528.1046142578125, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mol/dm3", "text": "mol/dm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 187.73295084635416, "t": 110.26275634765625, "r": 391.1103108723958, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 1 continues on the next page", "text": "Question 1 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 47.77887980143229, "t": 775.2899424235026, "r": 103.5913798014323, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.9", "text": "01.9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 535.7154134114584, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Explain why the potato pieces in the 0.4 mol/dm3 salt solution decreased in mass. [3 marks]", "text": "Explain why the potato pieces in the 0.4 mol/dm3 salt solution decreased in mass. [3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 550.93701171875, "t": 610.6246134440104, "r": 566.1586100260416, "b": 597.8927612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 80.33617146809895, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 358.1302083333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Plant cells and fungal cells are similar in structure.", "text": "Plant cells and fungal cells are similar in structure.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 747.7042541503906, "r": 256.65293375651044, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 2 shows a fungal cell", "text": "Figure 2 shows a fungal cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 9, "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 314.15671793619794, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.62452697753906, "t": 491.36956787109375, "r": 102.74573771158855, "b": 475.66697184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 489.24761962890625, "r": 520.0710042317709, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "Name one structure in Figure 2 which is present in both plant cells and fungal cells but not in animal cells.", "text": "Name one structure in Figure 2 which is present in both plant cells and fungal cells but not in animal cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.0506591796875, "t": 463.35947672526044, "r": 535.7154134114584, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.201700846354164, "t": 361.92905680338544, "r": 105.2826639811198, "b": 345.80202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 112.47064208984375, "t": 360.23146565755206, "r": 302.7405192057292, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Which disease is caused by a fungus?", "text": "Which disease is caused by a fungus?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.0506591796875, "t": 346.65081787109375, "r": 535.7154134114584, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 333.07017008463544, "r": 200.4176025390625, "b": 318.6407267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (v) one box.", "text": "Tick (v) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 115.007568359375, "t": 294.8746134440104, "r": 174.2026570638021, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Gonorrhoea", "text": "Gonorrhoea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 258.8010457356771, "r": 152.21590169270834, "b": 244.79600016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Malaria", "text": "Malaria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 220.60544840494788, "r": 157.28976440429688, "b": 208.72239176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Measles", "text": "Measles", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 184.10748291015625, "r": 194.49810791015625, "b": 171.37563069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Rose black spot", "text": "Rose black spot", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 188.15576171875, "t": 121.72141520182288, "r": 391.1103108723958, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 9, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 47.77887980143229, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 328.9554850260417, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "A fungal cell divides once every 90 minutes.", "text": "A fungal cell divides once every 90 minutes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 747.2798563639323, "r": 396.6070149739583, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "How many times would this fungal cell divide in 24 hours?", "text": "How many times would this fungal cell divide in 24 hours?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.976806640625, "t": 734.5480041503906, "r": 535.7154134114584, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 191.11551920572916, "t": 593.6488037109375, "r": 396.1841634114583, "b": 582.6145426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Numberoftimescelldividesin24hours=", "text": "Numberoftimescelldividesin24hours=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 432.9696858723958, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Some types of fungal cell are grown to produce high-protein food.", "text": "Some types of fungal cell are grown to produce high-protein food.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 749.8262329101562, "r": 417.3252766927083, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "The high-protein food can be used to make meat-free burgers.", "text": "The high-protein food can be used to make meat-free burgers.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 697.6256306966146, "r": 101.9000956217448, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 695.9280497233073, "r": 396.6070149739583, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Where is protein digested in the human digestive system?", "text": "Where is protein digested in the human digestive system?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.4734700520833, "t": 682.347401936849, "r": 536.1382242838541, "b": 667.91796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 670.0399373372396, "r": 201.26324462890625, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 632.6931762695312, "r": 188.15576171875, "b": 617.4149373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Large intestine", "text": "Large intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 594.9219970703125, "r": 141.2225341796875, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Liver", "text": "Liver", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 558.848409016927, "r": 190.69270833333334, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Salivary glands", "text": "Salivary glands", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 521.0772298177083, "r": 159.82670084635416, "b": 507.9209798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stomach", "text": "Stomach", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.04734802246094, "t": 433.22743733723956, "r": 103.16855875651042, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 431.10544840494794, "r": 445.2315266927083, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "Which chemical could be used to test if the burgers contain protein?", "text": "Which chemical could be used to test if the burgers contain protein?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.4734700520833, "t": 417.52480061848956, "r": 536.1382242838541, "b": 403.09539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 405.21734619140625, "r": 201.26324462890625, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 367.02178955078125, "r": 208.02840169270834, "b": 353.01674397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Benedict's reagent", "text": "Benedict's reagent", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 115.007568359375, "t": 329.2506306966146, "r": 185.61883544921875, "b": 316.5187784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Biuret reagent", "text": "Biuret reagent", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 293.1770222981771, "r": 153.90719604492188, "b": 280.0207722981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Ethanol", "text": "Ethanol", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 256.2546590169271, "r": 186.8873087565104, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "lodine solution", "text": "lodine solution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 188.15576171875, "t": 142.51674397786462, "r": 390.2646484375, "b": 128.51169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question2continueson thenextpage", "text": "Question2continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 11, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 47.356058756510414, "t": 776.1387329101562, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.6", "text": "02.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.3162841796875, "t": 773.16796875, "r": 450.3053792317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "Table 3 shows some information about burgers made from meat and meat-free burgers.", "text": "Table 3 shows some information about burgers made from meat and meat-free burgers.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 304.0089925130208, "t": 729.8796590169271, "r": 345.8683675130208, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 3", "text": "Table 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 438.32017008463544, "r": 509.9232991536458, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 125]}], "orig": "Evaluate the use of burgers made from meat compared with meat-free burgers in providing humans with a healthy, balanced diet.", "text": "Evaluate the use of burgers made from meat compared with meat-free burgers in providing humans with a healthy, balanced diet.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 394.60748291015625, "r": 384.7679850260417, "b": 380.60243733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Use information fromTable3and your ownknowledge.", "text": "Use information fromTable3and your ownknowledge.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.1311442057292, "t": 381.45123291015625, "r": 535.7154134114584, "b": 367.02178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 546.7087809244791, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 552.6282958984375, "t": 609.3514404296875, "r": 567.8498942057291, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 552.6282958984375, "t": 609.3514404296875, "r": 567.8498942057291, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 216.90767415364584, "t": 516.8332926432292, "r": 361.0899658203125, "b": 503.6770426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turn over for next question", "text": "Turn over for next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 479.0572916666667, "t": 73.76470947265625, "r": 544.171875, "b": 60.18406168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 545.4403076171875, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 296.398193359375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "03 A student prepared some onion cells.", "text": "03 A student prepared some onion cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 743.8847045898438, "r": 406.7547200520833, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "The student viewed the onion cells using a light microscope.", "text": "The student viewed the onion cells using a light microscope.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 706.5379231770834, "r": 235.0890096028646, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 681.07421875, "r": 342.4857991536458, "b": 667.4935709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "1. Cut an onion into pieces using a sharp knife.", "text": "Cut an onion into pieces using a sharp knife.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 655.1861165364584, "r": 434.6609700520833, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "2. Peel off a thin layer of onion epidermis from one piece of onion.", "text": "Peel off a thin layer of onion epidermis from one piece of onion.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 630.1467895507812, "r": 471.4464925130208, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "3. Place the onion epidermis onto a microscope slide in a single flat layer.", "text": "Place the onion epidermis onto a microscope slide in a single flat layer.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "3."}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 605.1074829101562, "r": 293.4384358723958, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "4. Add three drops of iodine solution.", "text": "Add three drops of iodine solution.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "4."}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 579.643778483073, "r": 429.164306640625, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "5. Slowly lower a cover slip at an angle onto the onion epidermis.", "text": "Slowly lower a cover slip at an angle onto the onion epidermis.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "5."}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 554.1800537109375, "r": 353.4791666666667, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "6. Place the slide on the stage of the microscope.", "text": "Place the slide on the stage of the microscope.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "6."}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.04734802246094, "t": 478.63771565755206, "r": 104.01420084635417, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.3162841796875, "t": 477.36452229817706, "r": 374.6202392578125, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Table 4 shows a risk assessment for this experiment.", "text": "Table 4 shows a risk assessment for this experiment.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 450.62762451171875, "r": 206.33711751302084, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Complete Table 4.", "text": "Complete Table 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.976806640625, "t": 437.89577229817706, "r": 536.1382242838541, "b": 424.73952229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 14, "bbox": {"l": 304.0089925130208, "t": 400.54901123046875, "r": 345.445556640625, "b": 387.39276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 4", "text": "Table 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 403.7949625651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Give a reason for each of the following steps in the method.", "text": "Give a reason for each of the following steps in the method.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 760.01171875, "r": 535.7154134114584, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 721.3917541503906, "r": 307.81439208984375, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "A thin layer of onion epidermis is used.", "text": "A thin layer of onion epidermis is used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 593.2244262695312, "r": 351.3650309244792, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "lodine solution is added to the onion epidermis.", "text": "lodine solution is added to the onion epidermis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 463.78387451171875, "r": 421.1306559244792, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "The cover slip is lowered onto the onion epidermis at an angle.", "text": "The cover slip is lowered onto the onion epidermis at an angle.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 187.73295084635416, "t": 322.0359090169271, "r": 390.6875, "b": 308.45526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question3 continueson thenextpage", "text": "Question3 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 15, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 496.8157958984375, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Figure 3 shows what the student saw under the microscope at a magnification of x400.", "text": "Figure 3 shows what the student saw under the microscope at a magnification of x400.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 16, "bbox": {"l": 268.06911214192706, "t": 736.6699829101562, "r": 314.15671793619794, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 360.6671142578125, "t": 704.4159545898438, "r": 395.7613525390625, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "CellZ", "text": "CellZ", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 357.2845458984375, "t": 635.6639404296875, "r": 385.6136067708333, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "\u00d7400", "text": "\u00d7400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 245.23673502604166, "t": 599.1659545898438, "r": 280.7537841796875, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "4.8 cm", "text": "4.8 cm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 539.3262329101562, "r": 101.47727457682292, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 538.0530395507812, "r": 315.42519124348956, "b": 524.472391764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "The length of cell Z in Figure 3 is 4.8cm.", "text": "The length of cell Z in Figure 3 is 4.8cm.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 499.00868733723956, "r": 276.94838460286456, "b": 486.70123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Calculatethereal length of cell Z.", "text": "Calculatethereal length of cell Z.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 474.81817626953125, "r": 304.4318033854167, "b": 460.38873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Give your answer in micrometres (\u03bcm).", "text": "Give your answer in micrometres (\u03bcm).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.553955078125, "t": 461.66192626953125, "r": 536.1382242838541, "b": 447.23248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 253.69317626953125, "t": 111.96026611328125, "r": 362.3583984375, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Real lengthofcellZ=", "text": "Real lengthofcellZ=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 507.3863525390625, "t": 109.41396077473962, "r": 523.8764241536459, "b": 99.65281168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "\u03bcm", "text": "\u03bcm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 360.6671142578125, "t": 704.4159545898438, "r": 395.7613525390625, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "CellZ", "text": "CellZ", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 357.2845458984375, "t": 635.6639404296875, "r": 385.6136067708333, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "\u00d7400", "text": "\u00d7400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 245.23673502604166, "t": 599.1659545898438, "r": 280.7537841796875, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "4.8 cm", "text": "4.8 cm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.29071044921875, "t": 811.3635304768881, "r": 295.97536214192706, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 391.1103108723958, "t": 604.6830851236979, "r": 405.4862467447917, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u81ea", "text": "\u81ea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 359.8214925130208, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Figure 4 shows thestudent's drawingofFigure3.", "text": "Figure 4 shows thestudent's drawingofFigure3.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 268.06911214192706, "t": 737.0943806966146, "r": 314.57952880859375, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 224.9412841796875, "t": 696.3524373372396, "r": 322.19032796223956, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "ONION CELLS", "text": "ONION CELLS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 391.1103108723958, "t": 604.6830851236979, "r": 405.4862467447917, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u81ea", "text": "\u81ea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 48.62452697753906, "t": 468.02785237630206, "r": 101.9000956217448, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 466.75465901692706, "r": 437.1979166666667, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Give two ways the student could improve the drawing in Figure 4.", "text": "Give two ways the student could improve the drawing in Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.553955078125, "t": 453.17401123046875, "r": 536.1382242838541, "b": 440.01776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 374.23651123046875, "r": 121.77272542317708, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 47.356058756510414, "t": 288.08428955078125, "r": 380.5397542317708, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "03.5 Onion cells can be seen using an electron microscope.", "text": "03.5 Onion cells can be seen using an electron microscope.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 262.1961873372396, "r": 484.1311442057292, "b": 235.45928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Give two ways onion cells would look different when seen using an electron microscope.", "text": "Give two ways onion cells would look different when seen using an electron microscope.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.1311442057292, "t": 236.73248291015625, "r": 536.5610758463541, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 156.94618733723962, "r": 121.77272542317708, "b": 148.45831298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 207.1827596028646, "t": 95.83331298828125, "r": 370.3920491536458, "b": 82.25266520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turn over for thenextquestion", "text": "Turn over for thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 17, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 551.3598225911459, "t": 157.37058512369788, "r": 568.272705078125, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 774.0167541503906, "r": 364.8953450520833, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Plants and animals have many defence responses.", "text": "Plants and animals have many defence responses.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 18, "bbox": {"l": 47.77887980143229, "t": 723.0893351236979, "r": 295.1297200520833, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "04.1 Table5 showssomeplant defences.", "text": "04.1 Table5 showssomeplant defences.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 683.6205851236979, "r": 535.7154134114584, "b": 645.0006306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "Identify whether each defence is a chemical response or a physical response. [2 marks] Tick (V) one box in each row.", "text": "Identify whether each defence is a chemical response or a physical response. [2 marks] Tick (V) one box in each row.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 18, "bbox": {"l": 304.4318033854167, "t": 633.1175537109375, "r": 345.445556640625, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 5", "text": "Table 5", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 79.06770833333333, "t": 24.53489176432288, "r": 84.14157104492188, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.62452697753906, "t": 494.34035237630206, "r": 101.9000956217448, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 304.0089925130208, "t": 711.2062683105469, "r": 349.6737467447917, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 247.7736612955729, "t": 557.575215657552, "r": 285.82763671875, "b": 545.692159016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Hornet", "text": "Hornet", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 350.5194091796875, "t": 557.9996134440105, "r": 416.9024658203125, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Hornet Moth", "text": "Hornet Moth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 446.0771484375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Mimicry is a mechanical adaptation seen in both plants and animals.", "text": "Mimicry is a mechanical adaptation seen in both plants and animals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 748.9774373372396, "r": 252.00189208984375, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Figure 5 shows two insects.", "text": "Figure 5 shows two insects.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 304.0089925130208, "t": 711.2062683105469, "r": 349.6737467447917, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 247.7736612955729, "t": 557.575215657552, "r": 285.82763671875, "b": 545.692159016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Hornet", "text": "Hornet", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 350.5194091796875, "t": 557.9996134440105, "r": 416.9024658203125, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Hornet Moth", "text": "Hornet Moth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.62452697753906, "t": 494.34035237630206, "r": 101.9000956217448, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 493.06715901692706, "r": 407.6003824869792, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Hornets are insects that sting other animals and cause pain.", "text": "Hornets are insects that sting other animals and cause pain.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 462.93511962890625, "r": 313.73388671875, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Hornetmothsdonotstingother animals.", "text": "Hornetmothsdonotstingother animals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 423.46636962890625, "r": 374.1974283854167, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Suggest howmimicry helps thehornet moth survive.", "text": "Suggest howmimicry helps thehornet moth survive.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.4734700520833, "t": 411.15887451171875, "r": 536.1382242838541, "b": 396.72947184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 295.29901123046875, "r": 390.6875, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question4continueson thenextpage", "text": "Question4continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.3262125651041, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.8631591796875, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 575.3998209635417, "r": 101.9000956217448, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 774.441151936849, "r": 358.5530192057292, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Adult hornet moths lay eggs that hatch into larvae.", "text": "Adult hornet moths lay eggs that hatch into larvae.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 749.4018351236979, "r": 329.3782958984375, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Figure 6 shows the larvae of a hornet moth.", "text": "Figure 6 shows the larvae of a hornet moth.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 20, "bbox": {"l": 302.3177083333333, "t": 723.9381306966146, "r": 348.4053141276042, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 391.5331217447917, "t": 644.5762329101562, "r": 413.5198567708333, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "J", "text": "J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 575.3998209635417, "r": 101.9000956217448, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.3162841796875, "t": 574.1266276041667, "r": 262.5724283854167, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "The larvae of the hornet moth:", "text": "The larvae of the hornet moth:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 115.007568359375, "t": 553.7556762695312, "r": 260.4583333333333, "b": 541.8725992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "\u00b7live inside the roots of trees", "text": "\u00b7live inside the roots of trees", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 119.2357889811198, "t": 533.809102376302, "r": 308.6600341796875, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "usethetreerootsasasourceoffood", "text": "usethetreerootsasasourceoffood", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 119.2357889811198, "t": 514.7113037109375, "r": 280.33095296223956, "b": 502.4038492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "causedamage to the treeroots.", "text": "causedamage to the treeroots.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.43039957682292, "t": 476.51572672526044, "r": 430.4327392578125, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Explain why a tree might die if the roots of the tree are damaged.", "text": "Explain why a tree might die if the roots of the tree are damaged.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.976806640625, "t": 463.35947672526044, "r": 535.7154134114584, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 65.96022542317708, "t": 24.53489176432288, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 391.5331217447917, "t": 644.5762329101562, "r": 413.5198567708333, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "J", "text": "J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 551.3598225911459, "t": 390.78794352213544, "r": 566.5814208984375, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 469.7552083333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "The larvae of the hornet moth form when fertilised eggs divide by mitosis.", "text": "The larvae of the hornet moth form when fertilised eggs divide by mitosis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 413.5198567708333, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Describe how mitosis produces two genetically identical cells.", "text": "Describe how mitosis produces two genetically identical cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.1311442057292, "t": 734.5480041503906, "r": 536.1382242838541, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.201700846354164, "t": 452.32521565755206, "r": 103.16855875651042, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 451.47642008463544, "r": 493.0104166666667, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "The cells which are first formed from the fertilised eggs of the hornet moth are stem cells.", "text": "The cells which are first formed from the fertilised eggs of the hornet moth are stem cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 411.15887451171875, "r": 467.6410725911458, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Name the process by which these stem cells then form specialised cells.", "text": "Name the process by which these stem cells then form specialised cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 490.0506591796875, "t": 399.27581787109375, "r": 536.1382242838541, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 551.3598225911459, "t": 390.78794352213544, "r": 566.5814208984375, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 207.6055908203125, "t": 246.06915283203125, "r": 370.8148600260417, "b": 234.18609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 64.26893615722656, "t": 26.23248291015625, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "05 Water and carbon dioxide are exchanged between leaves and the atmosphere", "text": "05 Water and carbon dioxide are exchanged between leaves and the atmosphere", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 760.4361114501953, "r": 260.03550211588544, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "throughpores called stomata.", "text": "throughpores called stomata.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.62452697753906, "t": 709.9330851236979, "r": 100.63162231445312, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 708.659901936849, "r": 439.7348225911458, "b": 693.3816731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Name the cells that control the opening and closing of the stomata.", "text": "Name the cells that control the opening and closing of the stomata.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 490.0506591796875, "t": 695.0792541503906, "r": 536.1382242838541, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 577.9461873372395, "r": 388.5733642578125, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Water moves through a plant in the transpiration stream.", "text": "Water moves through a plant in the transpiration stream.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.201700846354164, "t": 527.018778483073, "r": 108.24242146809895, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 105.70548502604167, "t": 524.8967895507812, "r": 490.0506591796875, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Describe two differences between the transpiration stream and translocation.", "text": "Describe two differences between the transpiration stream and translocation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.976806640625, "t": 510.8917643229167, "r": 536.1382242838541, "b": 497.73549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 332.22137451171875, "r": 533.1785074869791, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "05.3 Which environmental conditions would cause the rate of transpiration to be greatest in a plant?", "text": "05.3 Which environmental conditions would cause the rate of transpiration to be greatest in a plant?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 490.0506591796875, "t": 304.2113240559896, "r": 535.7154134114584, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 289.7818806966146, "r": 201.26324462890625, "b": 274.92803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 249.88873291015625, "r": 224.09564208984375, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Coldwithlowhumidity", "text": "Coldwithlowhumidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 212.96636962890625, "r": 227.90104166666666, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Cold with high humidity", "text": "Cold with high humidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 175.61956787109375, "r": 230.86079915364584, "b": 162.03892008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Warmwithlowhumidity", "text": "Warmwithlowhumidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 139.54595947265625, "r": 234.66617838541666, "b": 124.69211832682288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Warm with high humidity", "text": "Warm with high humidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 23, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 64.26893615722656, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 394.4928792317708, "t": 686.1669616699219, "r": 416.9024658203125, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 104.85984293619792, "t": 674.7082926432291, "r": 126.42376708984375, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 404.2177734375, "t": 660.2788492838541, "r": 529.7958984375, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "-- Low atmospheric CO2", "text": "-- Low atmospheric CO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 636.0883382161459, "r": 108.66524251302083, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Meanwidth", "text": "Meanwidth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 420.2850341796875, "t": 636.0883382161459, "r": 509.9232991536458, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Normal conditions", "text": "Normal conditions", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 624.2052612304688, "r": 104.85984293619792, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "ofstomata", "text": "ofstomata", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 111.625, "t": 617.4149373372396, "r": 125.15530395507812, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 612.7466023763021, "r": 104.85984293619792, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "in arbitrary", "text": "in arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 600.0147298177084, "r": 76.95359802246094, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 118.39014689127605, "t": 558.848409016927, "r": 125.15530395507812, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 106.97395833333333, "t": 549.0873209635417, "r": 151.3702596028646, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 223.67281087239584, "t": 550.784891764323, "r": 261.30397542317706, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Midday", "text": "Midday", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 334.45216878255206, "t": 549.9361165364583, "r": 378.0028483072917, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 213.94791666666666, "t": 521.0772298177083, "r": 271.87451171875, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Time of day", "text": "Time of day", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 774.441151936849, "r": 479.9029134114583, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Figure 7 shows information about the mean width of the stomata in a plant.", "text": "Figure 7 shows information about the mean width of the stomata in a plant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 268.06911214192706, "t": 729.0308736165365, "r": 313.73388671875, "b": 714.6014302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 394.4928792317708, "t": 686.1669616699219, "r": 416.9024658203125, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 104.85984293619792, "t": 674.7082926432291, "r": 126.42376708984375, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 404.2177734375, "t": 660.2788492838541, "r": 529.7958984375, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "-- Low atmospheric CO2", "text": "-- Low atmospheric CO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 636.0883382161459, "r": 108.66524251302083, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Meanwidth", "text": "Meanwidth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 420.2850341796875, "t": 636.0883382161459, "r": 509.9232991536458, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Normal conditions", "text": "Normal conditions", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 624.2052612304688, "r": 104.85984293619792, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "ofstomata", "text": "ofstomata", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 111.625, "t": 617.4149373372396, "r": 125.15530395507812, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 612.7466023763021, "r": 104.85984293619792, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "in arbitrary", "text": "in arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 600.0147298177084, "r": 76.95359802246094, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 118.39014689127605, "t": 558.848409016927, "r": 125.15530395507812, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 106.97395833333333, "t": 549.0873209635417, "r": 151.3702596028646, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 223.67281087239584, "t": 550.784891764323, "r": 261.30397542317706, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Midday", "text": "Midday", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 334.45216878255206, "t": 549.9361165364583, "r": 378.0028483072917, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 213.94791666666666, "t": 521.0772298177083, "r": 271.87451171875, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Time of day", "text": "Time of day", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.47016906738281, "t": 441.29095458984375, "r": 101.054443359375, "b": 428.13470458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 440.44215901692706, "r": 470.600830078125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "The changes in the mean width of the stomata in normal conditions are an advantage to the plant.", "text": "The changes in the mean width of the stomata in normal conditions are an advantage to the plant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 400.97340901692706, "r": 178.0080362955729, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Explain how.", "text": "Explain how.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.553955078125, "t": 387.81715901692706, "r": 536.1382242838541, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 509.5004475911458, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 124]}], "orig": "The changes in the mean width of the stomata in low atmospheric carbon dioxide aredifferentfromthechangesinnormalconditions.", "text": "The changes in the mean width of the stomata in low atmospheric carbon dioxide aredifferentfromthechangesinnormalconditions.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.43039957682292, "t": 732.8504231770834, "r": 462.9900309244792, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "Explain how the difference helps the plant to survive in low atmospheric carbondioxide.", "text": "Explain how the difference helps the plant to survive in low atmospheric carbondioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.976806640625, "t": 707.38671875, "r": 535.7154134114584, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 207.6055908203125, "t": 502.4038492838542, "r": 370.3920491536458, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turn overfor the nextquestion", "text": "Turn overfor the nextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 25, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 552.2054850260416, "t": 584.3121134440105, "r": 567.8498942057291, "b": 572.004659016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 78.22206115722656, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 153.90719604492188, "t": 705.2647399902344, "r": 209.296875, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Organism", "text": "Organism", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.33001708984375, "t": 670.0399373372396, "r": 164.90056355794272, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.75283813476562, "t": 644.1518351236979, "r": 164.90056355794272, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.33001708984375, "t": 619.1125284830729, "r": 165.74620564778647, "b": 603.4098917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.75283813476562, "t": 591.9512329101562, "r": 164.90056355794272, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.75283813476562, "t": 566.0631306966145, "r": 164.47774251302084, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "E", "text": "E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 231.28361002604166, "t": 709.5086873372396, "r": 299.3579508463542, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Surface area", "text": "Surface area", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 248.61930338541666, "t": 699.3232116699219, "r": 281.59942626953125, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "in m2", "text": "in m2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.93465169270834, "t": 670.4643351236979, "r": 294.7069091796875, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "6.04 x 10-8", "text": "6.04 x 10-8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.93465169270834, "t": 644.5762329101562, "r": 294.7069091796875, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "3.21 x 10-3", "text": "3.21 x 10-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.93465169270834, "t": 618.6881306966146, "r": 294.7069091796875, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "9.96 x 10-3", "text": "9.96 x 10-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.5118408203125, "t": 592.3756306966146, "r": 293.86126708984375, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "4.61 x 10-1", "text": "4.61 x 10-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 238.4715779622396, "t": 566.487528483073, "r": 291.7471516927083, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "1.99 \u00d7 101", "text": "1.99 \u00d7 101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 394.9156901041667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Table 6 shows information about five different organisms.", "text": "Table 6 shows information about five different organisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 26, "bbox": {"l": 304.4318033854167, "t": 744.309092203776, "r": 345.445556640625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 6", "text": "Table 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 337.83473714192706, "t": 709.9330851236979, "r": 379.6941324869792, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Volume", "text": "Volume", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 342.4857991536458, "t": 699.7475992838541, "r": 375.4659016927083, "b": 684.4693806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "in m3", "text": "in m3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 327.68701171875, "t": 670.8887329101562, "r": 390.2646484375, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "1.65 \u00d7 10-12", "text": "1.65 \u00d7 10-12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 328.9554850260417, "t": 645.4250284830729, "r": 388.5733642578125, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "1.25 \u00d7 10-6", "text": "1.25 \u00d7 10-6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 329.80112711588544, "t": 619.1125284830729, "r": 387.7277425130208, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "1.35 \u00d7 10-4", "text": "1.35 \u00d7 10-4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 329.3782958984375, "t": 593.2244262695312, "r": 388.5733642578125, "b": 579.643778483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "1.57 \u00d7 10-2", "text": "1.57 \u00d7 10-2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 331.49241129557294, "t": 566.487528483073, "r": 386.0364583333333, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "6.12 \u00d7 100", "text": "6.12 \u00d7 100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 410.9829508463542, "t": 710.3574829101562, "r": 493.0104166666667, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Surface area to", "text": "Surface area to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 418.59375, "t": 696.7768351236979, "r": 485.8224283854167, "b": 685.3181660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "volumeratio", "text": "volumeratio", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 431.2784016927083, "t": 670.8887329101562, "r": 473.1377766927083, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "36606:1", "text": "36606:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 437.1979166666667, "t": 645.0006306966146, "r": 473.1377766927083, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "2568:1", "text": "2568:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 453.6879475911458, "t": 619.1125284830729, "r": 473.5605875651042, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "X:1", "text": "X:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 449.0369059244792, "t": 592.8000284830729, "r": 473.1377766927083, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "29:1", "text": "29:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 455.3792317708333, "t": 566.487528483073, "r": 473.5605875651042, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "3:1", "text": "3:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.47016906738281, "t": 494.76475016276044, "r": 101.47727457682292, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 492.64276123046875, "r": 255.80729166666666, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "CalculatevalueXinTable6.", "text": "CalculatevalueXinTable6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 468.02785237630206, "r": 346.7139892578125, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Give your answer to the nearest whole number.", "text": "Give your answer to the nearest whole number.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.553955078125, "t": 454.02280680338544, "r": 535.2926025390625, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 321.3446858723958, "t": 274.0792439778646, "r": 459.1846516927083, "b": 259.22540283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "X (nearest whole number) =", "text": "X (nearest whole number) =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.201700846354164, "t": 222.30303955078125, "r": 103.5913798014323, "b": 206.17604573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.3162841796875, "t": 204.47845458984375, "r": 194.49810791015625, "b": 191.74660237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "to volume ratio?", "text": "to volume ratio?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 177.31715901692712, "r": 178.43086751302084, "b": 164.58530680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Use Table 6.", "text": "Use Table 6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.0506591796875, "t": 164.16090901692712, "r": 535.7154134114584, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 64.26893615722656, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 102.32291666666667, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 484.553955078125, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Organism B exchanges gases with the environment directly through its skin.", "text": "Organism B exchanges gases with the environment directly through its skin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 743.0359090169271, "r": 504.8494059244792, "b": 729.8796590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Organism D exchanges gases with the environment using its respiratory system.", "text": "Organism D exchanges gases with the environment using its respiratory system.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 688.2889302571615, "r": 254.1159871419271, "b": 674.7082926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "require a respiratory system.", "text": "require a respiratory system.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 484.1311442057292, "t": 676.4058736165365, "r": 536.1382242838541, "b": 661.9764404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 187.73295084635416, "t": 483.73044840494794, "r": 390.2646484375, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question6continuesonthenextpage", "text": "Question6continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 27, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 63.84611511230469, "t": 27.08127848307288, "r": 87.10132853190105, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 245.23673502604166, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Table6 isrepeatedbelow.", "text": "Table6 isrepeatedbelow.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 28, "bbox": {"l": 303.58616129557294, "t": 746.0066731770834, "r": 345.8683675130208, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 6", "text": "Table 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.58474731445312, "t": 495.18914794921875, "r": 416.4796142578125, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Table 7 shows information about organism D and organism E.", "text": "Table 7 shows information about organism D and organism E.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/tables/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 28, "bbox": {"l": 304.4318033854167, "t": 456.99355061848956, "r": 345.8683675130208, "b": 443.83730061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 7", "text": "Table 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 49.89299011230469, "t": 772.3191782633463, "r": 101.47727457682292, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 49.89299011230469, "t": 772.3191782633463, "r": 101.47727457682292, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 487.9365234375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Organisms D and E both keep a constant body temperature (warm-blooded).", "text": "Organisms D and E both keep a constant body temperature (warm-blooded).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 115.007568359375, "t": 732.0016377766927, "r": 512.8830159505209, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Explain why the metabolic rate of organism D is greater than the metabolic rate of organismE.", "text": "Explain why the metabolic rate of organism D is greater than the metabolic rate of organismE.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.16192626953125, "t": 694.6548563639323, "r": 323.88161214192706, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Use informationfromTable6 and Table 7.", "text": "Use informationfromTable6 and Table 7.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 484.1311442057292, "t": 681.4986063639323, "r": 535.2926025390625, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 187.73295084635416, "t": 399.70021565755206, "r": 390.6875, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question6continuesonthenextpage", "text": "Question6continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.18406168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 29, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 103.16855875651042, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.5", "text": "06.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 468.9095458984375, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Organism D and organism E both have alveoli in the lungs and villi in the smallintestine.", "text": "Organism D and organism E both have alveoli in the lungs and villi in the smallintestine.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 115.007568359375, "t": 732.8504231770834, "r": 328.10984293619794, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Figure8showssomealveoliandsomevilli.", "text": "Figure8showssomealveoliandsomevilli.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 30, "bbox": {"l": 268.06911214192706, "t": 694.6548563639323, "r": 314.15671793619794, "b": 679.801025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 234.24336751302084, "t": 496.46230061848956, "r": 272.72015380859375, "b": 483.30605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Alveoli", "text": "Alveoli", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 397.8754475911458, "t": 496.03794352213544, "r": 420.2850341796875, "b": 483.30605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Villi", "text": "Villi", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 115.007568359375, "t": 429.83229573567706, "r": 468.0639241536458, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Describe how the alveoli and the villi are adapted to increase absorption.", "text": "Describe how the alveoli and the villi are adapted to increase absorption.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 484.553955078125, "t": 417.10044352213544, "r": 535.7154134114584, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 553.0511067708334, "t": 139.97035725911462, "r": 567.4270833333334, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 66.38304646809895, "t": 24.53489176432288, "r": 72.30255635579427, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 77.79924011230469, "t": 24.95928955078125, "r": 84.56439208984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 207.1827596028646, "t": 775.2899424235026, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turnover for thenext question", "text": "Turnover for thenext question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 31, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 80.33617146809895, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 49.47016906738281, "t": 732.8504231770834, "r": 101.47727457682292, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 368.2779134114583, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Human immunodeficiency virus (Hiv) is a pathogen.", "text": "Human immunodeficiency virus (Hiv) is a pathogen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.16192626953125, "t": 731.152842203776, "r": 437.6207275390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Give one way HiV can spread from one person to another person.", "text": "Give one way HiV can spread from one person to another person.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.16192626953125, "t": 600.863525390625, "r": 468.4867350260417, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "Table 8 shows information about new cases of HIV diagnosed in the UK.", "text": "Table 8 shows information about new cases of HIV diagnosed in the UK.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 304.4318033854167, "t": 572.8534545898438, "r": 345.445556640625, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Table8", "text": "Table8", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.201700846354164, "t": 363.20225016276044, "r": 422.8219401041667, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "07]. 2 Describe the trends shown in Table 8 between 2010 and 2018.", "text": "07]. 2 Describe the trends shown in Table 8 between 2010 and 2018.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 47.77887980143229, "t": 192.17100016276038, "r": 102.32291666666667, "b": 174.77077229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 64.26893615722656, "t": 27.08127848307288, "r": 86.67849731445312, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.58474731445312, "t": 175.19517008463538, "r": 191.9611612955729, "b": 163.73651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "2014 and 2018.", "text": "2014 and 2018.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 484.976806640625, "t": 346.65081787109375, "r": 535.7154134114584, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.4734700520833, "t": 162.88771565755212, "r": 535.7154134114584, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.0506591796875, "t": 718.8453877766927, "r": 536.1382242838541, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 33, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.4", "text": "07.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 534.4469401041666, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Calculate the ratio of new cases of HIV in women to new cases of HIV in men in 2018.", "text": "Calculate the ratio of new cases of HIV in women to new cases of HIV in men in 2018.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 115.43039957682292, "t": 746.85546875, "r": 312.0426025390625, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Giveyouranswerto3significant figures.", "text": "Giveyouranswerto3significant figures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 484.1311442057292, "t": 734.5480041503906, "r": 536.1382242838541, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 241.0085245768229, "t": 553.331278483073, "r": 383.49951171875, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Ratio (3 significant figures)=", "text": "Ratio (3 significant figures)=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 48.62452697753906, "t": 474.81817626953125, "r": 101.9000956217448, "b": 459.53993733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.5", "text": "07.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 113.73910522460938, "t": 474.39377848307294, "r": 504.0037841796875, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "In the UK population the total number of women is greater than the total number of men.", "text": "In the UK population the total number of women is greater than the total number of men.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 113.3162841796875, "t": 436.62261962890625, "r": 514.9971516927084, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "The data in Table 8 is used to compare the proportions of new cases of HlV in the population for men and women.", "text": "The data in Table 8 is used to compare the proportions of new cases of HlV in the population for men and women.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 114.58474731445312, "t": 399.70021565755206, "r": 528.5274658203125, "b": 373.81211344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Suggest how the data could be presented differently so that a more valid comparison can be made.", "text": "Suggest how the data could be presented differently so that a more valid comparison can be made.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 490.0506591796875, "t": 373.38771565755206, "r": 535.7154134114584, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 187.73295084635416, "t": 219.33229573567712, "r": 390.6875, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question7continuesonthenextpage", "text": "Question7continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 479.0572916666667, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 33, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 64.26893615722656, "t": 26.65688069661462, "r": 86.25567626953125, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 33, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 34, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 478.6344401041667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Scientists have been working to produce a vaccine for Hiv for many years.", "text": "Scientists have been working to produce a vaccine for Hiv for many years.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 48.201700846354164, "t": 735.8211873372396, "r": 102.32291666666667, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.6", "text": "07.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 471.023681640625, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Explain how a vaccine for HiV could work to prevent a person developing HIV infection.", "text": "Explain how a vaccine for HiV could work to prevent a person developing HIV infection.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 483.7083333333333, "t": 706.5379231770834, "r": 536.5610758463541, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.58474731445312, "t": 422.61757405598956, "r": 350.0965983072917, "b": 410.31011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "A person with late stage HIV infection has AlDS.", "text": "A person with late stage HIV infection has AlDS.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 115.007568359375, "t": 397.15386962890625, "r": 391.1103108723958, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Scientists have produced monoclonal antibodies for Hiv.", "text": "Scientists have produced monoclonal antibodies for Hiv.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.16192626953125, "t": 384.42197672526044, "r": 525.5677083333334, "b": 372.11452229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "The monoclonal antibodies can prevent a person infected with HIV developing AiDS.", "text": "The monoclonal antibodies can prevent a person infected with HIV developing AiDS.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 48.201700846354164, "t": 347.07521565755206, "r": 105.70548502604167, "b": 331.37261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "220", "text": "220", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 112.47064208984375, "t": 345.80202229817706, "r": 429.5871175130208, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Describe how the monoclonal antibody for HiV can be produced.", "text": "Describe how the monoclonal antibody for HiV can be produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 484.1311442057292, "t": 333.07017008463544, "r": 536.1382242838541, "b": 317.3675740559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 34, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.8", "text": "07.8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 338.6803792317708, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Figure 9 shows how HIV enters a human cell.", "text": "Figure 9 shows how HIV enters a human cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 35, "bbox": {"l": 302.3177083333333, "t": 734.1236063639323, "r": 347.5596516927083, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 147.56486002604166, "t": 690.8353068033854, "r": 163.6321004231771, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "HIV", "text": "HIV", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 230.86079915364584, "t": 690.4109090169271, "r": 290.4786783854167, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "HIV antigen", "text": "HIV antigen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 367.0094401041667, "t": 690.4109090169271, "r": 469.3323567708333, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "HIV genetic material", "text": "HIV genetic material", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 85.4100341796875, "t": 541.8725992838542, "r": 142.06817626953125, "b": 530.4139404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Human cell", "text": "Human cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 202.10888671875, "t": 545.692159016927, "r": 318.80775960286456, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "HIVantigenbindingsite", "text": "HIVantigenbindingsite", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 113.3162841796875, "t": 475.66697184244794, "r": 529.7958984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Suggest how the monoclonal antibody for HiV helps to prevent a person infected with HIV developing AIDS.", "text": "Suggest how the monoclonal antibody for HiV helps to prevent a person infected with HIV developing AIDS.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 114.16192626953125, "t": 432.37864176432294, "r": 265.5321858723958, "b": 419.64678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Use information from Figure 9.", "text": "Use information from Figure 9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 484.553955078125, "t": 419.64678955078125, "r": 535.2926025390625, "b": 406.49053955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 35, "bbox": {"l": 231.28361002604166, "t": 163.31211344401038, "r": 346.7139892578125, "b": 152.27781168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 551.3598225911459, "t": 284.68914794921875, "r": 566.1586100260416, "b": 272.38165283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 35, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.4403076171875, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 64.69175720214844, "t": 26.65688069661462, "r": 85.83285522460938, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 36, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 37, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "37", "text": "37", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 66.38304646809895, "t": 24.95928955078125, "r": 71.87973531087239, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 37, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 38, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "38", "text": "38", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 38, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 65.96022542317708, "t": 25.38368733723962, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 38, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 39, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 39, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 55.8125, "t": 764.6800638834635, "r": 93.86647542317708, "b": 753.2213948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 244.81392415364584, "t": 765.9532470703125, "r": 383.9223225911458, "b": 754.0701802571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Additionalpage,ifrequired.", "text": "Additionalpage,ifrequired.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 55.389678955078125, "t": 753.6457926432291, "r": 88.36979166666667, "b": 743.4603068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 184.773193359375, "t": 754.4945780436198, "r": 442.2717692057292, "b": 741.3383280436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 65.96022542317708, "t": 25.38368733723962, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.4100341796875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 39, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 40, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 40, "bbox": {"l": 54.12121073404948, "t": 162.88771565755212, "r": 133.61173502604166, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 52.852742513020836, "t": 144.63873291015625, "r": 521.7622884114584, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 222]}], "orig": "For confidentiality purposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentiality purposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 53.27556864420573, "t": 107.71636962890625, "r": 460.453125, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 53.6983896891276, "t": 90.74053955078125, "r": 241.43133544921875, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "text": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 66.38304646809895, "t": 24.11049397786462, "r": 72.30255635579427, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 40, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 189.42423502604166, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 366.5866292317708, "t": 40.66192626953125, "r": 509.5004475911458, "b": 30.90085856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "226G8461/1H", "text": "226G8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 40, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 442.17010498046875, "t": 395.0335693359375, "r": 542.979736328125, "b": 211.3961181640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 451.9966634114583, "t": 453.2540283203125, "r": 533.1785074869791, "b": 465.9858805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.4597574869792, "t": 475.3225911458333, "r": 487.9365234375, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.1178792317708, "t": 475.7469889322917, "r": 528.9502766927084, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 493.9959716796875, "r": 471.8693033854167, "b": 502.48388671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 510.9717610677083, "r": 471.8693033854167, "b": 521.1572672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 463.835693359375, "t": 526.6743977864584, "r": 472.2921142578125, "b": 538.133056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 464.6813151041667, "t": 544.9233805338541, "r": 472.2921142578125, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 561.4748128255209, "r": 471.8693033854167, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 464.2585042317708, "t": 578.4506022135416, "r": 472.2921142578125, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 463.835693359375, "t": 595.4264322916666, "r": 472.2921142578125, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.882568359375, "t": 613.2510172526041, "r": 485.3996175130208, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 451.9966634114583, "t": 453.2540283203125, "r": 533.1785074869791, "b": 465.9858805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.9966634114583, "t": 453.2540283203125, "r": 533.1785074869791, "b": 465.9858805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.4597574869792, "t": 475.3225911458333, "r": 487.9365234375, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.1178792317708, "t": 475.7469889322917, "r": 528.9502766927084, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 493.9959716796875, "r": 471.8693033854167, "b": 502.48388671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 510.9717610677083, "r": 471.8693033854167, "b": 521.1572672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 463.835693359375, "t": 526.6743977864584, "r": 472.2921142578125, "b": 538.133056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 464.6813151041667, "t": 544.9233805338541, "r": 472.2921142578125, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 561.4748128255209, "r": 471.8693033854167, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 464.2585042317708, "t": 578.4506022135416, "r": 472.2921142578125, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 463.835693359375, "t": 595.4264322916666, "r": 472.2921142578125, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.882568359375, "t": 613.2510172526041, "r": 485.3996175130208, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 6, "bbox": {"l": 212.70263671875, "t": 682.6695251464844, "r": 435.9120178222656, "b": 498.4666748046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/12"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 216.4848429361979, "t": 161.2701619466146, "r": 307.81439208984375, "b": 197.76814778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Concentration of salt solution in mol/dm3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 166.78730265299478, "r": 430.0099283854167, "b": 193.09979248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mean percentage (%) change in mass", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 206.6804402669271, "r": 236.35748291015625, "b": 219.8366902669271, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 205.8316446940104, "r": 386.4592692057292, "b": 220.68548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 235.539306640625, "r": 235.93465169270834, "b": 248.695556640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 235.539306640625, "r": 386.0364583333333, "b": 249.11995442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 264.8225911458333, "r": 236.35748291015625, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 264.8225911458333, "r": 386.0364583333333, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 293.68145751953125, "r": 236.35748291015625, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 293.68145751953125, "r": 385.6136067708333, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 322.5403238932292, "r": 236.35748291015625, "b": 335.6965738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 322.1159261067708, "r": 386.0364583333333, "b": 336.1209716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "-1.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 6, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 216.4848429361979, "t": 161.2701619466146, "r": 307.81439208984375, "b": 197.76814778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Concentration of salt solution in mol/dm3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 166.78730265299478, "r": 430.0099283854167, "b": 193.09979248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mean percentage (%) change in mass", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 206.6804402669271, "r": 236.35748291015625, "b": 219.8366902669271, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 205.8316446940104, "r": 386.4592692057292, "b": 220.68548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 235.539306640625, "r": 235.93465169270834, "b": 248.695556640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 235.539306640625, "r": 386.0364583333333, "b": 249.11995442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 264.8225911458333, "r": 236.35748291015625, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 264.8225911458333, "r": 386.0364583333333, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 293.68145751953125, "r": 236.35748291015625, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 293.68145751953125, "r": 385.6136067708333, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 322.5403238932292, "r": 236.35748291015625, "b": 335.6965738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 322.1159261067708, "r": 386.0364583333333, "b": 336.1209716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "-1.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 12, "bbox": {"l": 155.34446716308594, "t": 703.4873962402344, "r": 493.14569091796875, "b": 488.68280029296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/4"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 321.76751708984375, "t": 146.84072875976562, "r": 453.6879475911458, "b": 161.6945597330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Mass per 100 g of burger", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 298.0894775390625, "t": 176.1240030924479, "r": 372.928955078125, "b": 201.1633097330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Burgers made from meat", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 415.211181640625, "t": 175.27520751953125, "r": 465.5269775390625, "b": 202.86088053385416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Meat-free burgers", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 215.5927530924479, "r": 218.1761271158854, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Protein in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 216.4415283203125, "r": 342.4857991536458, "b": 230.44657389322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 216.01713053385416, "r": 455.8020833333333, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "9.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 244.45161946614584, "r": 208.45123291015625, "b": 259.72983805338544, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fibre in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 323.0359700520833, "t": 245.72479248046875, "r": 341.64013671875, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 245.3003946940104, "r": 455.3792317708333, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 160.24952189127603, "t": 272.46169026692706, "r": 199.99479166666666, "b": 289.0131022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fat in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 272.88608805338544, "r": 341.2173258463542, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 274.15928141276044, "r": 455.3792317708333, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 303.0181477864583, "r": 249.4649658203125, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Carbohydrate in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.53928629557294, "t": 302.59375, "r": 342.0629475911458, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 430.8555908203125, "t": 302.59375, "r": 454.9564208984375, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "15.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 331.87701416015625, "r": 247.3508504231771, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Cholesterol in mg", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 311.6197916666667, "t": 332.30141194661456, "r": 340.79449462890625, "b": 344.60888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "120.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 331.87701416015625, "r": 454.9564208984375, "b": 345.4576822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 7, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 321.76751708984375, "t": 146.84072875976562, "r": 453.6879475911458, "b": 161.6945597330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Mass per 100 g of burger", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 321.76751708984375, "t": 146.84072875976562, "r": 453.6879475911458, "b": 161.6945597330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Mass per 100 g of burger", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 298.0894775390625, "t": 176.1240030924479, "r": 372.928955078125, "b": 201.1633097330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Burgers made from meat", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 415.211181640625, "t": 175.27520751953125, "r": 465.5269775390625, "b": 202.86088053385416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Meat-free burgers", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 215.5927530924479, "r": 218.1761271158854, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Protein in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 216.4415283203125, "r": 342.4857991536458, "b": 230.44657389322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 216.01713053385416, "r": 455.8020833333333, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "9.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 244.45161946614584, "r": 208.45123291015625, "b": 259.72983805338544, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fibre in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 323.0359700520833, "t": 245.72479248046875, "r": 341.64013671875, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 245.3003946940104, "r": 455.3792317708333, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 160.24952189127603, "t": 272.46169026692706, "r": 199.99479166666666, "b": 289.0131022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fat in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 272.88608805338544, "r": 341.2173258463542, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 274.15928141276044, "r": 455.3792317708333, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 303.0181477864583, "r": 249.4649658203125, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Carbohydrate in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.53928629557294, "t": 302.59375, "r": 342.0629475911458, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 430.8555908203125, "t": 302.59375, "r": 454.9564208984375, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "15.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 331.87701416015625, "r": 247.3508504231771, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Cholesterol in mg", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 311.6197916666667, "t": 332.30141194661456, "r": 340.79449462890625, "b": 344.60888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "120.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 331.87701416015625, "r": 454.9564208984375, "b": 345.4576822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 14, "bbox": {"l": 91.9642105102539, "t": 374.9870300292969, "r": 522.89111328125, "b": 173.91448974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 96.40340169270833, "t": 475.3225911458333, "r": 135.30302937825522, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Hazard", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 247.3508504231771, "t": 475.3225911458333, "r": 273.98862711588544, "b": 489.32763671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 376.734375, "t": 474.898193359375, "r": 488.359375, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Plan to minimise risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 95.98058064778645, "t": 526.25, "r": 170.39724731445312, "b": 551.289306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "lodine solution is an irritant", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 186.04166666666666, "t": 527.523193359375, "r": 333.6065266927083, "b": 552.1381022135416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "May cause allergicreaction or skin rash", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 96.40340169270833, "t": 617.4949544270834, "r": 154.33001708984375, "b": 633.1975911458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Sharp knife", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 3, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": {"l": 96.40340169270833, "t": 475.3225911458333, "r": 135.30302937825522, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Hazard", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 247.3508504231771, "t": 475.3225911458333, "r": 273.98862711588544, "b": 489.32763671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 376.734375, "t": 474.898193359375, "r": 488.359375, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Plan to minimise risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 95.98058064778645, "t": 526.25, "r": 170.39724731445312, "b": 551.289306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "lodine solution is an irritant", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 186.04166666666666, "t": 527.523193359375, "r": 333.6065266927083, "b": 552.1381022135416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "May cause allergicreaction or skin rash", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 96.40340169270833, "t": 617.4949544270834, "r": 154.33001708984375, "b": 633.1975911458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Sharp knife", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 18, "bbox": {"l": 151.78521728515625, "t": 606.2125244140625, "r": 496.1224060058594, "b": 461.1795654296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 379.2712809244792, "t": 244.0272216796875, "r": 471.4464925130208, "b": 258.0322672526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Type of response", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 158.13541666666666, "t": 272.88608805338544, "r": 231.28361002604166, "b": 285.61794026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Plant defence", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 365.7410074869792, "t": 272.46169026692706, "r": 415.6339925130208, "b": 285.19354248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Chemical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 272.46169026692706, "r": 484.1311442057292, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Physical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 157.71259562174478, "t": 300.89617919921875, "r": 318.80775960286456, "b": 315.75, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Thick, waxy layer on leaf surface", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 157.71259562174478, "t": 330.6038411458333, "r": 286.67327880859375, "b": 344.1844889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Berries that are poisonous", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 158.13541666666666, "t": 359.4626871744792, "r": 284.1363525390625, "b": 372.1945393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bark on trees that falls off", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 5, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 244.0272216796875, "r": 471.4464925130208, "b": 258.0322672526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Type of response", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 244.0272216796875, "r": 471.4464925130208, "b": 258.0322672526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Type of response", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 158.13541666666666, "t": 272.88608805338544, "r": 231.28361002604166, "b": 285.61794026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Plant defence", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 365.7410074869792, "t": 272.46169026692706, "r": 415.6339925130208, "b": 285.19354248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Chemical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 272.46169026692706, "r": 484.1311442057292, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Physical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 157.71259562174478, "t": 300.89617919921875, "r": 318.80775960286456, "b": 315.75, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Thick, waxy layer on leaf surface", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 157.71259562174478, "t": 330.6038411458333, "r": 286.67327880859375, "b": 344.1844889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Berries that are poisonous", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 158.13541666666666, "t": 359.4626871744792, "r": 284.1363525390625, "b": 372.1945393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bark on trees that falls off", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 28, "bbox": {"l": 149.23580932617188, "t": 719.3758697509766, "r": 499.3244934082031, "b": 547.9515991210938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/4"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 230.86079915364584, "t": 130.71371459960938, "r": 299.3579508463542, "b": 155.75302124023438, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Surface area in m2", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 337.41192626953125, "t": 129.86491902669272, "r": 379.2712809244792, "b": 156.60181681315103, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Volume in m3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 410.9829508463542, "t": 130.28931681315103, "r": 492.5875651041667, "b": 156.17741902669272, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Surface area to volume ratio", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 155.1756591796875, "t": 136.65524291992188, "r": 209.296875, "b": 151.08467610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 153.90719604492188, "t": 170.18246459960938, "r": 165.74620564778647, "b": 184.61189778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "A", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.93465169270834, "t": 169.33366902669272, "r": 294.7069091796875, "b": 182.48992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.04 x 10-8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 327.2642008463542, "t": 169.33366902669272, "r": 390.6875, "b": 182.0655314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.65 \u00d7 10-12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 169.75806681315103, "r": 473.1377766927083, "b": 182.914306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "36606:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 154.75283813476562, "t": 196.91935221354166, "r": 164.90056355794272, "b": 210.07560221354166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "B", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.5118408203125, "t": 195.2217814127604, "r": 295.1297200520833, "b": 208.3780314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "3.21 \u00d7 10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 196.49495442708334, "r": 388.1505533854167, "b": 207.1048380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.25 5\u00d710-6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 196.070556640625, "r": 473.1377766927083, "b": 209.65120442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "2568:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 153.90719604492188, "t": 222.383056640625, "r": 165.74620564778647, "b": 237.23689778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "C", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 236.7802937825521, "t": 222.383056640625, "r": 293.86126708984375, "b": 234.6905314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.96 K10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 222.80745442708334, "r": 387.7277425130208, "b": 233.4173380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.35 \u00d7 10-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 454.1107991536458, "t": 222.383056640625, "r": 473.1377766927083, "b": 235.96370442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "X:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 154.75283813476562, "t": 248.695556640625, "r": 164.90056355794272, "b": 262.7006022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 237.203125, "t": 248.27117919921875, "r": 293.86126708984375, "b": 260.15423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4.61 x 10-1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 247.8467814127604, "r": 388.1505533854167, "b": 261.00303141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.57 \u00d710-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.0369059244792, "t": 247.8467814127604, "r": 473.5605875651042, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "29:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 154.75283813476562, "t": 274.58367919921875, "r": 164.90056355794272, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 238.8944091796875, "t": 274.58367919921875, "r": 291.7471516927083, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.99 \u00d7 101", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.9152425130208, "t": 274.58367919921875, "r": 385.6136067708333, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "6.12 \u00d7 100", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.3792317708333, "t": 274.15928141276044, "r": 473.1377766927083, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "3:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 6, "num_cols": 4, "orientation": "rot_0", "grid": [[{"bbox": {"l": 155.1756591796875, "t": 136.65524291992188, "r": 209.296875, "b": 151.08467610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 230.86079915364584, "t": 130.71371459960938, "r": 299.3579508463542, "b": 155.75302124023438, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Surface area in m2", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 337.41192626953125, "t": 129.86491902669272, "r": 379.2712809244792, "b": 156.60181681315103, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Volume in m3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 410.9829508463542, "t": 130.28931681315103, "r": 492.5875651041667, "b": 156.17741902669272, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Surface area to volume ratio", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 153.90719604492188, "t": 170.18246459960938, "r": 165.74620564778647, "b": 184.61189778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "A", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.93465169270834, "t": 169.33366902669272, "r": 294.7069091796875, "b": 182.48992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.04 x 10-8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 327.2642008463542, "t": 169.33366902669272, "r": 390.6875, "b": 182.0655314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.65 \u00d7 10-12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 169.75806681315103, "r": 473.1377766927083, "b": 182.914306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "36606:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 154.75283813476562, "t": 196.91935221354166, "r": 164.90056355794272, "b": 210.07560221354166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "B", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.5118408203125, "t": 195.2217814127604, "r": 295.1297200520833, "b": 208.3780314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "3.21 \u00d7 10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 196.49495442708334, "r": 388.1505533854167, "b": 207.1048380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.25 5\u00d710-6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 196.070556640625, "r": 473.1377766927083, "b": 209.65120442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "2568:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 153.90719604492188, "t": 222.383056640625, "r": 165.74620564778647, "b": 237.23689778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "C", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 236.7802937825521, "t": 222.383056640625, "r": 293.86126708984375, "b": 234.6905314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.96 K10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 222.80745442708334, "r": 387.7277425130208, "b": 233.4173380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.35 \u00d7 10-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 454.1107991536458, "t": 222.383056640625, "r": 473.1377766927083, "b": 235.96370442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "X:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 154.75283813476562, "t": 248.695556640625, "r": 164.90056355794272, "b": 262.7006022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 237.203125, "t": 248.27117919921875, "r": 293.86126708984375, "b": 260.15423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4.61 x 10-1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 247.8467814127604, "r": 388.1505533854167, "b": 261.00303141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.57 \u00d710-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.0369059244792, "t": 247.8467814127604, "r": 473.5605875651042, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "29:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 154.75283813476562, "t": 274.58367919921875, "r": 164.90056355794272, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 238.8944091796875, "t": 274.58367919921875, "r": 291.7471516927083, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.99 \u00d7 101", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.9152425130208, "t": 274.58367919921875, "r": 385.6136067708333, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "6.12 \u00d7 100", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.3792317708333, "t": 274.15928141276044, "r": 473.1377766927083, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "3:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 28, "bbox": {"l": 220.48773193359375, "t": 431.4338684082031, "r": 427.6959228515625, "b": 337.92022705078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 328.10984293619794, "t": 419.3024088541667, "r": 414.788330078125, "b": 445.1905110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Metabolic rate in arbitrary units", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 226.20975748697916, "t": 424.3951822916667, "r": 279.4853108723958, "b": 439.6733805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 226.20975748697916, "t": 459.195556640625, "r": 236.7802937825521, "b": 471.5030110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 457.4980061848958, "r": 382.2310384114583, "b": 471.9274088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "890", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 226.20975748697916, "t": 484.6592610677083, "r": 236.35748291015625, "b": 498.2399088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 483.8105061848958, "r": 382.6538899739583, "b": 498.664306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "75", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 3, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 226.20975748697916, "t": 424.3951822916667, "r": 279.4853108723958, "b": 439.6733805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 328.10984293619794, "t": 419.3024088541667, "r": 414.788330078125, "b": 445.1905110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Metabolic rate in arbitrary units", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 226.20975748697916, "t": 459.195556640625, "r": 236.7802937825521, "b": 471.5030110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 457.4980061848958, "r": 382.2310384114583, "b": 471.9274088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "890", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 226.20975748697916, "t": 484.6592610677083, "r": 236.35748291015625, "b": 498.2399088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 483.8105061848958, "r": 382.6538899739583, "b": 498.664306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "75", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 32, "bbox": {"l": 159.49160766601562, "t": 547.3089294433594, "r": 489.53790283203125, "b": 400.7843017578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 250.7334187825521, "t": 297.0766194661458, "r": 353.4791666666667, "b": 321.2671305338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "NumberofnewHiv casesinwomen", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 375.0430908203125, "t": 297.0766194661458, "r": 478.2116292317708, "b": 322.5403238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "NumberofnewHiv cases in men", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 303.0181477864583, "r": 191.5383504231771, "b": 317.87196858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Year", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 329.7550455729167, "r": 191.9611612955729, "b": 343.335693359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2010", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 329.3306477864583, "r": 313.73388671875, "b": 343.7600911458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "376", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 330.179443359375, "r": 440.5804850260417, "b": 342.4868977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2266", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 353.0967610677083, "r": 191.9611612955729, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2012", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 352.67236328125, "r": 312.46543375651044, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "361", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.0970458984375, "t": 352.67236328125, "r": 440.5804850260417, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2310", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 376.8629150390625, "r": 191.9611612955729, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2014", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 376.0141194661458, "r": 313.3110758463542, "b": 390.4435628255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "397", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 376.8629150390625, "r": 440.1576741536458, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2370", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 399.3558349609375, "r": 192.38399251302084, "b": 412.9364827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2016", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 399.3558349609375, "r": 313.3110758463542, "b": 413.7852783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "298", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.9427083333333, "t": 400.2046305338542, "r": 440.1576741536458, "b": 412.5120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1886", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.05492146809897, "t": 422.273193359375, "r": 192.38399251302084, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2018", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 421.4243977864583, "r": 312.88824462890625, "b": 437.5514322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "242", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 422.6975911458333, "r": 440.5804850260417, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1288", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 6, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": {"l": 164.47774251302084, "t": 303.0181477864583, "r": 191.5383504231771, "b": 317.87196858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Year", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 250.7334187825521, "t": 297.0766194661458, "r": 353.4791666666667, "b": 321.2671305338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "NumberofnewHiv casesinwomen", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 375.0430908203125, "t": 297.0766194661458, "r": 478.2116292317708, "b": 322.5403238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "NumberofnewHiv cases in men", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 329.7550455729167, "r": 191.9611612955729, "b": 343.335693359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2010", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 329.3306477864583, "r": 313.73388671875, "b": 343.7600911458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "376", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 330.179443359375, "r": 440.5804850260417, "b": 342.4868977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2266", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 353.0967610677083, "r": 191.9611612955729, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2012", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 352.67236328125, "r": 312.46543375651044, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "361", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.0970458984375, "t": 352.67236328125, "r": 440.5804850260417, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2310", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 376.8629150390625, "r": 191.9611612955729, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2014", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 376.0141194661458, "r": 313.3110758463542, "b": 390.4435628255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "397", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 376.8629150390625, "r": 440.1576741536458, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2370", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 399.3558349609375, "r": 192.38399251302084, "b": 412.9364827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2016", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 399.3558349609375, "r": 313.3110758463542, "b": 413.7852783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "298", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.9427083333333, "t": 400.2046305338542, "r": 440.1576741536458, "b": 412.5120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1886", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.05492146809897, "t": 422.273193359375, "r": 192.38399251302084, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2018", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 421.4243977864583, "r": 312.88824462890625, "b": 437.5514322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "242", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 422.6975911458333, "r": 440.5804850260417, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1288", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.00133514404297, "t": 797.4589767456055, "r": 168.1601104736328, "b": 750.2433547973633, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 46.8770866394043, "t": 53.330078125, "r": 252.03916931152344, "b": 17.5728759765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 489.92138671875, "t": 549.9878234863281, "r": 533.2274169921875, "b": 496.6566467285156, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 48.88732147216797, "t": 53.059814453125, "r": 104.56513977050781, "b": 16.9586181640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 49.12738800048828, "t": 53.19232177734375, "r": 104.33588409423828, "b": 17.3953857421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 49.179264068603516, "t": 53.1982421875, "r": 104.26579284667969, "b": 17.73736572265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 49.12112808227539, "t": 53.14373779296875, "r": 104.327880859375, "b": 17.5670166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 45.735694885253906, "t": 448.7847595214844, "r": 105.40312194824219, "b": 432.12158203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 49.06983947753906, "t": 53.17987060546875, "r": 104.2056884765625, "b": 17.67327880859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 49.095619201660156, "t": 53.34234619140625, "r": 104.30477142333984, "b": 17.5211181640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 39.5867805480957, "t": 788.3417549133301, "r": 539.7913208007812, "b": 77.27215576171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 49.21787643432617, "t": 53.2222900390625, "r": 104.35285186767578, "b": 17.7176513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 49.18645477294922, "t": 53.17108154296875, "r": 104.25172424316406, "b": 17.64910888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 233.9642791748047, "t": 683.4948272705078, "r": 347.205322265625, "b": 554.4544982910156, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 49.193878173828125, "t": 53.23822021484375, "r": 104.41835021972656, "b": 17.68609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 49.28749084472656, "t": 53.192626953125, "r": 104.4219741821289, "b": 18.02410888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 44.95881652832031, "t": 776.5109939575195, "r": 105.72966003417969, "b": 758.9666137695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 49.06380844116211, "t": 53.18597412109375, "r": 104.28301239013672, "b": 17.581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 49.16658401489258, "t": 53.1641845703125, "r": 104.45934295654297, "b": 17.537353515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 543.3030395507812, "t": 634.2982940673828, "r": 575.8578491210938, "b": 592.6698303222656, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 49.108829498291016, "t": 53.17132568359375, "r": 104.2585220336914, "b": 17.90985107421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 49.16040802001953, "t": 53.16973876953125, "r": 104.38372039794922, "b": 17.7064208984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 82.07044219970703, "t": 540.7142944335938, "r": 104.0030288696289, "b": 524.5466003417969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 49.1007080078125, "t": 53.2117919921875, "r": 104.33074951171875, "b": 17.74853515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 185.54078674316406, "t": 710.5711212158203, "r": 393.96270751953125, "b": 588.0393524169922, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 49.06275177001953, "t": 53.25390625, "r": 104.31889343261719, "b": 17.77984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 156.39285278320312, "t": 667.3309478759766, "r": 423.3988342285156, "b": 519.7236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 49.121463775634766, "t": 53.21649169921875, "r": 104.3064956665039, "b": 17.7779541015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 45.82774353027344, "t": 496.00555419921875, "r": 105.47586059570312, "b": 478.4892272949219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 49.15392303466797, "t": 53.19732666015625, "r": 104.37195587158203, "b": 17.78106689453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 219.59185791015625, "t": 708.927734375, "r": 427.3768615722656, "b": 546.8448181152344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 45.496910095214844, "t": 576.65966796875, "r": 105.91410064697266, "b": 559.7376403808594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 49.04840087890625, "t": 53.253662109375, "r": 104.3270492553711, "b": 17.5347900390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 227.0424346923828, "t": 684.4001617431641, "r": 420.9546203613281, "b": 616.7417907714844, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 542.1177978515625, "t": 415.42755126953125, "r": 574.8453369140625, "b": 373.7242736816406, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 49.26432418823242, "t": 53.17437744140625, "r": 104.31494903564453, "b": 17.68426513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 48.83792495727539, "t": 53.11871337890625, "r": 104.64608764648438, "b": 16.5157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 49.234535217285156, "t": 53.13446044921875, "r": 104.30413055419922, "b": 17.3516845703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 50.27867889404297, "t": 697.9160461425781, "r": 534.2479858398438, "b": 506.797607421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 46.177696228027344, "t": 443.3124694824219, "r": 80.92774963378906, "b": 427.13104248046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 82.27433013916016, "t": 443.8872985839844, "r": 104.73280334472656, "b": 427.0744323730469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 49.17908477783203, "t": 53.28521728515625, "r": 104.2843246459961, "b": 17.65447998046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 49.31337356567383, "t": 53.187255859375, "r": 104.32842254638672, "b": 17.487060546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 47.00654983520508, "t": 775.9247817993164, "r": 80.57906341552734, "b": 759.4455184936523, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 82.81494140625, "t": 496.06298828125, "r": 104.88884735107422, "b": 479.7900085449219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 81.45573425292969, "t": 222.228759765625, "r": 104.41118621826172, "b": 205.77960205078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 49.15398406982422, "t": 53.2298583984375, "r": 104.27017974853516, "b": 17.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 49.21142578125, "t": 53.20953369140625, "r": 104.35021209716797, "b": 17.45208740234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 49.060306549072266, "t": 53.243408203125, "r": 104.18020629882812, "b": 17.59002685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 47.5270881652832, "t": 774.5544281005859, "r": 104.35311889648438, "b": 758.357048034668, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 49.25188446044922, "t": 53.1590576171875, "r": 104.30789947509766, "b": 17.57330322265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 182.57284545898438, "t": 660.1277008056641, "r": 323.5049743652344, "b": 512.7030639648438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 349.4798278808594, "t": 668.1431274414062, "r": 466.3904113769531, "b": 502.2280578613281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 49.17033386230469, "t": 53.19232177734375, "r": 104.32601928710938, "b": 17.66766357421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 38.6482048034668, "t": 789.2455253601074, "r": 541.27734375, "b": 71.17132568359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 48.9473762512207, "t": 53.15509033203125, "r": 104.62229919433594, "b": 17.2017822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 49.06572341918945, "t": 53.1595458984375, "r": 104.2694320678711, "b": 17.48858642578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 33, "bbox": {"l": 49.204193115234375, "t": 53.1688232421875, "r": 104.37303924560547, "b": 17.4703369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 34, "bbox": {"l": 49.161170959472656, "t": 53.15081787109375, "r": 104.27032470703125, "b": 17.639404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 39.10532760620117, "t": 789.2540054321289, "r": 539.6693115234375, "b": 76.10986328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 49.07066345214844, "t": 53.27899169921875, "r": 104.23448944091797, "b": 17.56280517578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 48.913848876953125, "t": 53.150634765625, "r": 104.60427856445312, "b": 16.85711669921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 37, "bbox": {"l": 49.14103317260742, "t": 53.27081298828125, "r": 104.3841552734375, "b": 17.4703369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 38, "bbox": {"l": 49.104557037353516, "t": 53.3353271484375, "r": 104.38912200927734, "b": 17.3426513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 39, "bbox": {"l": 49.1429557800293, "t": 53.29705810546875, "r": 104.4314193725586, "b": 17.40765380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 40, "bbox": {"l": 49.0760498046875, "t": 53.3773193359375, "r": 104.37796020507812, "b": 17.49005126953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 40, "bbox": {"l": 350.3396301269531, "t": 67.80126953125, "r": 528.1468505859375, "b": 32.028076171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}, "2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}, "3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}, "4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}, "5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}, "6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}, "7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}, "8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}, "9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}, "10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}, "11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}, "12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}, "13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}, "14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}, "15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}, "16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}, "17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}, "18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}, "19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}, "20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}, "21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}, "22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}, "23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}, "24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}, "25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}, "26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}, "27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}, "28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}, "29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}, "30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}, "31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}, "32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}, "33": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 33}, "34": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 34}, "35": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 35}, "36": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 36}, "37": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 37}, "38": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 38}, "39": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 39}, "40": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 40}}, "_failed_pages": []} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p1.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p1.json new file mode 100644 index 0000000..ad873b3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p1.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/14"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/22"}, {"$ref": "#/groups/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/4"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 726.0600992838541, "r": 233.8205362955729, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 54.96685282389323, "t": 628.8736165364584, "r": 120.50426228841145, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 601.7123209635416, "r": 156.02130126953125, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 588.5560709635416, "r": 309.92848714192706, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 150.52461751302084, "b": 497.31109619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "GCSE BIOLOGY", "text": "GCSE BIOLOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 41.01373036702474, "t": 482.45729573567706, "r": 198.30350748697916, "b": 465.48146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Higher Tier Paper 1H", "text": "Higher Tier Paper 1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 398.42702229817706, "r": 92.17519124348958, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 384.42197672526044, "r": 186.04166666666666, "b": 370.41697184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 369.99257405598956, "r": 84.14157104492188, "b": 358.53387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 356.83632405598956, "r": 156.02130126953125, "b": 345.80202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7a scientific calculator.", "text": "\u00b7a scientific calculator.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 331.37261962890625, "r": 109.0880635579427, "b": 318.6407267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 317.7919718424479, "r": 231.28361002604166, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 291.4794718424479, "r": 241.0085245768229, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.01373036702474, "t": 305.06011962890625, "r": 243.12261962890625, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7Pencil should only be used for drawing.", "text": "\u00b7Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 277.47442626953125, "r": 270.60605875651044, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "\u00b7 Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 238.43007405598962, "r": 402.9493408203125, "b": 212.54197184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "\u00b7 Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 263.4693806966146, "r": 424.9360758463542, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "o pua au pe sabed paus aun asn (shlamsue nos sof aoeds exa paau nos f \u00b7 this book. Write the question number against your answer(s).", "text": "o pua au pe sabed paus aun asn (shlamsue nos sof aoeds exa paau nos f \u00b7 this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 210.84438069661462, "r": 356.0160725911458, "b": 197.26373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "\u00b7In all calculations, show clearly how you work out your answer.", "text": "\u00b7In all calculations, show clearly how you work out your answer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 184.10748291015625, "r": 106.12831624348958, "b": 172.64882405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 170.52683512369788, "r": 251.57906087239584, "b": 158.21938069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "\u00b7 The maximum mark for this paper is 100.", "text": "The maximum mark for this paper is 100.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 156.52178955078125, "r": 282.02223714192706, "b": 144.21433512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "\u00b7 The marks for questions are shown in brackets.", "text": "The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 143.78993733723962, "r": 323.88161214192706, "b": 130.20928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "\u00b7You are expected to use a calculator where appropriate.", "text": "\u00b7You are expected to use a calculator where appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 129.78489176432288, "r": 391.1103108723958, "b": 104.32118733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "You areremindedoftheneedforgoodEnglishandclearpresentation inyour answers.", "text": "You areremindedoftheneedforgoodEnglishandclearpresentation inyour answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 66.80586751302083, "t": 24.95928955078125, "r": 227.47821044921875, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "1UN2284611H0", "text": "1UN2284611H0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 488.359375, "t": 551.6336873372395, "r": 536.1382242838541, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 330.6467692057292, "t": 428.13470458984375, "r": 543.7490234375, "b": 413.28086344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 45 minutes", "text": "Time allowed: 1 hour 45 minutes", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 321.3446858723958, "t": 20.71531168619788, "r": 372.928955078125, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E20", "text": "IB/M/Jun22/E20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 473.1377766927083, "t": 33.87156168619788, "r": 551.3598225911459, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "8461/1H", "text": "8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.00133514404297, "t": 797.4589767456055, "r": 168.1601104736328, "b": 750.2433547973633, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 46.8770866394043, "t": 53.330078125, "r": 252.03916931152344, "b": 17.5728759765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 489.92138671875, "t": 549.9878234863281, "r": 533.2274169921875, "b": 496.6566467285156, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 442.17010498046875, "t": 395.0335693359375, "r": 542.979736328125, "b": 211.3961181640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 451.9966634114583, "t": 453.2540283203125, "r": 533.1785074869791, "b": 465.9858805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.4597574869792, "t": 475.3225911458333, "r": 487.9365234375, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.1178792317708, "t": 475.7469889322917, "r": 528.9502766927084, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 493.9959716796875, "r": 471.8693033854167, "b": 502.48388671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 510.9717610677083, "r": 471.8693033854167, "b": 521.1572672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 463.835693359375, "t": 526.6743977864584, "r": 472.2921142578125, "b": 538.133056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 464.6813151041667, "t": 544.9233805338541, "r": 472.2921142578125, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 561.4748128255209, "r": 471.8693033854167, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 464.2585042317708, "t": 578.4506022135416, "r": 472.2921142578125, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 463.835693359375, "t": 595.4264322916666, "r": 472.2921142578125, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.882568359375, "t": 613.2510172526041, "r": 485.3996175130208, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 451.9966634114583, "t": 453.2540283203125, "r": 533.1785074869791, "b": 465.9858805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.9966634114583, "t": 453.2540283203125, "r": 533.1785074869791, "b": 465.9858805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.4597574869792, "t": 475.3225911458333, "r": 487.9365234375, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.1178792317708, "t": 475.7469889322917, "r": 528.9502766927084, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 493.9959716796875, "r": 471.8693033854167, "b": 502.48388671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 510.9717610677083, "r": 471.8693033854167, "b": 521.1572672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 463.835693359375, "t": 526.6743977864584, "r": 472.2921142578125, "b": 538.133056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 464.6813151041667, "t": 544.9233805338541, "r": 472.2921142578125, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 561.4748128255209, "r": 471.8693033854167, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 464.2585042317708, "t": 578.4506022135416, "r": 472.2921142578125, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 463.835693359375, "t": 595.4264322916666, "r": 472.2921142578125, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.882568359375, "t": 613.2510172526041, "r": 485.3996175130208, "b": 626.4072672526041, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p10.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p10.json new file mode 100644 index 0000000..655e354 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p10.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 47.77887980143229, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 328.9554850260417, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "A fungal cell divides once every 90 minutes.", "text": "A fungal cell divides once every 90 minutes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 747.2798563639323, "r": 396.6070149739583, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "How many times would this fungal cell divide in 24 hours?", "text": "How many times would this fungal cell divide in 24 hours?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.976806640625, "t": 734.5480041503906, "r": 535.7154134114584, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 191.11551920572916, "t": 593.6488037109375, "r": 396.1841634114583, "b": 582.6145426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Numberoftimescelldividesin24hours=", "text": "Numberoftimescelldividesin24hours=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 49.193878173828125, "t": 53.23822021484375, "r": 104.41835021972656, "b": 17.68609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p11.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p11.json new file mode 100644 index 0000000..16b11c9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p11.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/20"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 432.9696858723958, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Some types of fungal cell are grown to produce high-protein food.", "text": "Some types of fungal cell are grown to produce high-protein food.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 749.8262329101562, "r": 417.3252766927083, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "The high-protein food can be used to make meat-free burgers.", "text": "The high-protein food can be used to make meat-free burgers.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 697.6256306966146, "r": 101.9000956217448, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 695.9280497233073, "r": 396.6070149739583, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Where is protein digested in the human digestive system?", "text": "Where is protein digested in the human digestive system?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.4734700520833, "t": 682.347401936849, "r": 536.1382242838541, "b": 667.91796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 670.0399373372396, "r": 201.26324462890625, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 632.6931762695312, "r": 188.15576171875, "b": 617.4149373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Large intestine", "text": "Large intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 594.9219970703125, "r": 141.2225341796875, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Liver", "text": "Liver", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 558.848409016927, "r": 190.69270833333334, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Salivary glands", "text": "Salivary glands", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 521.0772298177083, "r": 159.82670084635416, "b": 507.9209798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stomach", "text": "Stomach", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.04734802246094, "t": 433.22743733723956, "r": 103.16855875651042, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 431.10544840494794, "r": 445.2315266927083, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "Which chemical could be used to test if the burgers contain protein?", "text": "Which chemical could be used to test if the burgers contain protein?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.4734700520833, "t": 417.52480061848956, "r": 536.1382242838541, "b": 403.09539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 405.21734619140625, "r": 201.26324462890625, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 367.02178955078125, "r": 208.02840169270834, "b": 353.01674397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Benedict's reagent", "text": "Benedict's reagent", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 115.007568359375, "t": 329.2506306966146, "r": 185.61883544921875, "b": 316.5187784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Biuret reagent", "text": "Biuret reagent", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 293.1770222981771, "r": 153.90719604492188, "b": 280.0207722981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Ethanol", "text": "Ethanol", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 256.2546590169271, "r": 186.8873087565104, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "lodine solution", "text": "lodine solution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 188.15576171875, "t": 142.51674397786462, "r": 390.2646484375, "b": 128.51169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question2continueson thenextpage", "text": "Question2continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 11, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 49.28749084472656, "t": 53.192626953125, "r": 104.4219741821289, "b": 18.02410888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p12.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p12.json new file mode 100644 index 0000000..c0d294d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p12.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 47.356058756510414, "t": 776.1387329101562, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.6", "text": "02.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.3162841796875, "t": 773.16796875, "r": 450.3053792317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "Table 3 shows some information about burgers made from meat and meat-free burgers.", "text": "Table 3 shows some information about burgers made from meat and meat-free burgers.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 304.0089925130208, "t": 729.8796590169271, "r": 345.8683675130208, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 3", "text": "Table 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 438.32017008463544, "r": 509.9232991536458, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 125]}], "orig": "Evaluate the use of burgers made from meat compared with meat-free burgers in providing humans with a healthy, balanced diet.", "text": "Evaluate the use of burgers made from meat compared with meat-free burgers in providing humans with a healthy, balanced diet.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 394.60748291015625, "r": 384.7679850260417, "b": 380.60243733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Use information fromTable3and your ownknowledge.", "text": "Use information fromTable3and your ownknowledge.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.1311442057292, "t": 381.45123291015625, "r": 535.7154134114584, "b": 367.02178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 546.7087809244791, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 44.95881652832031, "t": 776.5109939575195, "r": 105.72966003417969, "b": 758.9666137695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 49.06380844116211, "t": 53.18597412109375, "r": 104.28301239013672, "b": 17.581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 12, "bbox": {"l": 155.34446716308594, "t": 703.4873962402344, "r": 493.14569091796875, "b": 488.68280029296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/4"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 321.76751708984375, "t": 146.84072875976562, "r": 453.6879475911458, "b": 161.6945597330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Mass per 100 g of burger", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 298.0894775390625, "t": 176.1240030924479, "r": 372.928955078125, "b": 201.1633097330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Burgers made from meat", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 415.211181640625, "t": 175.27520751953125, "r": 465.5269775390625, "b": 202.86088053385416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Meat-free burgers", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 215.5927530924479, "r": 218.1761271158854, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Protein in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 216.4415283203125, "r": 342.4857991536458, "b": 230.44657389322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 216.01713053385416, "r": 455.8020833333333, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "9.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 244.45161946614584, "r": 208.45123291015625, "b": 259.72983805338544, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fibre in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 323.0359700520833, "t": 245.72479248046875, "r": 341.64013671875, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 245.3003946940104, "r": 455.3792317708333, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 160.24952189127603, "t": 272.46169026692706, "r": 199.99479166666666, "b": 289.0131022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fat in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 272.88608805338544, "r": 341.2173258463542, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 274.15928141276044, "r": 455.3792317708333, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 303.0181477864583, "r": 249.4649658203125, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Carbohydrate in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.53928629557294, "t": 302.59375, "r": 342.0629475911458, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 430.8555908203125, "t": 302.59375, "r": 454.9564208984375, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "15.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 161.09516398111978, "t": 331.87701416015625, "r": 247.3508504231771, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Cholesterol in mg", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 311.6197916666667, "t": 332.30141194661456, "r": 340.79449462890625, "b": 344.60888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "120.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 331.87701416015625, "r": 454.9564208984375, "b": 345.4576822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 7, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 321.76751708984375, "t": 146.84072875976562, "r": 453.6879475911458, "b": 161.6945597330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Mass per 100 g of burger", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 321.76751708984375, "t": 146.84072875976562, "r": 453.6879475911458, "b": 161.6945597330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Mass per 100 g of burger", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 298.0894775390625, "t": 176.1240030924479, "r": 372.928955078125, "b": 201.1633097330729, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Burgers made from meat", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 415.211181640625, "t": 175.27520751953125, "r": 465.5269775390625, "b": 202.86088053385416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Meat-free burgers", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 215.5927530924479, "r": 218.1761271158854, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Protein in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 216.4415283203125, "r": 342.4857991536458, "b": 230.44657389322916, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "14.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 216.01713053385416, "r": 455.8020833333333, "b": 230.8709716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "9.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 244.45161946614584, "r": 208.45123291015625, "b": 259.72983805338544, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fibre in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 323.0359700520833, "t": 245.72479248046875, "r": 341.64013671875, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.9", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 245.3003946940104, "r": 455.3792317708333, "b": 259.30544026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 160.24952189127603, "t": 272.46169026692706, "r": 199.99479166666666, "b": 289.0131022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Fat in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 272.88608805338544, "r": 341.2173258463542, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "16.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 274.15928141276044, "r": 455.3792317708333, "b": 287.73992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "5.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 303.0181477864583, "r": 249.4649658203125, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Carbohydrate in g", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.53928629557294, "t": 302.59375, "r": 342.0629475911458, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "15.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 430.8555908203125, "t": 302.59375, "r": 454.9564208984375, "b": 316.5987955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "15.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 161.09516398111978, "t": 331.87701416015625, "r": 247.3508504231771, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Cholesterol in mg", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 311.6197916666667, "t": 332.30141194661456, "r": 340.79449462890625, "b": 344.60888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "120.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 436.7750651041667, "t": 331.87701416015625, "r": 454.9564208984375, "b": 345.4576822916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p13.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p13.json new file mode 100644 index 0000000..c4dfb6e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p13.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 552.6282958984375, "t": 609.3514404296875, "r": 567.8498942057291, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 552.6282958984375, "t": 609.3514404296875, "r": 567.8498942057291, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 216.90767415364584, "t": 516.8332926432292, "r": 361.0899658203125, "b": 503.6770426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turn over for next question", "text": "Turn over for next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 479.0572916666667, "t": 73.76470947265625, "r": 544.171875, "b": 60.18406168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 545.4403076171875, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 49.16658401489258, "t": 53.1641845703125, "r": 104.45934295654297, "b": 17.537353515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 543.3030395507812, "t": 634.2982940673828, "r": 575.8578491210938, "b": 592.6698303222656, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p14.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p14.json new file mode 100644 index 0000000..f357758 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p14.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/tables/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 296.398193359375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "03 A student prepared some onion cells.", "text": "03 A student prepared some onion cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 743.8847045898438, "r": 406.7547200520833, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "The student viewed the onion cells using a light microscope.", "text": "The student viewed the onion cells using a light microscope.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 706.5379231770834, "r": 235.0890096028646, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 681.07421875, "r": 342.4857991536458, "b": 667.4935709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "1. Cut an onion into pieces using a sharp knife.", "text": "Cut an onion into pieces using a sharp knife.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 655.1861165364584, "r": 434.6609700520833, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "2. Peel off a thin layer of onion epidermis from one piece of onion.", "text": "Peel off a thin layer of onion epidermis from one piece of onion.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 630.1467895507812, "r": 471.4464925130208, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "3. Place the onion epidermis onto a microscope slide in a single flat layer.", "text": "Place the onion epidermis onto a microscope slide in a single flat layer.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "3."}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 605.1074829101562, "r": 293.4384358723958, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "4. Add three drops of iodine solution.", "text": "Add three drops of iodine solution.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "4."}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 579.643778483073, "r": 429.164306640625, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "5. Slowly lower a cover slip at an angle onto the onion epidermis.", "text": "Slowly lower a cover slip at an angle onto the onion epidermis.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "5."}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 554.1800537109375, "r": 353.4791666666667, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "6. Place the slide on the stage of the microscope.", "text": "Place the slide on the stage of the microscope.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "6."}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.04734802246094, "t": 478.63771565755206, "r": 104.01420084635417, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.3162841796875, "t": 477.36452229817706, "r": 374.6202392578125, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Table 4 shows a risk assessment for this experiment.", "text": "Table 4 shows a risk assessment for this experiment.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 450.62762451171875, "r": 206.33711751302084, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Complete Table 4.", "text": "Complete Table 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.976806640625, "t": 437.89577229817706, "r": 536.1382242838541, "b": 424.73952229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 14, "bbox": {"l": 304.0089925130208, "t": 400.54901123046875, "r": 345.445556640625, "b": 387.39276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 4", "text": "Table 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 49.108829498291016, "t": 53.17132568359375, "r": 104.2585220336914, "b": 17.90985107421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 14, "bbox": {"l": 91.9642105102539, "t": 374.9870300292969, "r": 522.89111328125, "b": 173.91448974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 96.40340169270833, "t": 475.3225911458333, "r": 135.30302937825522, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Hazard", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 247.3508504231771, "t": 475.3225911458333, "r": 273.98862711588544, "b": 489.32763671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 376.734375, "t": 474.898193359375, "r": 488.359375, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Plan to minimise risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 95.98058064778645, "t": 526.25, "r": 170.39724731445312, "b": 551.289306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "lodine solution is an irritant", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 186.04166666666666, "t": 527.523193359375, "r": 333.6065266927083, "b": 552.1381022135416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "May cause allergicreaction or skin rash", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 96.40340169270833, "t": 617.4949544270834, "r": 154.33001708984375, "b": 633.1975911458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Sharp knife", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 3, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": {"l": 96.40340169270833, "t": 475.3225911458333, "r": 135.30302937825522, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Hazard", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 247.3508504231771, "t": 475.3225911458333, "r": 273.98862711588544, "b": 489.32763671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 376.734375, "t": 474.898193359375, "r": 488.359375, "b": 489.7520345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Plan to minimise risk", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 95.98058064778645, "t": 526.25, "r": 170.39724731445312, "b": 551.289306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "lodine solution is an irritant", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 186.04166666666666, "t": 527.523193359375, "r": 333.6065266927083, "b": 552.1381022135416, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "May cause allergicreaction or skin rash", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 96.40340169270833, "t": 617.4949544270834, "r": 154.33001708984375, "b": 633.1975911458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Sharp knife", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p15.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p15.json new file mode 100644 index 0000000..1fa6ad8 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p15.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 403.7949625651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Give a reason for each of the following steps in the method.", "text": "Give a reason for each of the following steps in the method.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 760.01171875, "r": 535.7154134114584, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 721.3917541503906, "r": 307.81439208984375, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "A thin layer of onion epidermis is used.", "text": "A thin layer of onion epidermis is used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 593.2244262695312, "r": 351.3650309244792, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "lodine solution is added to the onion epidermis.", "text": "lodine solution is added to the onion epidermis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 463.78387451171875, "r": 421.1306559244792, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "The cover slip is lowered onto the onion epidermis at an angle.", "text": "The cover slip is lowered onto the onion epidermis at an angle.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 187.73295084635416, "t": 322.0359090169271, "r": 390.6875, "b": 308.45526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question3 continueson thenextpage", "text": "Question3 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 15, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 49.16040802001953, "t": 53.16973876953125, "r": 104.38372039794922, "b": 17.7064208984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p16.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p16.json new file mode 100644 index 0000000..720fcf5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p16.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 496.8157958984375, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Figure 3 shows what the student saw under the microscope at a magnification of x400.", "text": "Figure 3 shows what the student saw under the microscope at a magnification of x400.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 16, "bbox": {"l": 268.06911214192706, "t": 736.6699829101562, "r": 314.15671793619794, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 360.6671142578125, "t": 704.4159545898438, "r": 395.7613525390625, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "CellZ", "text": "CellZ", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 357.2845458984375, "t": 635.6639404296875, "r": 385.6136067708333, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "\u00d7400", "text": "\u00d7400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 245.23673502604166, "t": 599.1659545898438, "r": 280.7537841796875, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "4.8 cm", "text": "4.8 cm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 539.3262329101562, "r": 101.47727457682292, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 538.0530395507812, "r": 315.42519124348956, "b": 524.472391764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "The length of cell Z in Figure 3 is 4.8cm.", "text": "The length of cell Z in Figure 3 is 4.8cm.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 499.00868733723956, "r": 276.94838460286456, "b": 486.70123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Calculatethereal length of cell Z.", "text": "Calculatethereal length of cell Z.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 474.81817626953125, "r": 304.4318033854167, "b": 460.38873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Give your answer in micrometres (\u03bcm).", "text": "Give your answer in micrometres (\u03bcm).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.553955078125, "t": 461.66192626953125, "r": 536.1382242838541, "b": 447.23248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 253.69317626953125, "t": 111.96026611328125, "r": 362.3583984375, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Real lengthofcellZ=", "text": "Real lengthofcellZ=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 507.3863525390625, "t": 109.41396077473962, "r": 523.8764241536459, "b": 99.65281168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "\u03bcm", "text": "\u03bcm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 360.6671142578125, "t": 704.4159545898438, "r": 395.7613525390625, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "CellZ", "text": "CellZ", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 357.2845458984375, "t": 635.6639404296875, "r": 385.6136067708333, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "\u00d7400", "text": "\u00d7400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 245.23673502604166, "t": 599.1659545898438, "r": 280.7537841796875, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "4.8 cm", "text": "4.8 cm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 82.07044219970703, "t": 540.7142944335938, "r": 104.0030288696289, "b": 524.5466003417969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 49.1007080078125, "t": 53.2117919921875, "r": 104.33074951171875, "b": 17.74853515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 185.54078674316406, "t": 710.5711212158203, "r": 393.96270751953125, "b": 588.0393524169922, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p17.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p17.json new file mode 100644 index 0000000..78c07db --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p17.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.29071044921875, "t": 811.3635304768881, "r": 295.97536214192706, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 391.1103108723958, "t": 604.6830851236979, "r": 405.4862467447917, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u81ea", "text": "\u81ea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 359.8214925130208, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Figure 4 shows thestudent's drawingofFigure3.", "text": "Figure 4 shows thestudent's drawingofFigure3.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 268.06911214192706, "t": 737.0943806966146, "r": 314.57952880859375, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 224.9412841796875, "t": 696.3524373372396, "r": 322.19032796223956, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "ONION CELLS", "text": "ONION CELLS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 391.1103108723958, "t": 604.6830851236979, "r": 405.4862467447917, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u81ea", "text": "\u81ea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 48.62452697753906, "t": 468.02785237630206, "r": 101.9000956217448, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 466.75465901692706, "r": 437.1979166666667, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Give two ways the student could improve the drawing in Figure 4.", "text": "Give two ways the student could improve the drawing in Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.553955078125, "t": 453.17401123046875, "r": 536.1382242838541, "b": 440.01776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 374.23651123046875, "r": 121.77272542317708, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 47.356058756510414, "t": 288.08428955078125, "r": 380.5397542317708, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "03.5 Onion cells can be seen using an electron microscope.", "text": "03.5 Onion cells can be seen using an electron microscope.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 262.1961873372396, "r": 484.1311442057292, "b": 235.45928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Give two ways onion cells would look different when seen using an electron microscope.", "text": "Give two ways onion cells would look different when seen using an electron microscope.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.1311442057292, "t": 236.73248291015625, "r": 536.5610758463541, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 156.94618733723962, "r": 121.77272542317708, "b": 148.45831298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 207.1827596028646, "t": 95.83331298828125, "r": 370.3920491536458, "b": 82.25266520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turn over for thenextquestion", "text": "Turn over for thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 17, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 551.3598225911459, "t": 157.37058512369788, "r": 568.272705078125, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 49.06275177001953, "t": 53.25390625, "r": 104.31889343261719, "b": 17.77984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 156.39285278320312, "t": 667.3309478759766, "r": 423.3988342285156, "b": 519.7236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p18.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p18.json new file mode 100644 index 0000000..c7d0d62 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p18.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/tables/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 774.0167541503906, "r": 364.8953450520833, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Plants and animals have many defence responses.", "text": "Plants and animals have many defence responses.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 18, "bbox": {"l": 47.77887980143229, "t": 723.0893351236979, "r": 295.1297200520833, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "04.1 Table5 showssomeplant defences.", "text": "04.1 Table5 showssomeplant defences.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 683.6205851236979, "r": 535.7154134114584, "b": 645.0006306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "Identify whether each defence is a chemical response or a physical response. [2 marks] Tick (V) one box in each row.", "text": "Identify whether each defence is a chemical response or a physical response. [2 marks] Tick (V) one box in each row.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 18, "bbox": {"l": 304.4318033854167, "t": 633.1175537109375, "r": 345.445556640625, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 5", "text": "Table 5", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 79.06770833333333, "t": 24.53489176432288, "r": 84.14157104492188, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 49.121463775634766, "t": 53.21649169921875, "r": 104.3064956665039, "b": 17.7779541015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 18, "bbox": {"l": 151.78521728515625, "t": 606.2125244140625, "r": 496.1224060058594, "b": 461.1795654296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 379.2712809244792, "t": 244.0272216796875, "r": 471.4464925130208, "b": 258.0322672526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Type of response", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 158.13541666666666, "t": 272.88608805338544, "r": 231.28361002604166, "b": 285.61794026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Plant defence", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 365.7410074869792, "t": 272.46169026692706, "r": 415.6339925130208, "b": 285.19354248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Chemical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 272.46169026692706, "r": 484.1311442057292, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Physical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 157.71259562174478, "t": 300.89617919921875, "r": 318.80775960286456, "b": 315.75, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Thick, waxy layer on leaf surface", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 157.71259562174478, "t": 330.6038411458333, "r": 286.67327880859375, "b": 344.1844889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Berries that are poisonous", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 158.13541666666666, "t": 359.4626871744792, "r": 284.1363525390625, "b": 372.1945393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bark on trees that falls off", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 5, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 244.0272216796875, "r": 471.4464925130208, "b": 258.0322672526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Type of response", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 244.0272216796875, "r": 471.4464925130208, "b": 258.0322672526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 3, "text": "Type of response", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 158.13541666666666, "t": 272.88608805338544, "r": 231.28361002604166, "b": 285.61794026692706, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Plant defence", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 365.7410074869792, "t": 272.46169026692706, "r": 415.6339925130208, "b": 285.19354248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Chemical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 272.46169026692706, "r": 484.1311442057292, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Physical", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 157.71259562174478, "t": 300.89617919921875, "r": 318.80775960286456, "b": 315.75, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Thick, waxy layer on leaf surface", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 157.71259562174478, "t": 330.6038411458333, "r": 286.67327880859375, "b": 344.1844889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Berries that are poisonous", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 158.13541666666666, "t": 359.4626871744792, "r": 284.1363525390625, "b": 372.1945393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bark on trees that falls off", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p19.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p19.json new file mode 100644 index 0000000..0db2c8a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p19.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.62452697753906, "t": 494.34035237630206, "r": 101.9000956217448, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 304.0089925130208, "t": 711.2062683105469, "r": 349.6737467447917, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 247.7736612955729, "t": 557.575215657552, "r": 285.82763671875, "b": 545.692159016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Hornet", "text": "Hornet", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 350.5194091796875, "t": 557.9996134440105, "r": 416.9024658203125, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Hornet Moth", "text": "Hornet Moth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 446.0771484375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Mimicry is a mechanical adaptation seen in both plants and animals.", "text": "Mimicry is a mechanical adaptation seen in both plants and animals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 748.9774373372396, "r": 252.00189208984375, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Figure 5 shows two insects.", "text": "Figure 5 shows two insects.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 304.0089925130208, "t": 711.2062683105469, "r": 349.6737467447917, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 247.7736612955729, "t": 557.575215657552, "r": 285.82763671875, "b": 545.692159016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Hornet", "text": "Hornet", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 350.5194091796875, "t": 557.9996134440105, "r": 416.9024658203125, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Hornet Moth", "text": "Hornet Moth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.62452697753906, "t": 494.34035237630206, "r": 101.9000956217448, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 493.06715901692706, "r": 407.6003824869792, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Hornets are insects that sting other animals and cause pain.", "text": "Hornets are insects that sting other animals and cause pain.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 462.93511962890625, "r": 313.73388671875, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Hornetmothsdonotstingother animals.", "text": "Hornetmothsdonotstingother animals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 423.46636962890625, "r": 374.1974283854167, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Suggest howmimicry helps thehornet moth survive.", "text": "Suggest howmimicry helps thehornet moth survive.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.4734700520833, "t": 411.15887451171875, "r": 536.1382242838541, "b": 396.72947184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 295.29901123046875, "r": 390.6875, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question4continueson thenextpage", "text": "Question4continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.3262125651041, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.8631591796875, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 45.82774353027344, "t": 496.00555419921875, "r": 105.47586059570312, "b": 478.4892272949219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 49.15392303466797, "t": 53.19732666015625, "r": 104.37195587158203, "b": 17.78106689453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 219.59185791015625, "t": 708.927734375, "r": 427.3768615722656, "b": 546.8448181152344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p2.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p2.json new file mode 100644 index 0000000..51f4b8e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p2.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 194.07527669270834, "t": 774.8655446370443, "r": 383.49951171875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "There are no questions on this page", "text": "There are no questions on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 188.5785929361979, "t": 445.11049397786456, "r": 398.2982991536458, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 538.6751708984375, "t": 788.4461924235026, "r": 578.84326171875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 48.88732147216797, "t": 53.059814453125, "r": 104.56513977050781, "b": 16.9586181640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p20.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p20.json new file mode 100644 index 0000000..a0a0aa7 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p20.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 575.3998209635417, "r": 101.9000956217448, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 774.441151936849, "r": 358.5530192057292, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Adult hornet moths lay eggs that hatch into larvae.", "text": "Adult hornet moths lay eggs that hatch into larvae.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 749.4018351236979, "r": 329.3782958984375, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Figure 6 shows the larvae of a hornet moth.", "text": "Figure 6 shows the larvae of a hornet moth.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 20, "bbox": {"l": 302.3177083333333, "t": 723.9381306966146, "r": 348.4053141276042, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 391.5331217447917, "t": 644.5762329101562, "r": 413.5198567708333, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "J", "text": "J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 575.3998209635417, "r": 101.9000956217448, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.3162841796875, "t": 574.1266276041667, "r": 262.5724283854167, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "The larvae of the hornet moth:", "text": "The larvae of the hornet moth:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 115.007568359375, "t": 553.7556762695312, "r": 260.4583333333333, "b": 541.8725992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "\u00b7live inside the roots of trees", "text": "\u00b7live inside the roots of trees", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 119.2357889811198, "t": 533.809102376302, "r": 308.6600341796875, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "usethetreerootsasasourceoffood", "text": "usethetreerootsasasourceoffood", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 20, "bbox": {"l": 119.2357889811198, "t": 514.7113037109375, "r": 280.33095296223956, "b": 502.4038492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "causedamage to the treeroots.", "text": "causedamage to the treeroots.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.43039957682292, "t": 476.51572672526044, "r": 430.4327392578125, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Explain why a tree might die if the roots of the tree are damaged.", "text": "Explain why a tree might die if the roots of the tree are damaged.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.976806640625, "t": 463.35947672526044, "r": 535.7154134114584, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 65.96022542317708, "t": 24.53489176432288, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 391.5331217447917, "t": 644.5762329101562, "r": 413.5198567708333, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "J", "text": "J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 45.496910095214844, "t": 576.65966796875, "r": 105.91410064697266, "b": 559.7376403808594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 49.04840087890625, "t": 53.253662109375, "r": 104.3270492553711, "b": 17.5347900390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 227.0424346923828, "t": 684.4001617431641, "r": 420.9546203613281, "b": 616.7417907714844, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p21.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p21.json new file mode 100644 index 0000000..0177f0f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p21.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 551.3598225911459, "t": 390.78794352213544, "r": 566.5814208984375, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 469.7552083333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "The larvae of the hornet moth form when fertilised eggs divide by mitosis.", "text": "The larvae of the hornet moth form when fertilised eggs divide by mitosis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 413.5198567708333, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Describe how mitosis produces two genetically identical cells.", "text": "Describe how mitosis produces two genetically identical cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.1311442057292, "t": 734.5480041503906, "r": 536.1382242838541, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.201700846354164, "t": 452.32521565755206, "r": 103.16855875651042, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 451.47642008463544, "r": 493.0104166666667, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "The cells which are first formed from the fertilised eggs of the hornet moth are stem cells.", "text": "The cells which are first formed from the fertilised eggs of the hornet moth are stem cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 411.15887451171875, "r": 467.6410725911458, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Name the process by which these stem cells then form specialised cells.", "text": "Name the process by which these stem cells then form specialised cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 490.0506591796875, "t": 399.27581787109375, "r": 536.1382242838541, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 551.3598225911459, "t": 390.78794352213544, "r": 566.5814208984375, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 207.6055908203125, "t": 246.06915283203125, "r": 370.8148600260417, "b": 234.18609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 542.1177978515625, "t": 415.42755126953125, "r": 574.8453369140625, "b": 373.7242736816406, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 49.26432418823242, "t": 53.17437744140625, "r": 104.31494903564453, "b": 17.68426513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p22.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p22.json new file mode 100644 index 0000000..e018627 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p22.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 64.26893615722656, "t": 26.23248291015625, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 48.83792495727539, "t": 53.11871337890625, "r": 104.64608764648438, "b": 16.5157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p23.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p23.json new file mode 100644 index 0000000..52cf32c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p23.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/17"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "05 Water and carbon dioxide are exchanged between leaves and the atmosphere", "text": "05 Water and carbon dioxide are exchanged between leaves and the atmosphere", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 760.4361114501953, "r": 260.03550211588544, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "throughpores called stomata.", "text": "throughpores called stomata.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.62452697753906, "t": 709.9330851236979, "r": 100.63162231445312, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 708.659901936849, "r": 439.7348225911458, "b": 693.3816731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Name the cells that control the opening and closing of the stomata.", "text": "Name the cells that control the opening and closing of the stomata.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 490.0506591796875, "t": 695.0792541503906, "r": 536.1382242838541, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 577.9461873372395, "r": 388.5733642578125, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Water moves through a plant in the transpiration stream.", "text": "Water moves through a plant in the transpiration stream.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.201700846354164, "t": 527.018778483073, "r": 108.24242146809895, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 105.70548502604167, "t": 524.8967895507812, "r": 490.0506591796875, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Describe two differences between the transpiration stream and translocation.", "text": "Describe two differences between the transpiration stream and translocation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.976806640625, "t": 510.8917643229167, "r": 536.1382242838541, "b": 497.73549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 332.22137451171875, "r": 533.1785074869791, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "05.3 Which environmental conditions would cause the rate of transpiration to be greatest in a plant?", "text": "05.3 Which environmental conditions would cause the rate of transpiration to be greatest in a plant?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 490.0506591796875, "t": 304.2113240559896, "r": 535.7154134114584, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 289.7818806966146, "r": 201.26324462890625, "b": 274.92803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 249.88873291015625, "r": 224.09564208984375, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Coldwithlowhumidity", "text": "Coldwithlowhumidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 212.96636962890625, "r": 227.90104166666666, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Cold with high humidity", "text": "Cold with high humidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 175.61956787109375, "r": 230.86079915364584, "b": 162.03892008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Warmwithlowhumidity", "text": "Warmwithlowhumidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 139.54595947265625, "r": 234.66617838541666, "b": 124.69211832682288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Warm with high humidity", "text": "Warm with high humidity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 23, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 64.26893615722656, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 49.234535217285156, "t": 53.13446044921875, "r": 104.30413055419922, "b": 17.3516845703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p24.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p24.json new file mode 100644 index 0000000..72ee1c5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p24.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/pictures/3"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 394.4928792317708, "t": 686.1669616699219, "r": 416.9024658203125, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 104.85984293619792, "t": 674.7082926432291, "r": 126.42376708984375, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 404.2177734375, "t": 660.2788492838541, "r": 529.7958984375, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "-- Low atmospheric CO2", "text": "-- Low atmospheric CO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 636.0883382161459, "r": 108.66524251302083, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Meanwidth", "text": "Meanwidth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 420.2850341796875, "t": 636.0883382161459, "r": 509.9232991536458, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Normal conditions", "text": "Normal conditions", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 624.2052612304688, "r": 104.85984293619792, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "ofstomata", "text": "ofstomata", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 111.625, "t": 617.4149373372396, "r": 125.15530395507812, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 612.7466023763021, "r": 104.85984293619792, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "in arbitrary", "text": "in arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 600.0147298177084, "r": 76.95359802246094, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 118.39014689127605, "t": 558.848409016927, "r": 125.15530395507812, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 106.97395833333333, "t": 549.0873209635417, "r": 151.3702596028646, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 223.67281087239584, "t": 550.784891764323, "r": 261.30397542317706, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Midday", "text": "Midday", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 334.45216878255206, "t": 549.9361165364583, "r": 378.0028483072917, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 213.94791666666666, "t": 521.0772298177083, "r": 271.87451171875, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Time of day", "text": "Time of day", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 774.441151936849, "r": 479.9029134114583, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Figure 7 shows information about the mean width of the stomata in a plant.", "text": "Figure 7 shows information about the mean width of the stomata in a plant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 268.06911214192706, "t": 729.0308736165365, "r": 313.73388671875, "b": 714.6014302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 394.4928792317708, "t": 686.1669616699219, "r": 416.9024658203125, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 104.85984293619792, "t": 674.7082926432291, "r": 126.42376708984375, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 404.2177734375, "t": 660.2788492838541, "r": 529.7958984375, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "-- Low atmospheric CO2", "text": "-- Low atmospheric CO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 636.0883382161459, "r": 108.66524251302083, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Meanwidth", "text": "Meanwidth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 420.2850341796875, "t": 636.0883382161459, "r": 509.9232991536458, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Normal conditions", "text": "Normal conditions", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 624.2052612304688, "r": 104.85984293619792, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "ofstomata", "text": "ofstomata", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 111.625, "t": 617.4149373372396, "r": 125.15530395507812, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 612.7466023763021, "r": 104.85984293619792, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "in arbitrary", "text": "in arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.73863728841146, "t": 600.0147298177084, "r": 76.95359802246094, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 118.39014689127605, "t": 558.848409016927, "r": 125.15530395507812, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 106.97395833333333, "t": 549.0873209635417, "r": 151.3702596028646, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 223.67281087239584, "t": 550.784891764323, "r": 261.30397542317706, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Midday", "text": "Midday", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 334.45216878255206, "t": 549.9361165364583, "r": 378.0028483072917, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Midnight", "text": "Midnight", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 213.94791666666666, "t": 521.0772298177083, "r": 271.87451171875, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Time of day", "text": "Time of day", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.47016906738281, "t": 441.29095458984375, "r": 101.054443359375, "b": 428.13470458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 440.44215901692706, "r": 470.600830078125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "The changes in the mean width of the stomata in normal conditions are an advantage to the plant.", "text": "The changes in the mean width of the stomata in normal conditions are an advantage to the plant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 400.97340901692706, "r": 178.0080362955729, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Explain how.", "text": "Explain how.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.553955078125, "t": 387.81715901692706, "r": 536.1382242838541, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 50.27867889404297, "t": 697.9160461425781, "r": 534.2479858398438, "b": 506.797607421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 46.177696228027344, "t": 443.3124694824219, "r": 80.92774963378906, "b": 427.13104248046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 82.27433013916016, "t": 443.8872985839844, "r": 104.73280334472656, "b": 427.0744323730469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 49.17908477783203, "t": 53.28521728515625, "r": 104.2843246459961, "b": 17.65447998046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p25.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p25.json new file mode 100644 index 0000000..c0925de --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p25.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 509.5004475911458, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 124]}], "orig": "The changes in the mean width of the stomata in low atmospheric carbon dioxide aredifferentfromthechangesinnormalconditions.", "text": "The changes in the mean width of the stomata in low atmospheric carbon dioxide aredifferentfromthechangesinnormalconditions.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.43039957682292, "t": 732.8504231770834, "r": 462.9900309244792, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "Explain how the difference helps the plant to survive in low atmospheric carbondioxide.", "text": "Explain how the difference helps the plant to survive in low atmospheric carbondioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.976806640625, "t": 707.38671875, "r": 535.7154134114584, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 207.6055908203125, "t": 502.4038492838542, "r": 370.3920491536458, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turn overfor the nextquestion", "text": "Turn overfor the nextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 25, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 552.2054850260416, "t": 584.3121134440105, "r": 567.8498942057291, "b": 572.004659016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 49.31337356567383, "t": 53.187255859375, "r": 104.32842254638672, "b": 17.487060546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p26.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p26.json new file mode 100644 index 0000000..d82f975 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p26.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/3"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/texts/42"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 78.22206115722656, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 153.90719604492188, "t": 705.2647399902344, "r": 209.296875, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Organism", "text": "Organism", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.33001708984375, "t": 670.0399373372396, "r": 164.90056355794272, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.75283813476562, "t": 644.1518351236979, "r": 164.90056355794272, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.33001708984375, "t": 619.1125284830729, "r": 165.74620564778647, "b": 603.4098917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.75283813476562, "t": 591.9512329101562, "r": 164.90056355794272, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 154.75283813476562, "t": 566.0631306966145, "r": 164.47774251302084, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "E", "text": "E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 231.28361002604166, "t": 709.5086873372396, "r": 299.3579508463542, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Surface area", "text": "Surface area", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 248.61930338541666, "t": 699.3232116699219, "r": 281.59942626953125, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "in m2", "text": "in m2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.93465169270834, "t": 670.4643351236979, "r": 294.7069091796875, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "6.04 x 10-8", "text": "6.04 x 10-8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.93465169270834, "t": 644.5762329101562, "r": 294.7069091796875, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "3.21 x 10-3", "text": "3.21 x 10-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.93465169270834, "t": 618.6881306966146, "r": 294.7069091796875, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "9.96 x 10-3", "text": "9.96 x 10-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 235.5118408203125, "t": 592.3756306966146, "r": 293.86126708984375, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "4.61 x 10-1", "text": "4.61 x 10-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 238.4715779622396, "t": 566.487528483073, "r": 291.7471516927083, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "1.99 \u00d7 101", "text": "1.99 \u00d7 101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 394.9156901041667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Table 6 shows information about five different organisms.", "text": "Table 6 shows information about five different organisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 26, "bbox": {"l": 304.4318033854167, "t": 744.309092203776, "r": 345.445556640625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 6", "text": "Table 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 337.83473714192706, "t": 709.9330851236979, "r": 379.6941324869792, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Volume", "text": "Volume", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 342.4857991536458, "t": 699.7475992838541, "r": 375.4659016927083, "b": 684.4693806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "in m3", "text": "in m3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 327.68701171875, "t": 670.8887329101562, "r": 390.2646484375, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "1.65 \u00d7 10-12", "text": "1.65 \u00d7 10-12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 328.9554850260417, "t": 645.4250284830729, "r": 388.5733642578125, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "1.25 \u00d7 10-6", "text": "1.25 \u00d7 10-6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 329.80112711588544, "t": 619.1125284830729, "r": 387.7277425130208, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "1.35 \u00d7 10-4", "text": "1.35 \u00d7 10-4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 329.3782958984375, "t": 593.2244262695312, "r": 388.5733642578125, "b": 579.643778483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "1.57 \u00d7 10-2", "text": "1.57 \u00d7 10-2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 331.49241129557294, "t": 566.487528483073, "r": 386.0364583333333, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "6.12 \u00d7 100", "text": "6.12 \u00d7 100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 410.9829508463542, "t": 710.3574829101562, "r": 493.0104166666667, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Surface area to", "text": "Surface area to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 418.59375, "t": 696.7768351236979, "r": 485.8224283854167, "b": 685.3181660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "volumeratio", "text": "volumeratio", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 431.2784016927083, "t": 670.8887329101562, "r": 473.1377766927083, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "36606:1", "text": "36606:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 437.1979166666667, "t": 645.0006306966146, "r": 473.1377766927083, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "2568:1", "text": "2568:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 453.6879475911458, "t": 619.1125284830729, "r": 473.5605875651042, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "X:1", "text": "X:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 449.0369059244792, "t": 592.8000284830729, "r": 473.1377766927083, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "29:1", "text": "29:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 455.3792317708333, "t": 566.487528483073, "r": 473.5605875651042, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "3:1", "text": "3:1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.47016906738281, "t": 494.76475016276044, "r": 101.47727457682292, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 492.64276123046875, "r": 255.80729166666666, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "CalculatevalueXinTable6.", "text": "CalculatevalueXinTable6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 468.02785237630206, "r": 346.7139892578125, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Give your answer to the nearest whole number.", "text": "Give your answer to the nearest whole number.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.553955078125, "t": 454.02280680338544, "r": 535.2926025390625, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 321.3446858723958, "t": 274.0792439778646, "r": 459.1846516927083, "b": 259.22540283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "X (nearest whole number) =", "text": "X (nearest whole number) =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.201700846354164, "t": 222.30303955078125, "r": 103.5913798014323, "b": 206.17604573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.3162841796875, "t": 204.47845458984375, "r": 194.49810791015625, "b": 191.74660237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "to volume ratio?", "text": "to volume ratio?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 177.31715901692712, "r": 178.43086751302084, "b": 164.58530680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Use Table 6.", "text": "Use Table 6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.0506591796875, "t": 164.16090901692712, "r": 535.7154134114584, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 64.26893615722656, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 47.00654983520508, "t": 775.9247817993164, "r": 80.57906341552734, "b": 759.4455184936523, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 82.81494140625, "t": 496.06298828125, "r": 104.88884735107422, "b": 479.7900085449219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 81.45573425292969, "t": 222.228759765625, "r": 104.41118621826172, "b": 205.77960205078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 49.15398406982422, "t": 53.2298583984375, "r": 104.27017974853516, "b": 17.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p27.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p27.json new file mode 100644 index 0000000..0cd049f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p27.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 102.32291666666667, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 484.553955078125, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Organism B exchanges gases with the environment directly through its skin.", "text": "Organism B exchanges gases with the environment directly through its skin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 743.0359090169271, "r": 504.8494059244792, "b": 729.8796590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Organism D exchanges gases with the environment using its respiratory system.", "text": "Organism D exchanges gases with the environment using its respiratory system.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 688.2889302571615, "r": 254.1159871419271, "b": 674.7082926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "require a respiratory system.", "text": "require a respiratory system.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 484.1311442057292, "t": 676.4058736165365, "r": 536.1382242838541, "b": 661.9764404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 187.73295084635416, "t": 483.73044840494794, "r": 390.2646484375, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question6continuesonthenextpage", "text": "Question6continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 27, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 49.21142578125, "t": 53.20953369140625, "r": 104.35021209716797, "b": 17.45208740234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p28.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p28.json new file mode 100644 index 0000000..60d60a1 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p28.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/tables/1"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 63.84611511230469, "t": 27.08127848307288, "r": 87.10132853190105, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 245.23673502604166, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Table6 isrepeatedbelow.", "text": "Table6 isrepeatedbelow.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 28, "bbox": {"l": 303.58616129557294, "t": 746.0066731770834, "r": 345.8683675130208, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 6", "text": "Table 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.58474731445312, "t": 495.18914794921875, "r": 416.4796142578125, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Table 7 shows information about organism D and organism E.", "text": "Table 7 shows information about organism D and organism E.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/tables/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 28, "bbox": {"l": 304.4318033854167, "t": 456.99355061848956, "r": 345.8683675130208, "b": 443.83730061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 7", "text": "Table 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 49.060306549072266, "t": 53.243408203125, "r": 104.18020629882812, "b": 17.59002685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 28, "bbox": {"l": 149.23580932617188, "t": 719.3758697509766, "r": 499.3244934082031, "b": 547.9515991210938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/4"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 230.86079915364584, "t": 130.71371459960938, "r": 299.3579508463542, "b": 155.75302124023438, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Surface area in m2", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 337.41192626953125, "t": 129.86491902669272, "r": 379.2712809244792, "b": 156.60181681315103, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Volume in m3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 410.9829508463542, "t": 130.28931681315103, "r": 492.5875651041667, "b": 156.17741902669272, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Surface area to volume ratio", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 155.1756591796875, "t": 136.65524291992188, "r": 209.296875, "b": 151.08467610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 153.90719604492188, "t": 170.18246459960938, "r": 165.74620564778647, "b": 184.61189778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "A", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.93465169270834, "t": 169.33366902669272, "r": 294.7069091796875, "b": 182.48992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.04 x 10-8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 327.2642008463542, "t": 169.33366902669272, "r": 390.6875, "b": 182.0655314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.65 \u00d7 10-12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 169.75806681315103, "r": 473.1377766927083, "b": 182.914306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "36606:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 154.75283813476562, "t": 196.91935221354166, "r": 164.90056355794272, "b": 210.07560221354166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "B", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.5118408203125, "t": 195.2217814127604, "r": 295.1297200520833, "b": 208.3780314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "3.21 \u00d7 10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 196.49495442708334, "r": 388.1505533854167, "b": 207.1048380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.25 5\u00d710-6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 196.070556640625, "r": 473.1377766927083, "b": 209.65120442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "2568:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 153.90719604492188, "t": 222.383056640625, "r": 165.74620564778647, "b": 237.23689778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "C", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 236.7802937825521, "t": 222.383056640625, "r": 293.86126708984375, "b": 234.6905314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.96 K10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 222.80745442708334, "r": 387.7277425130208, "b": 233.4173380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.35 \u00d7 10-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 454.1107991536458, "t": 222.383056640625, "r": 473.1377766927083, "b": 235.96370442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "X:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 154.75283813476562, "t": 248.695556640625, "r": 164.90056355794272, "b": 262.7006022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 237.203125, "t": 248.27117919921875, "r": 293.86126708984375, "b": 260.15423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4.61 x 10-1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 247.8467814127604, "r": 388.1505533854167, "b": 261.00303141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.57 \u00d710-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.0369059244792, "t": 247.8467814127604, "r": 473.5605875651042, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "29:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 154.75283813476562, "t": 274.58367919921875, "r": 164.90056355794272, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 238.8944091796875, "t": 274.58367919921875, "r": 291.7471516927083, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.99 \u00d7 101", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.9152425130208, "t": 274.58367919921875, "r": 385.6136067708333, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "6.12 \u00d7 100", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.3792317708333, "t": 274.15928141276044, "r": 473.1377766927083, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "3:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 6, "num_cols": 4, "orientation": "rot_0", "grid": [[{"bbox": {"l": 155.1756591796875, "t": 136.65524291992188, "r": 209.296875, "b": 151.08467610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 230.86079915364584, "t": 130.71371459960938, "r": 299.3579508463542, "b": 155.75302124023438, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Surface area in m2", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 337.41192626953125, "t": 129.86491902669272, "r": 379.2712809244792, "b": 156.60181681315103, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Volume in m3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 410.9829508463542, "t": 130.28931681315103, "r": 492.5875651041667, "b": 156.17741902669272, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "Surface area to volume ratio", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 153.90719604492188, "t": 170.18246459960938, "r": 165.74620564778647, "b": 184.61189778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "A", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.93465169270834, "t": 169.33366902669272, "r": 294.7069091796875, "b": 182.48992919921875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.04 x 10-8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 327.2642008463542, "t": 169.33366902669272, "r": 390.6875, "b": 182.0655314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.65 \u00d7 10-12", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 169.75806681315103, "r": 473.1377766927083, "b": 182.914306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "36606:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 154.75283813476562, "t": 196.91935221354166, "r": 164.90056355794272, "b": 210.07560221354166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "B", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 235.5118408203125, "t": 195.2217814127604, "r": 295.1297200520833, "b": 208.3780314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "3.21 \u00d7 10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 196.49495442708334, "r": 388.1505533854167, "b": 207.1048380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.25 5\u00d710-6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 437.1979166666667, "t": 196.070556640625, "r": 473.1377766927083, "b": 209.65120442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "2568:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 153.90719604492188, "t": 222.383056640625, "r": 165.74620564778647, "b": 237.23689778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "C", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 236.7802937825521, "t": 222.383056640625, "r": 293.86126708984375, "b": 234.6905314127604, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.96 K10-3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 222.80745442708334, "r": 387.7277425130208, "b": 233.4173380533854, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.35 \u00d7 10-4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 454.1107991536458, "t": 222.383056640625, "r": 473.1377766927083, "b": 235.96370442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "X:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 154.75283813476562, "t": 248.695556640625, "r": 164.90056355794272, "b": 262.7006022135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 237.203125, "t": 248.27117919921875, "r": 293.86126708984375, "b": 260.15423583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4.61 x 10-1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.06960042317706, "t": 247.8467814127604, "r": 388.1505533854167, "b": 261.00303141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1.57 \u00d710-2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.0369059244792, "t": 247.8467814127604, "r": 473.5605875651042, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "29:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 154.75283813476562, "t": 274.58367919921875, "r": 164.90056355794272, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 238.8944091796875, "t": 274.58367919921875, "r": 291.7471516927083, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.99 \u00d7 101", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.9152425130208, "t": 274.58367919921875, "r": 385.6136067708333, "b": 287.31553141276044, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "6.12 \u00d7 100", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 455.3792317708333, "t": 274.15928141276044, "r": 473.1377766927083, "b": 288.164306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "3:1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 28, "bbox": {"l": 220.48773193359375, "t": 431.4338684082031, "r": 427.6959228515625, "b": 337.92022705078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 328.10984293619794, "t": 419.3024088541667, "r": 414.788330078125, "b": 445.1905110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Metabolic rate in arbitrary units", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 226.20975748697916, "t": 424.3951822916667, "r": 279.4853108723958, "b": 439.6733805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 226.20975748697916, "t": 459.195556640625, "r": 236.7802937825521, "b": 471.5030110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 457.4980061848958, "r": 382.2310384114583, "b": 471.9274088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "890", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 226.20975748697916, "t": 484.6592610677083, "r": 236.35748291015625, "b": 498.2399088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 483.8105061848958, "r": 382.6538899739583, "b": 498.664306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "75", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 3, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 226.20975748697916, "t": 424.3951822916667, "r": 279.4853108723958, "b": 439.6733805338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Organism", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 328.10984293619794, "t": 419.3024088541667, "r": 414.788330078125, "b": 445.1905110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Metabolic rate in arbitrary units", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 226.20975748697916, "t": 459.195556640625, "r": 236.7802937825521, "b": 471.5030110677083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "D", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 457.4980061848958, "r": 382.2310384114583, "b": 471.9274088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "890", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 226.20975748697916, "t": 484.6592610677083, "r": 236.35748291015625, "b": 498.2399088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "E", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 483.8105061848958, "r": 382.6538899739583, "b": 498.664306640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "75", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p29.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p29.json new file mode 100644 index 0000000..487d64a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p29.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 49.89299011230469, "t": 772.3191782633463, "r": 101.47727457682292, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 49.89299011230469, "t": 772.3191782633463, "r": 101.47727457682292, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 487.9365234375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Organisms D and E both keep a constant body temperature (warm-blooded).", "text": "Organisms D and E both keep a constant body temperature (warm-blooded).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 115.007568359375, "t": 732.0016377766927, "r": 512.8830159505209, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Explain why the metabolic rate of organism D is greater than the metabolic rate of organismE.", "text": "Explain why the metabolic rate of organism D is greater than the metabolic rate of organismE.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 114.16192626953125, "t": 694.6548563639323, "r": 323.88161214192706, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Use informationfromTable6 and Table 7.", "text": "Use informationfromTable6 and Table 7.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 484.1311442057292, "t": 681.4986063639323, "r": 535.2926025390625, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 187.73295084635416, "t": 399.70021565755206, "r": 390.6875, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question6continuesonthenextpage", "text": "Question6continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.18406168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 29, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 47.5270881652832, "t": 774.5544281005859, "r": 104.35311889648438, "b": 758.357048034668, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 49.25188446044922, "t": 53.1590576171875, "r": 104.30789947509766, "b": 17.57330322265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p3.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p3.json new file mode 100644 index 0000000..301fcb8 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p3.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/22"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.015625, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 179.6993408203125, "t": 775.7143351236979, "r": 397.45263671875, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.62452697753906, "t": 738.7919616699219, "r": 79.4905293782552, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 737.9431660970052, "r": 317.53928629557294, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "This question is about cells and transport.", "text": "This question is about cells and transport.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 698.0500183105469, "r": 101.9000956217448, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 696.3524373372396, "r": 206.33711751302084, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Complete Table 1.", "text": "Complete Table 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.1311442057292, "t": 683.6205851236979, "r": 536.5610758463541, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 303.58616129557294, "t": 658.1568806966146, "r": 345.022705078125, "b": 645.0006306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 152.21590169270834, "t": 623.7808634440104, "r": 243.12261962890625, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Name of cell part", "text": "Name of cell part", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 354.7476399739583, "t": 624.6296590169271, "r": 462.1444091796875, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Function of cell part", "text": "Function of cell part", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 337.83473714192706, "t": 573.277852376302, "r": 477.788818359375, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Contains genetic information", "text": "Contains genetic information", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 164.47774251302084, "t": 502.8282470703125, "r": 229.16949462890625, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Mitochondria", "text": "Mitochondria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 294.28407796223956, "t": 436.62261962890625, "r": 522.1850992838541, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Controls the movement of substances into and out of the cell", "text": "Controls the movement of substances into and out of the cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 338.16294352213544, "r": 270.1832275390625, "b": 324.15789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Cells in potatoes are plant cells.", "text": "Cells in potatoes are plant cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 312.6991984049479, "r": 334.0293375651042, "b": 299.5429484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Cells in potatoes do not contain chloroplasts.", "text": "Cells in potatoes do not contain chloroplasts.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.201700846354164, "t": 275.7768351236979, "r": 103.16855875651042, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 273.65484619140625, "r": 292.59279378255206, "b": 259.22540283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "What is the function of chloroplasts?", "text": "What is the function of chloroplasts?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.0506591796875, "t": 260.0741984049479, "r": 536.1382242838541, "b": 245.64479573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 46.93323771158854, "t": 158.21938069661462, "r": 102.32291666666667, "b": 140.81915283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 155.67299397786462, "r": 475.2518717447917, "b": 140.81915283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Name one type of cell in a potato plant that does not contain chloroplasts.", "text": "Name one type of cell in a potato plant that does not contain chloroplasts.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 489.6278483072917, "t": 142.09234619140625, "r": 535.7154134114584, "b": 127.66290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 90.74053955078125, "r": 390.6875, "b": 77.58428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Question 1 continueson the nextpage", "text": "Question 1 continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 49.12738800048828, "t": 53.19232177734375, "r": 104.33588409423828, "b": 17.3953857421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p30.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p30.json new file mode 100644 index 0000000..f55229c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p30.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 103.16855875651042, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.5", "text": "06.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 468.9095458984375, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Organism D and organism E both have alveoli in the lungs and villi in the smallintestine.", "text": "Organism D and organism E both have alveoli in the lungs and villi in the smallintestine.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 115.007568359375, "t": 732.8504231770834, "r": 328.10984293619794, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Figure8showssomealveoliandsomevilli.", "text": "Figure8showssomealveoliandsomevilli.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 30, "bbox": {"l": 268.06911214192706, "t": 694.6548563639323, "r": 314.15671793619794, "b": 679.801025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 234.24336751302084, "t": 496.46230061848956, "r": 272.72015380859375, "b": 483.30605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Alveoli", "text": "Alveoli", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 397.8754475911458, "t": 496.03794352213544, "r": 420.2850341796875, "b": 483.30605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Villi", "text": "Villi", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 115.007568359375, "t": 429.83229573567706, "r": 468.0639241536458, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Describe how the alveoli and the villi are adapted to increase absorption.", "text": "Describe how the alveoli and the villi are adapted to increase absorption.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 484.553955078125, "t": 417.10044352213544, "r": 535.7154134114584, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 553.0511067708334, "t": 139.97035725911462, "r": 567.4270833333334, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 66.38304646809895, "t": 24.53489176432288, "r": 72.30255635579427, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 77.79924011230469, "t": 24.95928955078125, "r": 84.56439208984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 182.57284545898438, "t": 660.1277008056641, "r": 323.5049743652344, "b": 512.7030639648438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 349.4798278808594, "t": 668.1431274414062, "r": 466.3904113769531, "b": 502.2280578613281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 49.17033386230469, "t": 53.19232177734375, "r": 104.32601928710938, "b": 17.66766357421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p31.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p31.json new file mode 100644 index 0000000..fc10225 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p31.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 207.1827596028646, "t": 775.2899424235026, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Turnover for thenext question", "text": "Turnover for thenext question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 31, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 38.6482048034668, "t": 789.2455253601074, "r": 541.27734375, "b": 71.17132568359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 48.9473762512207, "t": 53.15509033203125, "r": 104.62229919433594, "b": 17.2017822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p32.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p32.json new file mode 100644 index 0000000..bcf8df3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p32.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/tables/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 80.33617146809895, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 49.47016906738281, "t": 732.8504231770834, "r": 101.47727457682292, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 368.2779134114583, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Human immunodeficiency virus (Hiv) is a pathogen.", "text": "Human immunodeficiency virus (Hiv) is a pathogen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.16192626953125, "t": 731.152842203776, "r": 437.6207275390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Give one way HiV can spread from one person to another person.", "text": "Give one way HiV can spread from one person to another person.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.16192626953125, "t": 600.863525390625, "r": 468.4867350260417, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "Table 8 shows information about new cases of HIV diagnosed in the UK.", "text": "Table 8 shows information about new cases of HIV diagnosed in the UK.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 304.4318033854167, "t": 572.8534545898438, "r": 345.445556640625, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Table8", "text": "Table8", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.201700846354164, "t": 363.20225016276044, "r": 422.8219401041667, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "07]. 2 Describe the trends shown in Table 8 between 2010 and 2018.", "text": "07]. 2 Describe the trends shown in Table 8 between 2010 and 2018.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 47.77887980143229, "t": 192.17100016276038, "r": 102.32291666666667, "b": 174.77077229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 64.26893615722656, "t": 27.08127848307288, "r": 86.67849731445312, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 114.58474731445312, "t": 175.19517008463538, "r": 191.9611612955729, "b": 163.73651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "2014 and 2018.", "text": "2014 and 2018.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 484.976806640625, "t": 346.65081787109375, "r": 535.7154134114584, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.4734700520833, "t": 162.88771565755212, "r": 535.7154134114584, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.0506591796875, "t": 718.8453877766927, "r": 536.1382242838541, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 49.06572341918945, "t": 53.1595458984375, "r": 104.2694320678711, "b": 17.48858642578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 32, "bbox": {"l": 159.49160766601562, "t": 547.3089294433594, "r": 489.53790283203125, "b": 400.7843017578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 250.7334187825521, "t": 297.0766194661458, "r": 353.4791666666667, "b": 321.2671305338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "NumberofnewHiv casesinwomen", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 375.0430908203125, "t": 297.0766194661458, "r": 478.2116292317708, "b": 322.5403238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "NumberofnewHiv cases in men", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 303.0181477864583, "r": 191.5383504231771, "b": 317.87196858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Year", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 329.7550455729167, "r": 191.9611612955729, "b": 343.335693359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2010", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 329.3306477864583, "r": 313.73388671875, "b": 343.7600911458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "376", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 330.179443359375, "r": 440.5804850260417, "b": 342.4868977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2266", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 353.0967610677083, "r": 191.9611612955729, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2012", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 352.67236328125, "r": 312.46543375651044, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "361", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.0970458984375, "t": 352.67236328125, "r": 440.5804850260417, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2310", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 376.8629150390625, "r": 191.9611612955729, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2014", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 376.0141194661458, "r": 313.3110758463542, "b": 390.4435628255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "397", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 376.8629150390625, "r": 440.1576741536458, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2370", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.47774251302084, "t": 399.3558349609375, "r": 192.38399251302084, "b": 412.9364827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2016", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 399.3558349609375, "r": 313.3110758463542, "b": 413.7852783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "298", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.9427083333333, "t": 400.2046305338542, "r": 440.1576741536458, "b": 412.5120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1886", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 164.05492146809897, "t": 422.273193359375, "r": 192.38399251302084, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2018", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 421.4243977864583, "r": 312.88824462890625, "b": 437.5514322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "242", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 422.6975911458333, "r": 440.5804850260417, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1288", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 6, "num_cols": 3, "orientation": "rot_0", "grid": [[{"bbox": {"l": 164.47774251302084, "t": 303.0181477864583, "r": 191.5383504231771, "b": 317.87196858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Year", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 250.7334187825521, "t": 297.0766194661458, "r": 353.4791666666667, "b": 321.2671305338542, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "NumberofnewHiv casesinwomen", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 375.0430908203125, "t": 297.0766194661458, "r": 478.2116292317708, "b": 322.5403238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "NumberofnewHiv cases in men", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 329.7550455729167, "r": 191.9611612955729, "b": 343.335693359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2010", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 329.3306477864583, "r": 313.73388671875, "b": 343.7600911458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "376", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 330.179443359375, "r": 440.5804850260417, "b": 342.4868977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2266", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 353.0967610677083, "r": 191.9611612955729, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2012", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 352.67236328125, "r": 312.46543375651044, "b": 367.101806640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "361", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.0970458984375, "t": 352.67236328125, "r": 440.5804850260417, "b": 366.6774088541667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2310", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 376.8629150390625, "r": 191.9611612955729, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2014", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 290.90150960286456, "t": 376.0141194661458, "r": 313.3110758463542, "b": 390.4435628255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "397", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 376.8629150390625, "r": 440.1576741536458, "b": 389.1703694661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "2370", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.47774251302084, "t": 399.3558349609375, "r": 192.38399251302084, "b": 412.9364827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2016", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 399.3558349609375, "r": 313.3110758463542, "b": 413.7852783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "298", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.9427083333333, "t": 400.2046305338542, "r": 440.1576741536458, "b": 412.5120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1886", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 164.05492146809897, "t": 422.273193359375, "r": 192.38399251302084, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2018", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 291.32432047526044, "t": 421.4243977864583, "r": 312.88824462890625, "b": 437.5514322916667, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "242", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 413.5198567708333, "t": 422.6975911458333, "r": 440.5804850260417, "b": 436.2782389322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "1288", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p33.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p33.json new file mode 100644 index 0000000..939d801 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p33.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/12"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 33, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.4", "text": "07.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 534.4469401041666, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Calculate the ratio of new cases of HIV in women to new cases of HIV in men in 2018.", "text": "Calculate the ratio of new cases of HIV in women to new cases of HIV in men in 2018.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 115.43039957682292, "t": 746.85546875, "r": 312.0426025390625, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Giveyouranswerto3significant figures.", "text": "Giveyouranswerto3significant figures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 484.1311442057292, "t": 734.5480041503906, "r": 536.1382242838541, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 241.0085245768229, "t": 553.331278483073, "r": 383.49951171875, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Ratio (3 significant figures)=", "text": "Ratio (3 significant figures)=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 48.62452697753906, "t": 474.81817626953125, "r": 101.9000956217448, "b": 459.53993733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.5", "text": "07.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 113.73910522460938, "t": 474.39377848307294, "r": 504.0037841796875, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "In the UK population the total number of women is greater than the total number of men.", "text": "In the UK population the total number of women is greater than the total number of men.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 113.3162841796875, "t": 436.62261962890625, "r": 514.9971516927084, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "The data in Table 8 is used to compare the proportions of new cases of HlV in the population for men and women.", "text": "The data in Table 8 is used to compare the proportions of new cases of HlV in the population for men and women.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 114.58474731445312, "t": 399.70021565755206, "r": 528.5274658203125, "b": 373.81211344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Suggest how the data could be presented differently so that a more valid comparison can be made.", "text": "Suggest how the data could be presented differently so that a more valid comparison can be made.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 490.0506591796875, "t": 373.38771565755206, "r": 535.7154134114584, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 187.73295084635416, "t": 219.33229573567712, "r": 390.6875, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question7continuesonthenextpage", "text": "Question7continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 479.0572916666667, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 33, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 64.26893615722656, "t": 26.65688069661462, "r": 86.25567626953125, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 33, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 33, "bbox": {"l": 49.204193115234375, "t": 53.1688232421875, "r": 104.37303924560547, "b": 17.4703369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"33": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 33}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p34.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p34.json new file mode 100644 index 0000000..89f9ae6 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p34.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 34, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 478.6344401041667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Scientists have been working to produce a vaccine for Hiv for many years.", "text": "Scientists have been working to produce a vaccine for Hiv for many years.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 48.201700846354164, "t": 735.8211873372396, "r": 102.32291666666667, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.6", "text": "07.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 471.023681640625, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Explain how a vaccine for HiV could work to prevent a person developing HIV infection.", "text": "Explain how a vaccine for HiV could work to prevent a person developing HIV infection.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 483.7083333333333, "t": 706.5379231770834, "r": 536.5610758463541, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.58474731445312, "t": 422.61757405598956, "r": 350.0965983072917, "b": 410.31011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "A person with late stage HIV infection has AlDS.", "text": "A person with late stage HIV infection has AlDS.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 115.007568359375, "t": 397.15386962890625, "r": 391.1103108723958, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Scientists have produced monoclonal antibodies for Hiv.", "text": "Scientists have produced monoclonal antibodies for Hiv.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 114.16192626953125, "t": 384.42197672526044, "r": 525.5677083333334, "b": 372.11452229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "The monoclonal antibodies can prevent a person infected with HIV developing AiDS.", "text": "The monoclonal antibodies can prevent a person infected with HIV developing AiDS.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 48.201700846354164, "t": 347.07521565755206, "r": 105.70548502604167, "b": 331.37261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "220", "text": "220", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 112.47064208984375, "t": 345.80202229817706, "r": 429.5871175130208, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Describe how the monoclonal antibody for HiV can be produced.", "text": "Describe how the monoclonal antibody for HiV can be produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 484.1311442057292, "t": 333.07017008463544, "r": 536.1382242838541, "b": 317.3675740559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 34, "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 34, "bbox": {"l": 49.161170959472656, "t": 53.15081787109375, "r": 104.27032470703125, "b": 17.639404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"34": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 34}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p35.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p35.json new file mode 100644 index 0000000..eb96b28 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p35.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.8", "text": "07.8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 338.6803792317708, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Figure 9 shows how HIV enters a human cell.", "text": "Figure 9 shows how HIV enters a human cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 35, "bbox": {"l": 302.3177083333333, "t": 734.1236063639323, "r": 347.5596516927083, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 147.56486002604166, "t": 690.8353068033854, "r": 163.6321004231771, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "HIV", "text": "HIV", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 230.86079915364584, "t": 690.4109090169271, "r": 290.4786783854167, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "HIV antigen", "text": "HIV antigen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 367.0094401041667, "t": 690.4109090169271, "r": 469.3323567708333, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "HIV genetic material", "text": "HIV genetic material", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 85.4100341796875, "t": 541.8725992838542, "r": 142.06817626953125, "b": 530.4139404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Human cell", "text": "Human cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 202.10888671875, "t": 545.692159016927, "r": 318.80775960286456, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "HIVantigenbindingsite", "text": "HIVantigenbindingsite", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 113.3162841796875, "t": 475.66697184244794, "r": 529.7958984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Suggest how the monoclonal antibody for HiV helps to prevent a person infected with HIV developing AIDS.", "text": "Suggest how the monoclonal antibody for HiV helps to prevent a person infected with HIV developing AIDS.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 114.16192626953125, "t": 432.37864176432294, "r": 265.5321858723958, "b": 419.64678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Use information from Figure 9.", "text": "Use information from Figure 9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 484.553955078125, "t": 419.64678955078125, "r": 535.2926025390625, "b": 406.49053955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 35, "bbox": {"l": 231.28361002604166, "t": 163.31211344401038, "r": 346.7139892578125, "b": 152.27781168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 551.3598225911459, "t": 284.68914794921875, "r": 566.1586100260416, "b": 272.38165283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 35, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.4403076171875, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 39.10532760620117, "t": 789.2540054321289, "r": 539.6693115234375, "b": 76.10986328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 49.07066345214844, "t": 53.27899169921875, "r": 104.23448944091797, "b": 17.56280517578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"35": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 35}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p36.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p36.json new file mode 100644 index 0000000..408fcb3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p36.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 64.69175720214844, "t": 26.65688069661462, "r": 85.83285522460938, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 36, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 48.913848876953125, "t": 53.150634765625, "r": 104.60427856445312, "b": 16.85711669921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"36": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 36}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p37.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p37.json new file mode 100644 index 0000000..7cf0608 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p37.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 37, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "37", "text": "37", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 66.38304646809895, "t": 24.95928955078125, "r": 71.87973531087239, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 37, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 37, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 37, "bbox": {"l": 49.14103317260742, "t": 53.27081298828125, "r": 104.3841552734375, "b": 17.4703369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"37": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 37}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p38.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p38.json new file mode 100644 index 0000000..cec7f22 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p38.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 38, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "38", "text": "38", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 38, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 65.96022542317708, "t": 25.38368733723962, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 38, "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 38, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 38, "bbox": {"l": 49.104557037353516, "t": 53.3353271484375, "r": 104.38912200927734, "b": 17.3426513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"38": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 38}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p39.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p39.json new file mode 100644 index 0000000..3df6bc9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p39.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 39, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 39, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 55.8125, "t": 764.6800638834635, "r": 93.86647542317708, "b": 753.2213948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 244.81392415364584, "t": 765.9532470703125, "r": 383.9223225911458, "b": 754.0701802571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Additionalpage,ifrequired.", "text": "Additionalpage,ifrequired.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 55.389678955078125, "t": 753.6457926432291, "r": 88.36979166666667, "b": 743.4603068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 184.773193359375, "t": 754.4945780436198, "r": 442.2717692057292, "b": 741.3383280436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 65.96022542317708, "t": 25.38368733723962, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 39, "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.4100341796875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 39, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 39, "bbox": {"l": 49.1429557800293, "t": 53.29705810546875, "r": 104.4314193725586, "b": 17.40765380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"39": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 39}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p4.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p4.json new file mode 100644 index 0000000..996de78 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p4.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/groups/7"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 773.16796875, "r": 471.023681640625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "A student investigated the effect of salt concentration on pieces of potato.", "text": "A student investigated the effect of salt concentration on pieces of potato.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 234.66617838541666, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 722.6649373372396, "r": 339.10321044921875, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "1. Cut three pieces of potato of the same size.", "text": "Cut three pieces of potato of the same size.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 697.2012329101562, "r": 314.15671793619794, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "2. Record the mass of each potato piece.", "text": "Record the mass of each potato piece.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 671.7375183105469, "r": 383.9223225911458, "b": 659.8544514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "3.Add 150cm?of 0.4mol/dm3salt solution to abeaker.", "text": "3.Add 150cm?of 0.4mol/dm3salt solution to abeaker.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 647.5469970703125, "r": 322.6131591796875, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "4. Place each potato piece into the beaker.", "text": "Place each potato piece into the beaker.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "4."}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 621.6588948567709, "r": 531.0643717447916, "b": 607.2294514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "5. After 30 minutes, remove each potato piece and dry the surface with a paper towel.", "text": "After 30 minutes, remove each potato piece and dry the surface with a paper towel.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "5."}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 596.6195882161459, "r": 314.57952880859375, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "6. Record the mass of each potato piece.", "text": "Record the mass of each potato piece.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "6."}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 571.1558634440105, "r": 444.8087158203125, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "7. Repeat steps 1 to 6 using different concentrations of salt solution.", "text": "Repeat steps 1 to 6 using different concentrations of salt solution.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "7."}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 495.18914794921875, "r": 102.32291666666667, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 492.64276123046875, "r": 375.8887125651042, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "What is the independent variable in the investigation?", "text": "What is the independent variable in the investigation?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.0506591796875, "t": 479.48651123046875, "r": 536.1382242838541, "b": 465.05706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.3162841796875, "t": 467.17905680338544, "r": 201.26324462890625, "b": 451.90081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 115.8532206217448, "t": 427.71030680338544, "r": 256.65293375651044, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Concentrationofsaltsolution", "text": "Concentrationofsaltsolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 391.63669840494794, "r": 216.90767415364584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Mass of potato piece", "text": "Mass of potato piece", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 355.13873291015625, "r": 275.25710042317706, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Time potato is left in salt solution", "text": "Time potato is left in salt solution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 318.21636962890625, "r": 226.20975748697916, "b": 304.6357218424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Volume of salt solution", "text": "Volume of salt solution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 230.36655680338538, "r": 102.32291666666667, "b": 214.66392008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.3162841796875, "t": 227.82017008463538, "r": 482.0170491536458, "b": 201.08327229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Why did the student dry the surface of each potato piece with a paper towel in step 5?", "text": "Why did the student dry the surface of each potato piece with a paper towel in step 5?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.0506591796875, "t": 203.62965901692712, "r": 535.7154134114584, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 49.179264068603516, "t": 53.1982421875, "r": 104.26579284667969, "b": 17.73736572265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p40.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p40.json new file mode 100644 index 0000000..2cd635d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p40.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 40, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 40, "bbox": {"l": 54.12121073404948, "t": 162.88771565755212, "r": 133.61173502604166, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 52.852742513020836, "t": 144.63873291015625, "r": 521.7622884114584, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 222]}], "orig": "For confidentiality purposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentiality purposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 53.27556864420573, "t": 107.71636962890625, "r": 460.453125, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 53.6983896891276, "t": 90.74053955078125, "r": 241.43133544921875, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "text": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 66.38304646809895, "t": 24.11049397786462, "r": 72.30255635579427, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 40, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 189.42423502604166, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 366.5866292317708, "t": 40.66192626953125, "r": 509.5004475911458, "b": 30.90085856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "226G8461/1H", "text": "226G8461/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 40, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 40, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 40, "bbox": {"l": 49.0760498046875, "t": 53.3773193359375, "r": 104.37796020507812, "b": 17.49005126953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 40, "bbox": {"l": 350.3396301269531, "t": 67.80126953125, "r": 528.1468505859375, "b": 32.028076171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"40": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 40}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p5.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p5.json new file mode 100644 index 0000000..d0c8a74 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p5.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/12"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 776.1387329101562, "r": 486.6680908203125, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "The student calculated the percentage change in mass of each potato piece.", "text": "The student calculated the percentage change in mass of each potato piece.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 724.3625183105469, "r": 102.74573771158855, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.6", "text": "01.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 722.2405497233073, "r": 219.8674112955729, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "For one potato piece:", "text": "For one potato piece:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 703.1427612304688, "r": 260.8811442057292, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "\u00b7 the starting mass was 2.5 g", "text": "the starting mass was 2.5 g", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 684.4693806966146, "r": 246.0823771158854, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7 the end mass was 2.7 g.", "text": "the end mass was 2.7 g.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 645.4250284830729, "r": 418.59375, "b": 632.2687784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Calculate the percentage increase in mass of the potato piece.", "text": "Calculate the percentage increase in mass of the potato piece.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.976806640625, "t": 632.2687784830729, "r": 535.7154134114584, "b": 619.1125284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 619.5369262695312, "r": 201.26324462890625, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Use the equation:", "text": "Use the equation:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 154.33001708984375, "t": 595.3463948567709, "r": 427.0501708984375, "b": 567.3363037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "increase in mass percentage increase in mass : \u00d7100 starting mass", "text": "increase in mass percentage increase in mass : \u00d7100 starting mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 208.45123291015625, "t": 426.86151123046875, "r": 518.8025309244791, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Percentage increase in mass : %", "text": "Percentage increase in mass : %", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.73295084635416, "t": 375.50970458984375, "r": 390.6875, "b": 362.35345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question1continueson thenextpage", "text": "Question1continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 49.12112808227539, "t": 53.14373779296875, "r": 104.327880859375, "b": 17.5670166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p6.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p6.json new file mode 100644 index 0000000..8ff5684 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p6.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/groups/0"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.62452697753906, "t": 448.50567626953125, "r": 104.01420084635417, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.7", "text": "01.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 77.79924011230469, "t": 24.95928955078125, "r": 84.56439208984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 775.7143351236979, "r": 534.8697916666666, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 122]}], "orig": "The student used the results from each potato piece to calculate the mean percentage change in mass at each concentration.", "text": "The student used the results from each potato piece to calculate the mean percentage change in mass at each concentration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 736.2455851236979, "r": 243.54545084635416, "b": 724.3625183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Table2showstheresults.", "text": "Table2showstheresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 446.80808512369794, "r": 212.25663248697916, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Complete Figure 1.", "text": "Complete Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 420.07118733723956, "r": 174.6254679361979, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "You should:", "text": "You should:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 401.39780680338544, "r": 200.4176025390625, "b": 387.39276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "\u00b7 label the x-axis", "text": "label the x-axis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 116.69886271158855, "t": 381.45123291015625, "r": 289.63303629557294, "b": 368.71938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "useasuitablescalefor thex-axis", "text": "useasuitablescalefor thex-axis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 118.39014689127605, "t": 361.50465901692706, "r": 254.538818359375, "b": 349.19720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "plot the data from Table 2", "text": "plot the data from Table 2", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 6, "bbox": {"l": 117.5445048014323, "t": 341.55808512369794, "r": 229.59232584635416, "b": 330.09942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "drawa line ofbest fit.", "text": "drawa line ofbest fit.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 304.85463460286456, "t": 708.2355041503906, "r": 345.022705078125, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.553955078125, "t": 328.82623291015625, "r": 535.7154134114584, "b": 315.66998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 45.735694885253906, "t": 448.7847595214844, "r": 105.40312194824219, "b": 432.12158203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 49.06983947753906, "t": 53.17987060546875, "r": 104.2056884765625, "b": 17.67327880859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 6, "bbox": {"l": 212.70263671875, "t": 682.6695251464844, "r": 435.9120178222656, "b": 498.4666748046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/12"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 216.4848429361979, "t": 161.2701619466146, "r": 307.81439208984375, "b": 197.76814778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Concentration of salt solution in mol/dm3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 166.78730265299478, "r": 430.0099283854167, "b": 193.09979248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mean percentage (%) change in mass", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 206.6804402669271, "r": 236.35748291015625, "b": 219.8366902669271, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 205.8316446940104, "r": 386.4592692057292, "b": 220.68548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 235.539306640625, "r": 235.93465169270834, "b": 248.695556640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 235.539306640625, "r": 386.0364583333333, "b": 249.11995442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 264.8225911458333, "r": 236.35748291015625, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 264.8225911458333, "r": 386.0364583333333, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 293.68145751953125, "r": 236.35748291015625, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 293.68145751953125, "r": 385.6136067708333, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.33048502604166, "t": 322.5403238932292, "r": 236.35748291015625, "b": 335.6965738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 322.1159261067708, "r": 386.0364583333333, "b": 336.1209716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "-1.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 6, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 216.4848429361979, "t": 161.2701619466146, "r": 307.81439208984375, "b": 197.76814778645834, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Concentration of salt solution in mol/dm3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 166.78730265299478, "r": 430.0099283854167, "b": 193.09979248046875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mean percentage (%) change in mass", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 206.6804402669271, "r": 236.35748291015625, "b": 219.8366902669271, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 366.5866292317708, "t": 205.8316446940104, "r": 386.4592692057292, "b": 220.68548583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 235.539306640625, "r": 235.93465169270834, "b": 248.695556640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 235.539306640625, "r": 386.0364583333333, "b": 249.11995442708334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "9.5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 264.8225911458333, "r": 236.35748291015625, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 264.8225911458333, "r": 386.0364583333333, "b": 277.9788411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.0", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 293.68145751953125, "r": 236.35748291015625, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 367.0094401041667, "t": 293.68145751953125, "r": 385.6136067708333, "b": 306.83770751953125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.33048502604166, "t": 322.5403238932292, "r": 236.35748291015625, "b": 335.6965738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "0.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 360.2443033854167, "t": 322.1159261067708, "r": 386.0364583333333, "b": 336.1209716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "-1.4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p7.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p7.json new file mode 100644 index 0000000..5250b4d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p7.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 282.86789957682294, "t": 172.64882405598962, "r": 361.9355875651042, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Concentration=", "text": "Concentration=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 173.07322184244788, "r": 528.1046142578125, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mol/dm3", "text": "mol/dm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 7, "bbox": {"l": 303.16335042317706, "t": 775.2899424235026, "r": 346.7139892578125, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 106.12831624348958, "t": 724.7869160970052, "r": 130.22916666666666, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10.0", "text": "10.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.04782104492188, "t": 695.503651936849, "r": 130.22916666666666, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "9.0", "text": "9.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 667.91796875, "r": 131.0748087565104, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "8.0", "text": "8.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 639.4834798177084, "r": 130.65198771158853, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "7.0", "text": "7.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 611.0490112304688, "r": 130.65198771158853, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "6.0", "text": "6.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 583.0389404296875, "r": 131.0748087565104, "b": 569.8826904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "5.0-", "text": "5.0-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.04734802246094, "t": 573.277852376302, "r": 78.22206115722656, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Mean", "text": "Mean", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.04734802246094, "t": 560.9703776041667, "r": 106.97395833333333, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "percentage", "text": "percentage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 110.77935791015625, "t": 554.1800537109375, "r": 129.80634562174478, "b": 542.7213948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "4.0", "text": "4.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.47016906738281, "t": 549.0873209635417, "r": 107.81960042317708, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "(%) change", "text": "(%) change", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.62452697753906, "t": 536.35546875, "r": 88.79261271158855, "b": 523.6236165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "inmass", "text": "inmass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 525.3211873372395, "r": 130.65198771158853, "b": 513.862528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "3.0", "text": "3.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 111.625, "t": 497.73549397786456, "r": 130.65198771158853, "b": 485.00364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.0", "text": "2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.04782104492188, "t": 468.87664794921875, "r": 129.80634562174478, "b": 456.99355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.0", "text": "1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 112.04782104492188, "t": 440.44215901692706, "r": 130.22916666666666, "b": 428.98350016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.0", "text": "0.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 105.2826639811198, "t": 412.43206787109375, "r": 130.65198771158853, "b": 400.12461344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-1.0", "text": "-1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 104.43702189127605, "t": 383.57322184244794, "r": 130.65198771158853, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "-2.0", "text": "-2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 50.73863728841146, "t": 269.8353068033854, "r": 80.75899251302083, "b": 257.5278523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 268.98651123046875, "r": 466.3726399739583, "b": 240.97642008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "What concentration of salt solution was equal to the concentration of the solution inside the potato pieces?", "text": "What concentration of salt solution was equal to the concentration of the solution inside the potato pieces?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 226.54697672526038, "r": 184.35038248697916, "b": 213.81512451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 1.", "text": "Use Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 490.8962809244792, "t": 213.81512451171875, "r": 535.7154134114584, "b": 200.65887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 282.86789957682294, "t": 172.64882405598962, "r": 361.9355875651042, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Concentration=", "text": "Concentration=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 173.07322184244788, "r": 528.1046142578125, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mol/dm3", "text": "mol/dm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 187.73295084635416, "t": 110.26275634765625, "r": 391.1103108723958, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 1 continues on the next page", "text": "Question 1 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 49.095619201660156, "t": 53.34234619140625, "r": 104.30477142333984, "b": 17.5211181640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 39.5867805480957, "t": 788.3417549133301, "r": 539.7913208007812, "b": 77.27215576171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p8.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p8.json new file mode 100644 index 0000000..28aba9b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p8.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 47.77887980143229, "t": 775.2899424235026, "r": 103.5913798014323, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.9", "text": "01.9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 535.7154134114584, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Explain why the potato pieces in the 0.4 mol/dm3 salt solution decreased in mass. [3 marks]", "text": "Explain why the potato pieces in the 0.4 mol/dm3 salt solution decreased in mass. [3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 550.93701171875, "t": 610.6246134440104, "r": 566.1586100260416, "b": 597.8927612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 49.21787643432617, "t": 53.2222900390625, "r": 104.35285186767578, "b": 17.7176513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p9.json b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p9.json new file mode 100644 index 0000000..8c71c1b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-biology-8461-1h-2022jun/p9.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-biology-8461-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 5922009257371243570, "filename": "aqa-biology-8461-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 80.33617146809895, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 358.1302083333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Plant cells and fungal cells are similar in structure.", "text": "Plant cells and fungal cells are similar in structure.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 747.7042541503906, "r": 256.65293375651044, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 2 shows a fungal cell", "text": "Figure 2 shows a fungal cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 9, "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 314.15671793619794, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.62452697753906, "t": 491.36956787109375, "r": 102.74573771158855, "b": 475.66697184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 489.24761962890625, "r": 520.0710042317709, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "Name one structure in Figure 2 which is present in both plant cells and fungal cells but not in animal cells.", "text": "Name one structure in Figure 2 which is present in both plant cells and fungal cells but not in animal cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.0506591796875, "t": 463.35947672526044, "r": 535.7154134114584, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.201700846354164, "t": 361.92905680338544, "r": 105.2826639811198, "b": 345.80202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 112.47064208984375, "t": 360.23146565755206, "r": 302.7405192057292, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Which disease is caused by a fungus?", "text": "Which disease is caused by a fungus?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.0506591796875, "t": 346.65081787109375, "r": 535.7154134114584, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 333.07017008463544, "r": 200.4176025390625, "b": 318.6407267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (v) one box.", "text": "Tick (v) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 115.007568359375, "t": 294.8746134440104, "r": 174.2026570638021, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Gonorrhoea", "text": "Gonorrhoea", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 258.8010457356771, "r": 152.21590169270834, "b": 244.79600016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Malaria", "text": "Malaria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 220.60544840494788, "r": 157.28976440429688, "b": 208.72239176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Measles", "text": "Measles", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 184.10748291015625, "r": 194.49810791015625, "b": 171.37563069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Rose black spot", "text": "Rose black spot", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 188.15576171875, "t": 121.72141520182288, "r": 391.1103108723958, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 9, "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8461/1H", "text": "IB/M/Jun22/8461/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 49.18645477294922, "t": 53.17108154296875, "r": 104.25172424316406, "b": 17.64910888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 233.9642791748047, "t": 683.4948272705078, "r": 347.205322265625, "b": 554.4544982910156, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/merged.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/merged.json new file mode 100644 index 0000000..05d5581 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/merged.json @@ -0,0 +1 @@ +{"texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 754.4945780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 712.9038492838541, "r": 232.97489420572916, "b": 700.1719970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Please write clearly in block capitals", "text": "Please write clearly in block capitals", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 680.2254231770834, "r": 130.65198771158853, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 680.2254231770834, "r": 403.3721516927083, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 641.1810709635416, "r": 101.9000956217448, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 54.96685282389323, "t": 616.1417643229166, "r": 120.92708333333333, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 588.5560709635416, "r": 155.1756591796875, "b": 577.097391764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Candidatesignature", "text": "Candidatesignature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 166.59184773763022, "t": 574.9754231770833, "r": 309.50567626953125, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Ideclarethisismyownwork.", "text": "Ideclarethisismyownwork.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 551.6336873372395, "r": 185.61883544921875, "b": 493.49155680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "A-level CHEMISTRY", "text": "A-level CHEMISTRY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 40.16808573404948, "t": 479.48651123046875, "r": 328.9554850260417, "b": 461.66192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Paper 1 Inorganic and Physical Chemistry", "text": "Paper 1 Inorganic and Physical Chemistry", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 395.03188069661456, "r": 92.59801228841145, "b": 382.30002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 381.02683512369794, "r": 186.4644775390625, "b": 367.87058512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 367.02178955078125, "r": 368.7007649739583, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "\u00b7 the Periodic Table/Data Booklet, provided as an insert (enclosed)", "text": "the Periodic Table/Data Booklet, provided as an insert (enclosed)", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 353.86553955078125, "r": 231.7064412434896, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "\u00b7a ruler with millimetre measurements", "text": "\u00b7a ruler with millimetre measurements", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 340.28489176432294, "r": 400.835205078125, "b": 327.9774373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "\u00b7 a scientific calculator, which you are expected to use where appropriate.", "text": "a scientific calculator, which you are expected to use where appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 314.39678955078125, "r": 108.24242146809895, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 301.24053955078125, "r": 231.28361002604166, "b": 286.81109619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 288.08428955078125, "r": 238.04876708984375, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 272.8060506184896, "r": 156.866943359375, "b": 261.3473917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7Answer all questions.", "text": "\u00b7Answer all questions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 259.6498006184896, "r": 426.6273600260417, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 119]}], "orig": "\u00b7You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "\u00b7You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 49.47016906738281, "t": 221.87864176432288, "r": 350.9422200520833, "b": 207.44919840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "this book. Write the question number against your answer(s).", "text": "this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 207.44919840494788, "r": 184.773193359375, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "\u00b7All working must be shown.", "text": "\u00b7All working must be shown.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 194.29294840494788, "r": 376.734375, "b": 169.67803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 155.67299397786462, "r": 106.55113728841145, "b": 142.09234619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 140.39475504557288, "r": 282.445068359375, "b": 128.08730061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "\u00b7The marks for questions are shown in brackets.", "text": "\u00b7The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 127.23850504557288, "r": 251.15625, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "\u00b7Themaximum markfor thispaper is105.", "text": "\u00b7Themaximum markfor thispaper is105.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.19507344563802, "t": 25.80808512369788, "r": 211.41097005208334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "JUN227405101", "text": "JUN227405101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 402.1036783854167, "t": 425.58831787109375, "r": 545.0174967447916, "b": 409.88572184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Time allowed: 2 hours", "text": "Time allowed: 2 hours", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 25.80808512369788, "r": 367.0094401041667, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E11", "text": "IB/M/Jun22/E11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 480.7485758463542, "t": 35.56915283203125, "r": 545.4403076171875, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "7405/1", "text": "7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.77225240071615, "t": 27.93007405598962, "r": 79.91335042317708, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 173.35699462890625, "t": 775.7143351236979, "r": 404.2177734375, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 182.6590779622396, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 180.12215169270834, "t": 775.7143351236979, "r": 397.45263671875, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 738.7919616699219, "r": 80.75899251302083, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 736.6699829101562, "r": 271.87451171875, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "This question is about equilibria.", "text": "This question is about equilibria.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 696.3524373372396, "r": 104.43702189127605, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 694.23046875, "r": 379.6941324869792, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Give two features of a reaction in dynamic equilibrium.", "text": "Give two features of a reaction in dynamic equilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 680.2254231770834, "r": 535.7154134114584, "b": 665.7959798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 112.89346313476562, "t": 655.1861165364584, "r": 163.20927937825522, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Feature 1", "text": "Feature 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 603.4098917643229, "r": 164.05492146809897, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Feature 2", "text": "Feature 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 538.4774373372395, "r": 103.5913798014323, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 535.9310709635417, "r": 302.3177083333333, "b": 521.0772298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "A gas-phase reaction is at equilibrium.", "text": "A gas-phase reaction is at equilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 521.926025390625, "r": 422.3991292317708, "b": 508.3453776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "When the pressure is increased the yield of product decreases.", "text": "When the pressure is increased the yield of product decreases.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 496.03794352213544, "r": 483.2854817708333, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "State what can be deduced about the chemical equation for this equilibrium.", "text": "State what can be deduced about the chemical equation for this equilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.0506591796875, "t": 482.45729573567706, "r": 535.2926025390625, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 190.69270833333334, "t": 339.43609619140625, "r": 393.2244059244792, "b": 325.4310506184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 1 continues on the next page", "text": "Question 1 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 3, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 101.9000956217448, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 388.5733642578125, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Carbon monoxide and hydrogen react to form methanol.", "text": "Carbon monoxide and hydrogen react to form methanol.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 4, "bbox": {"l": 245.6595662434896, "t": 748.5530497233073, "r": 403.3721516927083, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "CO(g) + 2H2(g) = CHsOH(g)", "text": "CO(g) + 2H2(g) = CHsOH(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 721.3917541503906, "r": 506.1178792317708, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 172]}], "orig": "0.430 mol of carbon monoxide is mixed with 0.860 mol of hydrogen. At equilibrium, the total pressure in the flask is 250 kPa and the mixture contains 0.110 mol of methanol.", "text": "0.430 mol of carbon monoxide is mixed with 0.860 mol of hydrogen. At equilibrium, the total pressure in the flask is 250 kPa and the mixture contains 0.110 mol of methanol.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.43039957682292, "t": 667.0691731770834, "r": 479.0572916666667, "b": 656.0348917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Calculatetheamount,inmoles,ofcarbonmonoxidepresentatequilibrium.", "text": "Calculatetheamount,inmoles,ofcarbonmonoxidepresentatequilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 642.0298665364584, "r": 526.8361409505209, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "Calculate the partial pressure, in kPa, of carbon monoxide in this equilibrium mixture.", "text": "Calculate the partial pressure, in kPa, of carbon monoxide in this equilibrium mixture.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 483.7083333333333, "t": 616.9905395507812, "r": 535.7154134114584, "b": 602.5611165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 187.31011962890625, "t": 363.62664794921875, "r": 526.413330078125, "b": 325.8554484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Amountofcarbonmonoxide mol Partial pressure kPa", "text": "Amountofcarbonmonoxide mol Partial pressure kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 50.31581115722656, "t": 296.9966023763021, "r": 102.32291666666667, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 294.4502156575521, "r": 446.5, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Give an expression for the equilibrium constant (K,) for this reaction.", "text": "Give an expression for the equilibrium constant (K,) for this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 245.6595662434896, "t": 269.4109090169271, "r": 402.5264892578125, "b": 255.40586344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "CO(g) + 2H2(g) = CH3OH(g)", "text": "CO(g) + 2H2(g) = CH3OH(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.0506591796875, "t": 255.83026123046875, "r": 536.1382242838541, "b": 241.40081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.8532206217448, "t": 214.23952229817712, "r": 123.88683064778645, "b": 206.60040283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "K", "text": "K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.47727457682292, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 524.7220458984375, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "A different mixture of carbon monoxide and hydrogen is left to reach equilibrium at a temperature T.", "text": "A different mixture of carbon monoxide and hydrogen is left to reach equilibrium at a temperature T.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 733.2748209635416, "r": 370.3920491536458, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Some data for this equilibrium are shown in Table 1.", "text": "Some data for this equilibrium are shown in Table 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 5, "bbox": {"l": 304.4318033854167, "t": 707.38671875, "r": 344.5998942057292, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 201.26324462890625, "t": 679.3766377766927, "r": 319.23057047526044, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Partial pressure of CO", "text": "Partial pressure of CO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 378.0028483072917, "t": 679.3766377766927, "r": 421.1306559244792, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "125 kPa", "text": "125 kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 200.8404337565104, "t": 661.9764404296875, "r": 339.5260416666667, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Partialpressure of CHsOH", "text": "Partialpressure of CHsOH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 376.3115234375, "t": 662.4008382161459, "r": 421.976318359375, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "5.45 kPa", "text": "5.45 kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 200.8404337565104, "t": 645.0006306966146, "r": 216.90767415364584, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Kp", "text": "Kp", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 356.4389241536458, "t": 645.0006306966146, "r": 441.8489583333333, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "1.15 x 10-6 kPa-2", "text": "1.15 x 10-6 kPa-2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 5, "bbox": {"l": 248.19649251302084, "t": 617.4149373372396, "r": 401.6808675130208, "b": 602.5611165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "CO(g) + 2H2(g) = CHsOH(g)", "text": "CO(g) + 2H2(g) = CHsOH(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 590.2536417643229, "r": 535.2926025390625, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Calculate the partial pressure, in kPa, of hydrogen in this equilibrium mixture. [3 marks]", "text": "Calculate the partial pressure, in kPa, of hydrogen in this equilibrium mixture. [3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 290.0558675130208, "t": 403.09539794921875, "r": 525.9905192057291, "b": 387.81715901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Partial pressure kPa", "text": "Partial pressure kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 360.23146565755206, "r": 101.054443359375, "b": 346.22642008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.6", "text": "01.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.3162841796875, "t": 358.95827229817706, "r": 525.9905192057291, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Use the Kp value from Table 1 to calculate a value for Kp for the following reaction at temperature T.", "text": "Use the Kp value from Table 1 to calculate a value for Kp for the following reaction at temperature T.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 248.19649251302084, "t": 325.4310506184896, "r": 402.1036783854167, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "CHOH(g) = CO(g) + 2H2(g)", "text": "CHOH(g) = CO(g) + 2H2(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 303.78692626953125, "r": 212.679443359375, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Give the units for Kp", "text": "Give the units for Kp", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.1311442057292, "t": 290.63067626953125, "r": 536.5610758463541, "b": 276.20123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 377.1571858723958, "t": 137.84836832682288, "r": 384.7679850260417, "b": 129.36049397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "K", "text": "K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 360.6671142578125, "t": 114.93105061848962, "r": 388.9962158203125, "b": 101.35040283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Units", "text": "Units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.9833984375, "t": 70.36960856119788, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 553.4739583333334, "t": 118.32623291015625, "r": 567.8498942057291, "b": 106.01877848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 298.93511962890625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Rheniumhasanatomicnumberof75", "text": "Rheniumhasanatomicnumberof75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 50.73863728841146, "t": 730.7284545898438, "r": 88.36979166666667, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 85.83285522460938, "t": 728.1820780436198, "r": 98.51751708984375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 729.8796590169271, "r": 295.55255126953125, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Define the term relative atomic mass.", "text": "Define the term relative atomic mass.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.976806640625, "t": 715.8746236165365, "r": 535.7154134114584, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 6, "bbox": {"l": 48.62452697753906, "t": 599.1659545898438, "r": 394.4928792317708, "b": 583.0389404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "02.2 The relative atomic mass of a sample of rhenium is 186.3", "text": "02.2 The relative atomic mass of a sample of rhenium is 186.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 570.3070678710938, "r": 484.553955078125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Table 2 shows information about the two isotopes of rhenium in this sample.", "text": "Table 2 shows information about the two isotopes of rhenium in this sample.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 304.4318033854167, "t": 543.9945678710938, "r": 345.445556640625, "b": 532.1115112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 192.80680338541666, "t": 516.4088948567708, "r": 312.0426025390625, "b": 502.4038492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Relative isotopic mass", "text": "Relative isotopic mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 355.1704508463542, "t": 516.4088948567708, "r": 458.7618408203125, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Relativeabundance", "text": "Relativeabundance", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 241.85416666666666, "t": 499.00868733723956, "r": 263.8409016927083, "b": 485.85243733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "185", "text": "185", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 399.5667317708333, "t": 499.00868733723956, "r": 414.3655192057292, "b": 486.27683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 211.41097005208334, "t": 481.60850016276044, "r": 293.4384358723958, "b": 468.87664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "To be calculated", "text": "To be calculated", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 399.5667317708333, "t": 481.18410237630206, "r": 414.788330078125, "b": 468.45225016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 454.02280680338544, "r": 430.4327392578125, "b": 426.43711344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "Calculate the relative isotopic mass of the other rhenium isotope. Show your working.", "text": "Calculate the relative isotopic mass of the other rhenium isotope. Show your working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.553955078125, "t": 428.13470458984375, "r": 536.1382242838541, "b": 413.70526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 276.94838460286456, "t": 252.43511962890625, "r": 387.7277425130208, "b": 238.85447184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Relative isotopic mass", "text": "Relative isotopic mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.62452697753906, "t": 211.26877848307288, "r": 102.32291666666667, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "02].3", "text": "02].3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 208.72239176432288, "r": 457.9161783854167, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "State why the isotopes of rhenium have the same chemical properties.", "text": "State why the isotopes of rhenium have the same chemical properties.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 195.56614176432288, "r": 536.1382242838541, "b": 181.13669840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 772.3191782633463, "r": 502.3125, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "A sample of rhenium is ionised by electron impact in a time of flight (TOF) mass spectrometer.", "text": "A sample of rhenium is ionised by electron impact in a time of flight (TOF) mass spectrometer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 50.73863728841146, "t": 732.8504231770834, "r": 84.14157104492188, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 732.426035563151, "r": 448.1912841796875, "b": 705.2647399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "A 185Re+ ion with a kinetic energy of 1.153 \u00d7 10-13 J travels through a 1.450 m flight tube.", "text": "A 185Re+ ion with a kinetic energy of 1.153 \u00d7 10-13 J travels through a 1.450 m flight tube.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 688.7133280436198, "r": 430.4327392578125, "b": 670.8887329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "The kinetic energy of the ion is given by the equation KE = mv2 2", "text": "The kinetic energy of the ion is given by the equation KE = mv2 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 658.5812784830729, "r": 225.78692626953125, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "where m = mass / kg V=speed / ms-1 KE=kinetic energy / J", "text": "where m = mass / kg V=speed / ms-1 KE=kinetic energy / J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 593.2244262695312, "r": 423.2447916666667, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Calculate the time,inseconds,for theiontoreachthedetector.", "text": "Calculate the time,inseconds,for theiontoreachthedetector.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 567.7607014973958, "r": 342.0629475911458, "b": 556.3020426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "The Avogadro constant, L = 6.022 \u00d7 1023 mol-1", "text": "The Avogadro constant, L = 6.022 \u00d7 1023 mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 554.1800537109375, "r": 536.1382242838541, "b": 541.0238037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 362.3583984375, "t": 124.69211832682288, "r": 388.5733642578125, "b": 110.26275634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Time", "text": "Time", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 47.77887980143229, "t": 776.1387329101562, "r": 102.74573771158855, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 771.8947804768881, "r": 468.4867350260417, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "State how the relative abundance of 185Re+ is determined in a TOF mass spectrometer.", "text": "State how the relative abundance of 185Re+ is determined in a TOF mass spectrometer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 484.553955078125, "t": 746.4310709635416, "r": 536.1382242838541, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 551.3598225911459, "t": 646.2738037109375, "r": 566.1586100260416, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 802.4512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 18.59340413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 207.6055908203125, "t": 774.8655446370443, "r": 370.3920491536458, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 9, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.64488220214844, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 347.1368408203125, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "This question is about hydrogen peroxide, H2O2", "text": "This question is about hydrogen peroxide, H2O2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 746.0066731770834, "r": 399.5667317708333, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "The half-equation for the oxidation of hydrogen peroxide is", "text": "The half-equation for the oxidation of hydrogen peroxide is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 267.2234700520833, "t": 720.1185709635416, "r": 380.5397542317708, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "H2O2\u2192O2+2H++2e", "text": "H2O2\u2192O2+2H++2e", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 694.23046875, "r": 352.6335042317708, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Hair bleach solution contains hydrogen peroxide.", "text": "Hair bleach solution contains hydrogen peroxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.007568359375, "t": 667.4935709635416, "r": 372.928955078125, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "A sample of hairbleachsolution is dilutedwithwater.", "text": "A sample of hairbleachsolution is dilutedwithwater.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.8532206217448, "t": 641.1810709635416, "r": 194.9209187825521, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "original solution.", "text": "original solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 629.7223917643229, "r": 515.8427734375, "b": 605.1074829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "A 25.0 cm? sample of the diluted hair bleach solution is acidified with dilute sulfuric acid.", "text": "A 25.0 cm? sample of the diluted hair bleach solution is acidified with dilute sulfuric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 604.2586873372396, "r": 503.1581217447917, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "This acidified sample is titrated with 0.0200 mol dm-3 potassium manganate(VIl) solution.", "text": "This acidified sample is titrated with 0.0200 mol dm-3 potassium manganate(VIl) solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 577.9461873372395, "r": 519.648193359375, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "The reaction is complete when 35.85 cm3 of the potassium manganate(Vll) solution are added.", "text": "The reaction is complete when 35.85 cm3 of the potassium manganate(Vll) solution are added.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 48.62452697753906, "t": 525.3211873372395, "r": 105.2826639811198, "b": 509.1941731770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 508.769775390625, "r": 253.27034505208334, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "acidified hydrogen peroxide.", "text": "acidified hydrogen peroxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 483.30605061848956, "r": 509.5004475911458, "b": 457.41794840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 99]}], "orig": "Calculate the concentration, in mol dm-3, of hydrogen peroxide in the original hair bleachsolution.", "text": "Calculate the concentration, in mol dm-3, of hydrogen peroxide in the original hair bleachsolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 443.41294352213544, "r": 510.3461100260417, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 119]}], "orig": "(Ilf you were unable to write an equation for the reaction you may assume that the This is not the correct mole ratio.)", "text": "(Ilf you were unable to write an equation for the reaction you may assume that the This is not the correct mole ratio.)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.1311442057292, "t": 406.06614176432294, "r": 536.5610758463541, "b": 391.63669840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 235.5118408203125, "t": 128.08730061848962, "r": 304.4318033854167, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Concentration", "text": "Concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 468.4867350260417, "t": 127.66290283203125, "r": 516.265625, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "mol dm-3", "text": "mol dm-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.3399658203125, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 538.6751708984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 103.5913798014323, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 361.9355875651042, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "State why an indicator is not added in this titration.", "text": "State why an indicator is not added in this titration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 759.5873209635416, "r": 535.7154134114584, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 47.77887980143229, "t": 670.0399373372396, "r": 103.16855875651042, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 667.4935709635416, "r": 388.5733642578125, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Give the oxidation state of oxygen in hydrogen peroxide.", "text": "Give the oxidation state of oxygen in hydrogen peroxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 654.76171875, "r": 535.2926025390625, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 589.4048665364584, "r": 403.7949625651042, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "03.4 Hydrogen peroxide decomposes to form water and oxygen.", "text": "03.4 Hydrogen peroxide decomposes to form water and oxygen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 115.43039957682292, "t": 560.121602376302, "r": 279.0625, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Giveanequationforthisreaction.", "text": "Giveanequationforthisreaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 535.082275390625, "r": 495.9701741536458, "b": 510.04296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 127]}], "orig": "Calculate the amount, in moles, of hydrogen peroxide that would be needed to produce 185 cm? of oxygen gas at 100 kPa and 298 K", "text": "Calculate the amount, in moles, of hydrogen peroxide that would be needed to produce 185 cm? of oxygen gas at 100 kPa and 298 K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 497.31109619140625, "r": 303.58616129557294, "b": 484.15484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "The gas constant, R = 8.31 J K-1 mol-1", "text": "The gas constant, R = 8.31 J K-1 mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 484.15484619140625, "r": 536.1382242838541, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 458.69114176432294, "r": 159.82670084635416, "b": 444.26169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 264.68654378255206, "t": 129.36049397786462, "r": 305.7002766927083, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Amount", "text": "Amount", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 497.2386067708333, "t": 128.93609619140625, "r": 518.3797200520834, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "mol", "text": "mol", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 501.8896484375, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 136]}], "orig": "03.5 Hydrazine (NzH4) is used as a rocket fuel that is oxidised by hydrogen peroxide. The equation for this reaction in the gas phase is", "text": "03.5 Hydrazine (NzH4) is used as a rocket fuel that is oxidised by hydrogen peroxide. The equation for this reaction in the gas phase is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 116.27604166666667, "t": 732.426035563151, "r": 123.46400960286458, "b": 724.7869160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 238.4715779622396, "t": 713.7526448567709, "r": 331.49241129557294, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "2H\u2014O\u2014O\u2014H", "text": "2H\u2014O\u2014O\u2014H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 383.0767008463542, "t": 713.7526448567709, "r": 419.8622233072917, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "N\u4e09N", "text": "N\u4e09N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 438.0435384114583, "t": 712.0550638834635, "r": 447.7684733072917, "b": 703.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "+", "text": "+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 466.3726399739583, "t": 713.7526448567709, "r": 534.8697916666666, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "4H\u2014O\u2014H", "text": "4H\u2014O\u2014H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 252.00189208984375, "t": 678.1034545898438, "r": 535.2926025390625, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "The enthalpy change for this reaction, \u25b3H = -789 kJ mol-1", "text": "The enthalpy change for this reaction, \u25b3H = -789 kJ mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 651.3665568033854, "r": 358.1302083333333, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Table3showssomemeanbondenthalpyvalues.", "text": "Table3showssomemeanbondenthalpyvalues.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 304.4318033854167, "t": 625.4784545898438, "r": 345.445556640625, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 3", "text": "Table 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 524.472391764323, "r": 296.398193359375, "b": 508.769775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Define the term mean bond enthalpy.", "text": "Define the term mean bond enthalpy.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 496.46230061848956, "r": 501.0440266927083, "b": 470.57419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "Use the equation and the data in Table 3 to calculate a value for the O-O bond enthalpy in hydrogenperoxide.", "text": "Use the equation and the data in Table 3 to calculate a value for the O-O bond enthalpy in hydrogenperoxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.976806640625, "t": 470.57419840494794, "r": 536.1382242838541, "b": 457.41794840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 482.8626708984375, "t": 115.77984619140625, "r": 525.9905192057291, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "kJ mol-1", "text": "kJ mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 445.11049397786456, "r": 162.78645833333334, "b": 432.37864176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}, {"page_no": 12, "bbox": {"l": 232.55208333333334, "t": 117.05303955078125, "r": 304.85463460286456, "b": 101.35040283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [11, 24]}, {"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [25, 50]}], "orig": "Definition Bond enthalpy Donotwrite outsidethe box", "text": "Definition Bond enthalpy Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 550.0913492838541, "t": 118.75063069661462, "r": 564.89013671875, "b": 106.86757405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 207.6055908203125, "t": 774.8655446370443, "r": 370.3920491536458, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 774.0167541503906, "r": 78.64488220214844, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 307.3915608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "This question is about acids and bases.", "text": "This question is about acids and bases.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 87.52414957682292, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "04.", "text": "04.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 458.7618408203125, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 105]}], "orig": "Calculate the pH of a 0.150 mol dm-3 solution of ethanoic acid at 25 \u00b0C Giveyour answerto2decimal places.", "text": "Calculate the pH of a 0.150 mol dm-3 solution of ethanoic acid at 25 \u00b0C Giveyour answerto2decimal places.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 689.9865112304688, "r": 371.6604817708333, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "text": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.1311442057292, "t": 677.6790568033854, "r": 536.5610758463541, "b": 663.2496134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 337.83473714192706, "t": 474.81817626953125, "r": 355.1704508463542, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 434.50063069661456, "r": 101.9000956217448, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 432.80303955078125, "r": 286.67327880859375, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Strontium is anelement inGroup 2.", "text": "Strontium is anelement inGroup 2.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 407.76373291015625, "r": 520.4938151041666, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 162]}], "orig": "Calculate the pH of a 0.0100 mol dm-3 solution of strontium hydroxide at 10 \u00b0C You may assume that strontium hydroxide is completely dissociated in this solution.", "text": "Calculate the pH of a 0.0100 mol dm-3 solution of strontium hydroxide at 10 \u00b0C You may assume that strontium hydroxide is completely dissociated in this solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 112.89346313476562, "t": 369.99257405598956, "r": 421.976318359375, "b": 357.26072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "At 10 \u00b0C the ionic product of water, Kw = 2.93 x 10-15 mol2 dm-6", "text": "At 10 \u00b0C the ionic product of water, Kw = 2.93 x 10-15 mol2 dm-6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.1311442057292, "t": 356.83632405598956, "r": 536.1382242838541, "b": 342.40688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 336.5662841796875, "t": 128.51169840494788, "r": 356.4389241536458, "b": 117.90183512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 50.31581115722656, "t": 776.5631256103516, "r": 109.0880635579427, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 105.2826639811198, "t": 774.441151936849, "r": 451.9966634114583, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "The pH of a barium hydroxide solution is lower at 50 \u00b0C than at 10 \u00b0C", "text": "The pH of a barium hydroxide solution is lower at 50 \u00b0C than at 10 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 750.6750183105469, "r": 495.9701741536458, "b": 726.0600992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 122]}], "orig": "At 50 \u00b0C a 25 cm? sample of this barium hydroxide solution was neutralised by 22.45cm3ofhydrochloricacidaddedfromaburette.", "text": "At 50 \u00b0C a 25 cm? sample of this barium hydroxide solution was neutralised by 22.45cm3ofhydrochloricacidaddedfromaburette.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 714.6014302571615, "r": 535.7154134114584, "b": 676.8302612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 168]}], "orig": "Deduce the volume of this hydrochloric acid that should be added from a burette to neutralise another 25 cm3 sample of this barium hydroxide solution at 10 \u00b0C [2 marks]", "text": "Deduce the volume of this hydrochloric acid that should be added from a burette to neutralise another 25 cm3 sample of this barium hydroxide solution at 10 \u00b0C [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 662.4008382161459, "r": 271.02886962890625, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Circle () the correct answer.", "text": "Circle () the correct answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 154.33001708984375, "t": 633.5419514973959, "r": 215.63920084635416, "b": 619.5369262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "> 22.45 cm3", "text": "> 22.45 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 294.7069091796875, "t": 633.1175537109375, "r": 355.1704508463542, "b": 619.5369262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "= 22.45 cm3", "text": "= 22.45 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 435.0837809244792, "t": 632.6931762695312, "r": 495.12451171875, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "< 22.45 cm3", "text": "< 22.45 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 594.9219970703125, "r": 216.06201171875, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Explain your answer", "text": "Explain your answer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 47.77887980143229, "t": 480.33530680338544, "r": 103.16855875651042, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 478.63771565755206, "r": 521.3394775390625, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "State how a buffer solution can be made from solutions of potassium hydroxide and ethanoicacid.", "text": "State how a buffer solution can be made from solutions of potassium hydroxide and ethanoicacid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 441.71535237630206, "r": 514.9971516927084, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "Give an equation for the reaction between potassium hydroxide and ethanoic acid.", "text": "Give an equation for the reaction between potassium hydroxide and ethanoic acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.3162841796875, "t": 418.79799397786456, "r": 518.3797200520834, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "State how this buffer solution resists changes in pH when a small amount of acid is added.", "text": "State how this buffer solution resists changes in pH when a small amount of acid is added.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.1311442057292, "t": 393.33428955078125, "r": 535.7154134114584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 366.59739176432294, "r": 250.31060791015625, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Howbuffersolutionismade", "text": "Howbuffersolutionismade", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 266.0157267252604, "r": 159.40387980143228, "b": 251.58632405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 189.20021565755212, "r": 300.20359293619794, "b": 175.61956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Howbuffer solutionresists pH change", "text": "Howbuffer solutionresists pH change", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 15, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 551.7826741536459, "t": 217.63470458984375, "r": 567.0042317708334, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 773.16796875, "r": 434.2381591796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "A buffer solution is made by adding 2.00 g of sodium hydroxide to 500 cm? of 1.00 mol dm-3 ethanoic acid solution.", "text": "A buffer solution is made by adding 2.00 g of sodium hydroxide to 500 cm? of 1.00 mol dm-3 ethanoic acid solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.43039957682292, "t": 734.972401936849, "r": 344.1770833333333, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Calculate the pH of this buffer solution at 25 \u00b0C", "text": "Calculate the pH of this buffer solution at 25 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.007568359375, "t": 708.659901936849, "r": 300.20359293619794, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Give your answer to 2 decimal places.", "text": "Give your answer to 2 decimal places.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 684.4693806966146, "r": 372.0833333333333, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "text": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 483.7083333333333, "t": 671.3131306966146, "r": 536.1382242838541, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 336.9890950520833, "t": 213.81512451171875, "r": 356.0160725911458, "b": 201.93206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 551.7826741536459, "t": 217.63470458984375, "r": 567.0042317708334, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.29071044921875, "t": 811.7879257202148, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 421.976318359375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "This question is about Period 3 elements and their compounds.", "text": "This question is about Period 3 elements and their compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 421.5535074869792, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "05. Which is not a correct statement about magnesium hydroxide?", "text": "Which is not a correct statement about magnesium hydroxide?", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "05."}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.0506591796875, "t": 716.2990112304688, "r": 536.1382242838541, "b": 701.8695780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 701.4451802571615, "r": 204.2230021158854, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 661.9764404296875, "r": 290.0558675130208, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "It is used to neutralise stomach acid", "text": "It is used to neutralise stomach acid", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 611.8978068033854, "r": 307.3915608723958, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "It forms a solutionwithpH=14at 25\u00b0C", "text": "It forms a solutionwithpH=14at 25\u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 562.2435709635417, "r": 290.0558675130208, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "It has the empirical formula H2MgO2", "text": "It has the empirical formula H2MgO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 48.201700846354164, "t": 511.74053955078125, "r": 456.2248942057292, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "05.2 Give an equation for the reaction of aluminium oxide with sulfuric acid.", "text": "05.2 Give an equation for the reaction of aluminium oxide with sulfuric acid.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.0506591796875, "t": 496.03794352213544, "r": 535.7154134114584, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 50.31581115722656, "t": 403.51979573567706, "r": 530.6415608723959, "b": 375.50970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 150]}], "orig": "05.3 Identify a reagent or test that could be used to distinguish between aqueous solutions ofsulfurdioxideandsulfurtrioxidewiththesameconcentrations.", "text": "05.3 Identify a reagent or test that could be used to distinguish between aqueous solutions ofsulfurdioxideandsulfurtrioxidewiththesameconcentrations.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 361.50465901692706, "r": 285.4048258463542, "b": 349.62160237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Statetheobservationineachcase.", "text": "Statetheobservationineachcase.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.1311442057292, "t": 349.62160237630206, "r": 536.1382242838541, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 322.88470458984375, "r": 192.38399251302084, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Reagent or test", "text": "Reagent or test", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 296.9966023763021, "r": 305.7002766927083, "b": 285.9623006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Observationwithsulfurdioxidesolution", "text": "Observationwithsulfurdioxidesolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 246.06915283203125, "r": 306.96875, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Observationwithsulfur trioxidesolution", "text": "Observationwithsulfur trioxidesolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 190.69270833333334, "t": 141.66794840494788, "r": 393.6472574869792, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Question5 continues on the next page", "text": "Question5 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.73863728841146, "t": 774.0167541503906, "r": 90.06107584635417, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 87.52414957682292, "t": 771.4703877766927, "r": 99.3631591796875, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 771.4703877766927, "r": 454.9564208984375, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "The mass spectrum of the element phosphorus has a peak at = 124", "text": "The mass spectrum of the element phosphorus has a peak at = 124", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 741.7627258300781, "r": 391.5331217447917, "b": 728.6064758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Give the formula of the species responsible for this peak.", "text": "Give the formula of the species responsible for this peak.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.553955078125, "t": 728.6064758300781, "r": 535.2926025390625, "b": 715.4502258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 663.2496134440104, "r": 102.32291666666667, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 646.6982014973959, "r": 156.866943359375, "b": 634.8151448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "solution.", "text": "solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 490.0506591796875, "t": 634.8151448567709, "r": 536.1382242838541, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.31581115722656, "t": 542.7213948567708, "r": 88.36979166666667, "b": 529.1407470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 91.3295389811198, "t": 540.175028483073, "r": 98.51751708984375, "b": 531.6871134440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 541.8725992838542, "r": 531.0643717447916, "b": 515.9844970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "Draw the displayed formula of the molecule formed when phosphorus(V) oxide reacts withwater.", "text": "Draw the displayed formula of the molecule formed when phosphorus(V) oxide reacts withwater.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 490.0506591796875, "t": 502.4038492838542, "r": 535.7154134114584, "b": 487.97442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 775.2899424235026, "r": 390.6875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Question5 continues on the nextpage", "text": "Question5 continues on the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 296.82102457682294, "b": 798.2072804768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.7", "text": "05.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.7", "text": "05.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 378.4256591796875, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Table 4 shows the melting points of three substances.", "text": "Table 4 shows the melting points of three substances.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 20, "bbox": {"l": 304.0089925130208, "t": 746.4310709635416, "r": 346.2911783854167, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 4", "text": "Table 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 243.12261962890625, "t": 716.2990112304688, "r": 300.20359293619794, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Substance", "text": "Substance", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 335.2978108723958, "t": 715.4502258300781, "r": 421.976318359375, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Meltingpoint/ K", "text": "Meltingpoint/ K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 223.67281087239584, "t": 694.6548563639323, "r": 301.47206624348956, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "sodiumchloride", "text": "sodiumchloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 364.8953450520833, "t": 695.503651936849, "r": 392.3787841796875, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1074", "text": "1074", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 223.25, "t": 674.2838948567709, "r": 263.41807047526044, "b": 660.2788492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "chlorine", "text": "chlorine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 371.2376708984375, "t": 675.1326802571615, "r": 391.9559733072917, "b": 659.0056762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "172", "text": "172", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 222.40435791015625, "t": 652.6397298177084, "r": 312.0426025390625, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "hydrogen chloride", "text": "hydrogen chloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 370.3920491536458, "t": 652.6397298177084, "r": 392.3787841796875, "b": 638.2103068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "158", "text": "158", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.8532206217448, "t": 621.2344970703125, "r": 428.3186442057292, "b": 608.5026448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Explain why the melting points of these substances are different.", "text": "Explain why the melting points of these substances are different.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 596.1951904296875, "r": 442.2717692057292, "b": 583.0389404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "You should refer to the structure of and bonding in each substance.", "text": "You should refer to the structure of and bonding in each substance.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 583.0389404296875, "r": 536.1382242838541, "b": 568.6094970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 57.9266103108724, "t": 27.08127848307288, "r": 81.1818135579427, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.1765950520833, "t": 812.6367162068685, "r": 296.82102457682294, "b": 793.5389353434244, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 474.40625, "t": 69.09641520182288, "r": 538.6751708984375, "b": 55.94016520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 58.34943135579427, "t": 25.80808512369788, "r": 79.91335042317708, "b": 13.500630696614621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 553.4739583333334, "t": 108.14076741536462, "r": 567.8498942057291, "b": 94.98451741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 479.9029134114583, "t": 24.95928955078125, "r": 539.5208333333334, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 462.9900309244792, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "This question is about some elements in Group 7 and their compounds.", "text": "This question is about some elements in Group 7 and their compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 85.4100341796875, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "06.", "text": "06.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 87.52414957682292, "t": 728.1820780436198, "r": 98.51751708984375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 504.8494059244792, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 121]}], "orig": "Chlorine is added to some drinking water supplies to decrease the risk of people suffering from diseases such as cholera.", "text": "Chlorine is added to some drinking water supplies to decrease the risk of people suffering from diseases such as cholera.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 689.5621236165365, "r": 405.0634358723958, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "State why the amount of chlorine added must be controlled.", "text": "State why the amount of chlorine added must be controlled.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.0506591796875, "t": 677.2546590169271, "r": 536.1382242838541, "b": 662.8252156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 49.04734802246094, "t": 586.0097045898438, "r": 521.7622884114584, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "06.2 Give an equation for the reaction of chlorine with water to form a solution containing", "text": "06.2 Give an equation for the reaction of chlorine with water to form a solution containing", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 113.3162841796875, "t": 569.4582926432292, "r": 166.59184773763022, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "two acids.", "text": "two acids.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.43039957682292, "t": 543.5701904296875, "r": 427.4729817708333, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Explain, with reference to electrons,why this is a redox reaction.", "text": "Explain, with reference to electrons,why this is a redox reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.1311442057292, "t": 530.8383178710938, "r": 535.7154134114584, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 505.37461344401044, "r": 159.82670084635416, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 429.83229573567706, "r": 173.35699462890625, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Explanation", "text": "Explanation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.04734802246094, "t": 310.5772501627604, "r": 101.9000956217448, "b": 296.57220458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.3162841796875, "t": 309.72845458984375, "r": 441.8489583333333, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "A student bubbles chlorine gas through a solution of sodium iodide.", "text": "A student bubbles chlorine gas through a solution of sodium iodide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 281.7183634440104, "r": 340.37168375651044, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Statetheobservationthestudentwouldmake.", "text": "Statetheobservationthestudentwouldmake.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 256.2546590169271, "r": 302.7405192057292, "b": 243.94720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Give an ionic equation for the reaction.", "text": "Give an ionic equation for the reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.553955078125, "t": 243.94720458984375, "r": 536.1382242838541, "b": 229.51776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 218.05910237630212, "r": 175.04829915364584, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Observation", "text": "Observation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 192.17100016276038, "r": 183.92755126953125, "b": 179.43914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "lonic equation", "text": "lonic equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 503.5809733072917, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "The student adds a few drops of concentrated sulfuric acid to a small amount of solid sodium iodide.", "text": "The student adds a few drops of concentrated sulfuric acid to a small amount of solid sodium iodide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 733.2748209635416, "r": 369.54638671875, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Two gaseous sulfur-containing products are formed.", "text": "Two gaseous sulfur-containing products are formed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 708.2355041503906, "r": 494.7017008463542, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Give an equation for the formation of each of these sulfur-containing products.", "text": "Give an equation for the formation of each of these sulfur-containing products.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 681.9230041503906, "r": 422.3991292317708, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "State the role of sulfuric acid in the formation of these products.", "text": "State the role of sulfuric acid in the formation of these products.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 668.7667643229166, "r": 536.1382242838541, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 643.7274373372396, "r": 168.70596313476562, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Equation 1", "text": "Equation 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 566.9119262695312, "r": 168.70596313476562, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Equation 2", "text": "Equation 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 489.67197672526044, "r": 138.68559773763022, "b": 476.94012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Role", "text": "Role", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 449.77886962890625, "r": 101.9000956217448, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.5", "text": "06.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 448.08127848307294, "r": 509.5004475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 115]}], "orig": "The student adds a few drops of acidified silver nitrate solution to a solution of an unknown impure sodium halide.", "text": "The student adds a few drops of acidified silver nitrate solution to a solution of an unknown impure sodium halide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 420.91998291015625, "r": 422.3991292317708, "b": 408.18813069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "The student observes bubbles of gas and a colourless solution.", "text": "The student observes bubbles of gas and a colourless solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 408.18813069661456, "r": 457.4933675130208, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "The student bubbles the gas through calcium hydroxide solution and a white precipitate forms.", "text": "The student bubbles the gas through calcium hydroxide solution and a white precipitate forms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 369.56817626953125, "r": 313.3110758463542, "b": 357.26072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Deduce the identity of the sodium halide.", "text": "Deduce the identity of the sodium halide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 343.25567626953125, "r": 265.5321858723958, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Suggest the identity of the gas.", "text": "Suggest the identity of the gas.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 317.7919718424479, "r": 448.1912841796875, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Give an ionic equation for the formation of this gas from the impurity.", "text": "Give an ionic equation for the formation of this gas from the impurity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 303.78692626953125, "r": 535.7154134114584, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 278.74761962890625, "r": 233.8205362955729, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Identityofsodium halide", "text": "Identityofsodium halide", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 253.28387451171875, "r": 184.35038248697916, "b": 238.85447184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Identity of gas", "text": "Identity of gas", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 227.39577229817712, "r": 184.35038248697916, "b": 213.39072672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "lonic equation", "text": "lonic equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 23, "bbox": {"l": 190.69270833333334, "t": 110.26275634765625, "r": 393.2244059244792, "b": 95.83331298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 6 continues on the next page", "text": "Question 6 continues on the next page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 23, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.6", "text": "06.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.6", "text": "06.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 380.116943359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "The ClF2+ ion contains two different Group 7 elements.", "text": "The ClF2+ ion contains two different Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.3162841796875, "t": 748.128651936849, "r": 511.6145833333333, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Use your understanding of the electron pair repulsion theory to draw the shape of this ion.", "text": "Use your understanding of the electron pair repulsion theory to draw the shape of this ion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 709.5086873372396, "r": 405.0634358723958, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Include any lone pairs of electrons that influence the shape.", "text": "Include any lone pairs of electrons that influence the shape.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.8532206217448, "t": 683.6205851236979, "r": 365.3181559244792, "b": 670.8887329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Explain why the ion has the shape you have drawn.", "text": "Explain why the ion has the shape you have drawn.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.43039957682292, "t": 658.1568806966146, "r": 335.72064208984375, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Suggest a value for the bond angle in the ion.", "text": "Suggest a value for the bond angle in the ion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.553955078125, "t": 645.4250284830729, "r": 535.2926025390625, "b": 632.2687784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 621.2344970703125, "r": 147.98768107096353, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Shape", "text": "Shape", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 442.56414794921875, "r": 173.35699462890625, "b": 428.13470458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Explanation", "text": "Explanation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.3162841796875, "t": 365.32419840494794, "r": 171.66571044921875, "b": 349.62160237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Bond angle", "text": "Bond angle", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 324.5822957356771, "r": 101.054443359375, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.7", "text": "06.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 321.61151123046875, "r": 472.7149658203125, "b": 309.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Magnesium is used in the extraction of titanium from titanium(IV) chloride.", "text": "Magnesium is used in the extraction of titanium from titanium(IV) chloride.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 295.29901123046875, "r": 279.0625, "b": 282.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Give an equation for this reaction.", "text": "Give an equation for this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 490.0506591796875, "t": 283.41595458984375, "r": 536.1382242838541, "b": 268.5621134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 551.3598225911459, "t": 235.45928955078125, "r": 566.1586100260416, "b": 223.15183512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 551.3598225911459, "t": 235.45928955078125, "r": 566.1586100260416, "b": 223.15183512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 80.33617146809895, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 287.94175211588544, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Copper(ll) complexes are coloured.", "text": "Copper(ll) complexes are coloured.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 759.1629282633463, "r": 520.0710042317709, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 99]}], "orig": "The colour is caused by the d electrons of copper moving from their ground state to anexcitedstate.", "text": "The colour is caused by the d electrons of copper moving from their ground state to anexcitedstate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 721.3917541503906, "r": 103.5913798014323, "b": 705.2647399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 719.269785563151, "r": 444.8087158203125, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Explain why aqueous solutions containing [CuCl4]\u00b2- ions are yellow.", "text": "Explain why aqueous solutions containing [CuCl4]\u00b2- ions are yellow.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 705.6891377766927, "r": 536.1382242838541, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 48.201700846354164, "t": 535.9310709635417, "r": 464.2585042317708, "b": 519.8040568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "07.2 When a d electron moves from the ground state to the excited state in a", "text": "07.2 When a d electron moves from the ground state to the excited state in a", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.16192626953125, "t": 518.9552612304688, "r": 371.2376708984375, "b": 507.49660237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "copper complex, the energy change is 3.98 x 10-19 J", "text": "copper complex, the energy change is 3.98 x 10-19 J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 493.91595458984375, "r": 315.42519124348956, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "The Planck constant, h = 6.63 \u00d7 10-34 J s", "text": "The Planck constant, h = 6.63 \u00d7 10-34 J s", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 468.02785237630206, "r": 369.1235758463542, "b": 454.87160237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Calculate the frequency, in s-1, of the light absorbed.", "text": "Calculate the frequency, in s-1, of the light absorbed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.976806640625, "t": 454.87160237630206, "r": 535.7154134114584, "b": 441.71535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 292.16998291015625, "t": 306.3332722981771, "r": 346.2911783854167, "b": 289.35748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Frequency", "text": "Frequency", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 48.201700846354164, "t": 264.31817626953125, "r": 102.32291666666667, "b": 248.61553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 261.3473917643229, "r": 504.4265950520833, "b": 234.18609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "State three ways in which a transition metal complex can be changed to alter its colour.", "text": "State three ways in which a transition metal complex can be changed to alter its colour.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 234.61049397786462, "r": 535.7154134114584, "b": 221.45424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 181.56109619140625, "r": 121.3499043782552, "b": 171.80002848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 156.09739176432288, "r": 121.77272542317708, "b": 146.33632405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 190.69270833333334, "t": 117.47743733723962, "r": 393.2244059244792, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question7continueson the nextpage", "text": "Question7continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 63.42329406738281, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 198.726318359375, "t": 724.3625183105469, "r": 268.06911214192706, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "[CuCl4]2- (aq)", "text": "[CuCl4]2- (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 698.8988138834635, "r": 241.43133544921875, "b": 688.7133280436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "excess", "text": "excess", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 687.4401448567709, "r": 250.31060791015625, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "aqueous", "text": "aqueous", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 379.2712809244792, "t": 690.8353068033854, "r": 449.4597574869792, "b": 673.8594970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na4EDTA (aq)", "text": "Na4EDTA (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.9142862955729, "t": 675.5570780436198, "r": 252.4247029622396, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "ammonia", "text": "ammonia", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 197.88067626953125, "t": 650.9421590169271, "r": 232.1292521158854, "b": 634.3907470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Q (aq)", "text": "Q (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 371.2376708984375, "t": 650.5177612304688, "r": 405.4862467447917, "b": 633.9663492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "R (aq)", "text": "R (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 771.8947804768881, "r": 470.600830078125, "b": 743.8847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Consider the following reaction scheme in which P, Q and R are different complex ions of copper.", "text": "Consider the following reaction scheme in which P, Q and R are different complex ions of copper.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 198.726318359375, "t": 724.3625183105469, "r": 268.06911214192706, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "[CuCl4]2- (aq)", "text": "[CuCl4]2- (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 698.8988138834635, "r": 241.43133544921875, "b": 688.7133280436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "excess", "text": "excess", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 687.4401448567709, "r": 250.31060791015625, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "aqueous", "text": "aqueous", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 379.2712809244792, "t": 690.8353068033854, "r": 449.4597574869792, "b": 673.8594970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na4EDTA (aq)", "text": "Na4EDTA (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.9142862955729, "t": 675.5570780436198, "r": 252.4247029622396, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "ammonia", "text": "ammonia", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 197.88067626953125, "t": 650.9421590169271, "r": 232.1292521158854, "b": 634.3907470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Q (aq)", "text": "Q (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 371.2376708984375, "t": 650.5177612304688, "r": 405.4862467447917, "b": 633.9663492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "R (aq)", "text": "R (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.62452697753906, "t": 607.2294514973959, "r": 105.2826639811198, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.\u2463", "text": "07.\u2463", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 112.89346313476562, "t": 604.6830851236979, "r": 293.015625, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Name the shape of the [CuCl4]\u00b2- ion.", "text": "Name the shape of the [CuCl4]\u00b2- ion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 591.1024373372396, "r": 535.7154134114584, "b": 576.6730143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 48.201700846354164, "t": 527.4431762695312, "r": 460.8759358723958, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "07.5 Give an ionic equation for the conversion of [CuCl4]\u00b2- to complex ion P.", "text": "07.5 Give an ionic equation for the conversion of [CuCl4]\u00b2- to complex ion P.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.0506591796875, "t": 511.74053955078125, "r": 536.1382242838541, "b": 497.31109619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 421.34438069661456, "r": 410.1372884114583, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "07.6 State the colour of the solution containing the complex ion Q.", "text": "07.6 State the colour of the solution containing the complex ion Q.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 392.90989176432294, "r": 399.9895833333333, "b": 380.17803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Give an ionic equation for the conversion of [CuCl4]\u00b2- to Q.", "text": "Give an ionic equation for the conversion of [CuCl4]\u00b2- to Q.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.1311442057292, "t": 380.60243733723956, "r": 535.7154134114584, "b": 366.17299397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 355.13873291015625, "r": 148.41051228841147, "b": 340.70928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Colour", "text": "Colour", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 329.2506306966146, "r": 159.82670084635416, "b": 314.39678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.62452697753906, "t": 238.85447184244788, "r": 103.5913798014323, "b": 222.72743733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 235.03489176432288, "r": 225.36409505208334, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Identifycomplex ion R.", "text": "Identifycomplex ion R.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.0506591796875, "t": 222.30303955078125, "r": 536.5610758463541, "b": 207.87359619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 554.319580078125, "t": 200.65887451171875, "r": 568.6955159505209, "b": 188.35142008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.89299011230469, "t": 746.4310709635416, "r": 83.71875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 48.62452697753906, "t": 350.04600016276044, "r": 109.0880635579427, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 61.73200480143229, "t": 23.68609619140625, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 249.4649658203125, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "This question is about cells.", "text": "This question is about cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 113.3162841796875, "t": 745.1578877766927, "r": 523.4535725911459, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "The half-equations for two electrodes that combine to make a non-rechargeable cell are", "text": "The half-equations for two electrodes that combine to make a non-rechargeable cell are", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 27, "bbox": {"l": 113.73910522460938, "t": 710.3574829101562, "r": 512.8830159505209, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Zn2+(aq) + 2e-\u2192 Zn(s) E =-0.76 V", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 680.2254231770834, "r": 512.460205078125, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "(1)OH +(be)HN + (s)\u03b5OuW -Z + (be)+HN\u4e59 + (s)OuW\u4e59 E=+0.52V", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 653.9129231770834, "r": 299.78076171875, "b": 639.4834798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Identify the oxidising agent in this cell.", "text": "Identify the oxidising agent in this cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 27, "bbox": {"l": 115.43039957682292, "t": 574.9754231770833, "r": 462.9900309244792, "b": 562.2435709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Figure 1 shows a cross-section through a rechargeable silver-zinc cell", "text": "Figure 1 shows a cross-section through a rechargeable silver-zinc cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 302.3177083333333, "t": 554.6044514973958, "r": 347.9824625651042, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 293.86126708984375, "t": 532.9603068033855, "r": 323.88161214192706, "b": 520.652852376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Metal", "text": "Metal", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.4729817708333, "t": 496.88669840494794, "r": 476.9431559244792, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Insulation", "text": "Insulation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 252.00189208984375, "t": 473.12058512369794, "r": 361.9355875651042, "b": 461.66192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Mixtureof Zn andZnO", "text": "Mixtureof Zn andZnO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.0501708984375, "t": 472.27178955078125, "r": 457.070556640625, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Metal", "text": "Metal", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 267.64630126953125, "t": 460.81313069661456, "r": 346.7139892578125, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "in an electrolyte", "text": "in an electrolyte", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.0501708984375, "t": 431.10544840494794, "r": 464.6813151041667, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Porous", "text": "Porous", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.0501708984375, "t": 419.22239176432294, "r": 476.9431559244792, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "separator", "text": "separator", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 172.08854166666666, "t": 387.39276123046875, "r": 231.28361002604166, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Ag2O paste", "text": "Ag2O paste", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 111.625, "t": 347.49961344401044, "r": 392.8015950520833, "b": 332.64577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Suggest the function of the porous separator in Figure 1.", "text": "Suggest the function of the porous separator in Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.0506591796875, "t": 640.7566731770834, "r": 535.7154134114584, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.4734700520833, "t": 333.49456787109375, "r": 534.8697916666666, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 48.201700846354164, "t": 274.92803955078125, "r": 514.5743408203125, "b": 257.9522501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "08.3 The standard electrode potentials for two half-equations for the silver-zinc cell are", "text": "08.3 The standard electrode potentials for two half-equations for the silver-zinc cell are", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 27, "bbox": {"l": 150.94743855794272, "t": 246.91794840494788, "r": 506.5406901041667, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Ag2O(s)+ H2O(l) + 2e- \u2192 2Ag(s)+ 2OH-(aq) E = +0.34 V ZnO(s) + H2O(l) + 2e- \u2192 Zn(s)+ 2OH-(aq) E =-1.26 V", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 191.74660237630212, "r": 535.2926025390625, "b": 162.03892008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Give an equation for the overall reaction that occurs when the cell is recharging. [1 mark]", "text": "Give an equation for the overall reaction that occurs when the cell is recharging. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 473.5605875651042, "t": 70.79400634765625, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 27, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 424.9360758463542, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 163]}], "orig": "The EMF of an alkaline hydrogen-oxygen fuel cell is +1.23 V The standard electrode potential for one of the electrodes in the alkaline hydrogen-oxygen fuel cell is", "text": "The EMF of an alkaline hydrogen-oxygen fuel cell is +1.23 V The standard electrode potential for one of the electrodes in the alkaline hydrogen-oxygen fuel cell is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 149.6789754231771, "t": 721.816151936849, "r": 350.9422200520833, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "(6)H +(be)-HO\u4e59 \u2190-\u4e59 + (1)OH\u4e59", "text": "(6)H +(be)-HO\u4e59 \u2190-\u4e59 + (1)OH\u4e59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 402.9493408203125, "t": 720.54296875, "r": 470.600830078125, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "E\u00b0=-0.83V", "text": "E\u00b0=-0.83V", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 50.31581115722656, "t": 681.07421875, "r": 101.47727457682292, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.4", "text": "08.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 113.3162841796875, "t": 678.527842203776, "r": 509.07763671875, "b": 653.0641276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Give the half-equation for the other electrode and calculate its standard electrode potential.", "text": "Give the half-equation for the other electrode and calculate its standard electrode potential.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 484.553955078125, "t": 652.2153523763021, "r": 535.2926025390625, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 113.73910522460938, "t": 627.6004231770834, "r": 159.82670084635416, "b": 613.1709798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.58474731445312, "t": 549.9361165364583, "r": 129.38351440429688, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Ee", "text": "Ee", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 50.31581115722656, "t": 510.04296875, "r": 101.9000956217448, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.5", "text": "08.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 115.007568359375, "t": 507.49660237630206, "r": 517.5340576171875, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Suggest why the EMF values of the acidic and alkaline hydrogen-oxygen fuel cells are the same.", "text": "Suggest why the EMF values of the acidic and alkaline hydrogen-oxygen fuel cells are the same.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.0506591796875, "t": 482.03289794921875, "r": 536.1382242838541, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 231.28361002604166, "t": 338.16294352213544, "r": 346.7139892578125, "b": 326.7042439778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 556.4337158203125, "t": 431.52984619140625, "r": 563.1988525390625, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 59.19507344563802, "t": 25.38368733723962, "r": 79.91335042317708, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 187.31011962890625, "t": 445.11049397786456, "r": 396.6070149739583, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.86789957682294, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 243.96826171875, "t": 771.0459899902344, "r": 383.9223225911458, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Additional page, if required.", "text": "Additional page, if required.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Write the questionnumbers in the left-hand margin.", "text": "Write the questionnumbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 221]}], "orig": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CopyrightTeam.", "text": "CopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Copyright?2022AQAand itslicensors.Allrightsreserved.", "text": "Copyright?2022AQAand itslicensors.Allrightsreserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 68.07433573404948, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 64.26893615722656, "t": 25.80808512369788, "r": 79.91335042317708, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 362.3583984375, "t": 49.99859619140625, "r": 487.0909016927083, "b": 40.23752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "226A7405/7", "text": "226A7405/7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.3665466308594, "t": 396.3082275390625, "r": 544.1763305664062, "b": 194.62908935546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.26513671875, "t": 453.2540283203125, "r": 534.4469401041666, "b": 465.5614827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 475.3225911458333, "r": 489.2049967447917, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 510.9717610677083, "r": 473.1377766927083, "b": 520.7328694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 526.6743977864584, "r": 473.1377766927083, "b": 537.7086588541666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 543.6501871744791, "r": 473.5605875651042, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 560.6260172526041, "r": 473.1377766927083, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 578.0262044270834, "r": 473.9833984375, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 594.57763671875, "r": 473.9833984375, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 611.9778238932291, "r": 473.9833984375, "b": 623.0120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.9966634114583, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 11, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.26513671875, "t": 453.2540283203125, "r": 534.4469401041666, "b": 465.5614827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.26513671875, "t": 453.2540283203125, "r": 534.4469401041666, "b": 465.5614827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 475.3225911458333, "r": 489.2049967447917, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 510.9717610677083, "r": 473.1377766927083, "b": 520.7328694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 526.6743977864584, "r": 473.1377766927083, "b": 537.7086588541666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 543.6501871744791, "r": 473.5605875651042, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 560.6260172526041, "r": 473.1377766927083, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 578.0262044270834, "r": 473.9833984375, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 594.57763671875, "r": 473.9833984375, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 611.9778238932291, "r": 473.9833984375, "b": 623.0120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.9966634114583, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 12, "bbox": {"l": 164.72103881835938, "t": 601.3435821533203, "r": 467.8115234375, "b": 535.7142333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/9"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 279.4853108723958, "t": 248.27117919921875, "r": 304.85463460286456, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "N-H", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 329.3782958984375, "t": 248.27117919921875, "r": 354.7476399739583, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "N-N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 248.27117919921875, "r": 405.0634358723958, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "N=N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 429.5871175130208, "t": 248.27117919921875, "r": 455.3792317708333, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "H-O", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 168.70596313476562, "t": 275.008056640625, "r": 262.5724283854167, "b": 299.62298583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Meanbond enthalpy / kJ mol-1", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 281.59942626953125, "t": 280.52520751953125, "r": 303.16335042317706, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "388", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.49241129557294, "t": 280.10080973307294, "r": 353.4791666666667, "b": 294.53025309244794, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "163", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 380.9625651041667, "t": 280.52520751953125, "r": 402.9493408203125, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "944", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 280.52520751953125, "r": 453.26513671875, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "463", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 2, "num_cols": 5, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 279.4853108723958, "t": 248.27117919921875, "r": 304.85463460286456, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "N-H", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 329.3782958984375, "t": 248.27117919921875, "r": 354.7476399739583, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "N-N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 248.27117919921875, "r": 405.0634358723958, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "N=N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 429.5871175130208, "t": 248.27117919921875, "r": 455.3792317708333, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "H-O", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 168.70596313476562, "t": 275.008056640625, "r": 262.5724283854167, "b": 299.62298583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Meanbond enthalpy / kJ mol-1", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 281.59942626953125, "t": 280.52520751953125, "r": 303.16335042317706, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "388", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.49241129557294, "t": 280.10080973307294, "r": 353.4791666666667, "b": 294.53025309244794, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "163", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 380.9625651041667, "t": 280.52520751953125, "r": 402.9493408203125, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "944", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 280.52520751953125, "r": 453.26513671875, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "463", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.00352478027344, "t": 797.48291015625, "r": 168.22532653808594, "b": 750.3669357299805, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.57489776611328, "t": 53.50885009765625, "r": 232.79144287109375, "b": 17.6092529296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.46540451049805, "t": 52.9984130859375, "r": 99.5510482788086, "b": 16.2794189453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.799652099609375, "t": 53.073486328125, "r": 99.07989501953125, "b": 17.542236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.603614807128906, "t": 53.21435546875, "r": 99.1415786743164, "b": 17.57452392578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.78177261352539, "t": 53.18817138671875, "r": 99.22442626953125, "b": 17.46331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.69084167480469, "t": 53.16693115234375, "r": 99.08799743652344, "b": 17.5013427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.67705535888672, "t": 53.18963623046875, "r": 99.12734985351562, "b": 17.6636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.8090934753418, "t": 53.20458984375, "r": 99.13793182373047, "b": 17.58782958984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.526153564453125, "t": 53.07830810546875, "r": 99.46122741699219, "b": 16.9515380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.62184143066406, "t": 53.210205078125, "r": 99.05526733398438, "b": 17.57977294921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.73190689086914, "t": 53.1451416015625, "r": 99.24485778808594, "b": 17.90057373046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 114.2842788696289, "t": 734.2892837524414, "r": 534.5986938476562, "b": 683.3049163818359, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.672115325927734, "t": 53.1563720703125, "r": 99.08405303955078, "b": 17.3460693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.50332260131836, "t": 53.0228271484375, "r": 99.4515609741211, "b": 16.822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.77970886230469, "t": 53.17462158203125, "r": 99.19371795654297, "b": 17.7877197265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.741512298583984, "t": 53.1185302734375, "r": 99.22008514404297, "b": 17.48614501953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 542.4967651367188, "t": 242.42291259765625, "r": 574.9304809570312, "b": 202.35992431640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.75214385986328, "t": 53.18939208984375, "r": 99.23369598388672, "b": 17.509033203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.75908660888672, "t": 53.14544677734375, "r": 99.28108215332031, "b": 17.828369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.85944747924805, "t": 53.1580810546875, "r": 99.19698333740234, "b": 17.61865234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 38.80020523071289, "t": 789.092601776123, "r": 541.6115112304688, "b": 73.8773193359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.55806350708008, "t": 53.1070556640625, "r": 99.49885559082031, "b": 17.413818359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 46.760440826416016, "t": 776.4064331054688, "r": 105.32807159423828, "b": 759.193115234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.70090866088867, "t": 53.146484375, "r": 99.1500244140625, "b": 17.34271240234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.74695587158203, "t": 53.06658935546875, "r": 99.47607421875, "b": 17.3372802734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.68296813964844, "t": 53.0728759765625, "r": 99.08783721923828, "b": 17.2548828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 47.008304595947266, "t": 776.2696914672852, "r": 104.7603530883789, "b": 758.913818359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.707786560058594, "t": 53.05535888671875, "r": 99.06978607177734, "b": 17.37445068359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 47.35185241699219, "t": 775.9591522216797, "r": 104.07383728027344, "b": 759.1455383300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.718467712402344, "t": 53.13372802734375, "r": 99.17106628417969, "b": 17.50701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 542.27197265625, "t": 259.7894287109375, "r": 574.0704956054688, "b": 221.617919921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.63474655151367, "t": 53.11236572265625, "r": 99.09383392333984, "b": 17.3360595703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 197.84866333007812, "t": 729.5112686157227, "r": 449.76068115234375, "b": 635.7095031738281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.6900520324707, "t": 53.19793701171875, "r": 99.08284759521484, "b": 17.35870361328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.74736404418945, "t": 53.17083740234375, "r": 99.2158432006836, "b": 17.5997314453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 171.64683532714844, "t": 553.2512817382812, "r": 476.143310546875, "b": 373.05401611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/10"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.68498992919922, "t": 53.12066650390625, "r": 99.07637786865234, "b": 17.40753173828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 543.0728149414062, "t": 458.28045654296875, "r": 575.6439208984375, "b": 416.9912414550781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.49864959716797, "t": 53.07568359375, "r": 99.51233673095703, "b": 16.77655029296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.72919845581055, "t": 53.18017578125, "r": 99.28366088867188, "b": 17.0953369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.71382522583008, "t": 53.14093017578125, "r": 99.38362884521484, "b": 17.3262939453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.683597564697266, "t": 53.1888427734375, "r": 99.13557434082031, "b": 16.9169921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 346.5959777832031, "t": 76.732177734375, "r": 510.5633850097656, "b": 41.01318359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}, "2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}, "3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}, "4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}, "5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}, "6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}, "7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}, "8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}, "9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}, "10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}, "11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}, "12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}, "13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}, "14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}, "15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}, "16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}, "17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}, "18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}, "19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}, "20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}, "21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}, "22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}, "23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}, "24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}, "25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}, "26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}, "27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}, "28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}, "29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}, "30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}, "31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}, "32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}, "_failed_pages": []} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p1.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p1.json new file mode 100644 index 0000000..81b18cc --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p1.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/15"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/23"}, {"$ref": "#/groups/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/27"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 754.4945780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 712.9038492838541, "r": 232.97489420572916, "b": 700.1719970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Please write clearly in block capitals", "text": "Please write clearly in block capitals", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 680.2254231770834, "r": 130.65198771158853, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 680.2254231770834, "r": 403.3721516927083, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 641.1810709635416, "r": 101.9000956217448, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 54.96685282389323, "t": 616.1417643229166, "r": 120.92708333333333, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 588.5560709635416, "r": 155.1756591796875, "b": 577.097391764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Candidatesignature", "text": "Candidatesignature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 166.59184773763022, "t": 574.9754231770833, "r": 309.50567626953125, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Ideclarethisismyownwork.", "text": "Ideclarethisismyownwork.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 551.6336873372395, "r": 185.61883544921875, "b": 493.49155680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "A-level CHEMISTRY", "text": "A-level CHEMISTRY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 40.16808573404948, "t": 479.48651123046875, "r": 328.9554850260417, "b": 461.66192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Paper 1 Inorganic and Physical Chemistry", "text": "Paper 1 Inorganic and Physical Chemistry", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 395.03188069661456, "r": 92.59801228841145, "b": 382.30002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 381.02683512369794, "r": 186.4644775390625, "b": 367.87058512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 367.02178955078125, "r": 368.7007649739583, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "\u00b7 the Periodic Table/Data Booklet, provided as an insert (enclosed)", "text": "the Periodic Table/Data Booklet, provided as an insert (enclosed)", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 353.86553955078125, "r": 231.7064412434896, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "\u00b7a ruler with millimetre measurements", "text": "\u00b7a ruler with millimetre measurements", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 340.28489176432294, "r": 400.835205078125, "b": 327.9774373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "\u00b7 a scientific calculator, which you are expected to use where appropriate.", "text": "a scientific calculator, which you are expected to use where appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 314.39678955078125, "r": 108.24242146809895, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 301.24053955078125, "r": 231.28361002604166, "b": 286.81109619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 288.08428955078125, "r": 238.04876708984375, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 272.8060506184896, "r": 156.866943359375, "b": 261.3473917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7Answer all questions.", "text": "\u00b7Answer all questions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 259.6498006184896, "r": 426.6273600260417, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 119]}], "orig": "\u00b7You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "\u00b7You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 49.47016906738281, "t": 221.87864176432288, "r": 350.9422200520833, "b": 207.44919840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "this book. Write the question number against your answer(s).", "text": "this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 207.44919840494788, "r": 184.773193359375, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "\u00b7All working must be shown.", "text": "\u00b7All working must be shown.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 194.29294840494788, "r": 376.734375, "b": 169.67803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 155.67299397786462, "r": 106.55113728841145, "b": 142.09234619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 140.39475504557288, "r": 282.445068359375, "b": 128.08730061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "\u00b7The marks for questions are shown in brackets.", "text": "\u00b7The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 127.23850504557288, "r": 251.15625, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "\u00b7Themaximum markfor thispaper is105.", "text": "\u00b7Themaximum markfor thispaper is105.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.19507344563802, "t": 25.80808512369788, "r": 211.41097005208334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "JUN227405101", "text": "JUN227405101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 402.1036783854167, "t": 425.58831787109375, "r": 545.0174967447916, "b": 409.88572184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Time allowed: 2 hours", "text": "Time allowed: 2 hours", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 25.80808512369788, "r": 367.0094401041667, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E11", "text": "IB/M/Jun22/E11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 480.7485758463542, "t": 35.56915283203125, "r": 545.4403076171875, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "7405/1", "text": "7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.00352478027344, "t": 797.48291015625, "r": 168.22532653808594, "b": 750.3669357299805, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.57489776611328, "t": 53.50885009765625, "r": 232.79144287109375, "b": 17.6092529296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.3665466308594, "t": 396.3082275390625, "r": 544.1763305664062, "b": 194.62908935546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.26513671875, "t": 453.2540283203125, "r": 534.4469401041666, "b": 465.5614827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 475.3225911458333, "r": 489.2049967447917, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 510.9717610677083, "r": 473.1377766927083, "b": 520.7328694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 526.6743977864584, "r": 473.1377766927083, "b": 537.7086588541666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 543.6501871744791, "r": 473.5605875651042, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 560.6260172526041, "r": 473.1377766927083, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 578.0262044270834, "r": 473.9833984375, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 594.57763671875, "r": 473.9833984375, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 611.9778238932291, "r": 473.9833984375, "b": 623.0120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.9966634114583, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 11, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.26513671875, "t": 453.2540283203125, "r": 534.4469401041666, "b": 465.5614827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.26513671875, "t": 453.2540283203125, "r": 534.4469401041666, "b": 465.5614827473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 475.3225911458333, "r": 489.2049967447917, "b": 486.78125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.8091634114583, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 510.9717610677083, "r": 473.1377766927083, "b": 520.7328694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 526.6743977864584, "r": 473.1377766927083, "b": 537.7086588541666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 543.6501871744791, "r": 473.5605875651042, "b": 555.10888671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 560.6260172526041, "r": 473.1377766927083, "b": 571.6602783203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 578.0262044270834, "r": 473.9833984375, "b": 589.48486328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 594.57763671875, "r": 473.9833984375, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 611.9778238932291, "r": 473.9833984375, "b": 623.0120849609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.9966634114583, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p10.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p10.json new file mode 100644 index 0000000..22d6927 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p10.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.64488220214844, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 347.1368408203125, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "This question is about hydrogen peroxide, H2O2", "text": "This question is about hydrogen peroxide, H2O2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 746.0066731770834, "r": 399.5667317708333, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "The half-equation for the oxidation of hydrogen peroxide is", "text": "The half-equation for the oxidation of hydrogen peroxide is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 267.2234700520833, "t": 720.1185709635416, "r": 380.5397542317708, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "H2O2\u2192O2+2H++2e", "text": "H2O2\u2192O2+2H++2e", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 694.23046875, "r": 352.6335042317708, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Hair bleach solution contains hydrogen peroxide.", "text": "Hair bleach solution contains hydrogen peroxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.007568359375, "t": 667.4935709635416, "r": 372.928955078125, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "A sample of hairbleachsolution is dilutedwithwater.", "text": "A sample of hairbleachsolution is dilutedwithwater.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.8532206217448, "t": 641.1810709635416, "r": 194.9209187825521, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "original solution.", "text": "original solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 629.7223917643229, "r": 515.8427734375, "b": 605.1074829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "A 25.0 cm? sample of the diluted hair bleach solution is acidified with dilute sulfuric acid.", "text": "A 25.0 cm? sample of the diluted hair bleach solution is acidified with dilute sulfuric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 604.2586873372396, "r": 503.1581217447917, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "This acidified sample is titrated with 0.0200 mol dm-3 potassium manganate(VIl) solution.", "text": "This acidified sample is titrated with 0.0200 mol dm-3 potassium manganate(VIl) solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 577.9461873372395, "r": 519.648193359375, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "The reaction is complete when 35.85 cm3 of the potassium manganate(Vll) solution are added.", "text": "The reaction is complete when 35.85 cm3 of the potassium manganate(Vll) solution are added.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 48.62452697753906, "t": 525.3211873372395, "r": 105.2826639811198, "b": 509.1941731770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 508.769775390625, "r": 253.27034505208334, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "acidified hydrogen peroxide.", "text": "acidified hydrogen peroxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 483.30605061848956, "r": 509.5004475911458, "b": 457.41794840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 99]}], "orig": "Calculate the concentration, in mol dm-3, of hydrogen peroxide in the original hair bleachsolution.", "text": "Calculate the concentration, in mol dm-3, of hydrogen peroxide in the original hair bleachsolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 443.41294352213544, "r": 510.3461100260417, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 119]}], "orig": "(Ilf you were unable to write an equation for the reaction you may assume that the This is not the correct mole ratio.)", "text": "(Ilf you were unable to write an equation for the reaction you may assume that the This is not the correct mole ratio.)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.1311442057292, "t": 406.06614176432294, "r": 536.5610758463541, "b": 391.63669840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 235.5118408203125, "t": 128.08730061848962, "r": 304.4318033854167, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Concentration", "text": "Concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 468.4867350260417, "t": 127.66290283203125, "r": 516.265625, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "mol dm-3", "text": "mol dm-3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.3399658203125, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 538.6751708984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.62184143066406, "t": 53.210205078125, "r": 99.05526733398438, "b": 17.57977294921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p11.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p11.json new file mode 100644 index 0000000..d9dfd4c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p11.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 103.5913798014323, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 361.9355875651042, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "State why an indicator is not added in this titration.", "text": "State why an indicator is not added in this titration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 759.5873209635416, "r": 535.7154134114584, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 47.77887980143229, "t": 670.0399373372396, "r": 103.16855875651042, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 667.4935709635416, "r": 388.5733642578125, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Give the oxidation state of oxygen in hydrogen peroxide.", "text": "Give the oxidation state of oxygen in hydrogen peroxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 654.76171875, "r": 535.2926025390625, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 589.4048665364584, "r": 403.7949625651042, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "03.4 Hydrogen peroxide decomposes to form water and oxygen.", "text": "03.4 Hydrogen peroxide decomposes to form water and oxygen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 115.43039957682292, "t": 560.121602376302, "r": 279.0625, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Giveanequationforthisreaction.", "text": "Giveanequationforthisreaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 535.082275390625, "r": 495.9701741536458, "b": 510.04296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 127]}], "orig": "Calculate the amount, in moles, of hydrogen peroxide that would be needed to produce 185 cm? of oxygen gas at 100 kPa and 298 K", "text": "Calculate the amount, in moles, of hydrogen peroxide that would be needed to produce 185 cm? of oxygen gas at 100 kPa and 298 K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 497.31109619140625, "r": 303.58616129557294, "b": 484.15484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "The gas constant, R = 8.31 J K-1 mol-1", "text": "The gas constant, R = 8.31 J K-1 mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 484.15484619140625, "r": 536.1382242838541, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 458.69114176432294, "r": 159.82670084635416, "b": 444.26169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 264.68654378255206, "t": 129.36049397786462, "r": 305.7002766927083, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Amount", "text": "Amount", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 497.2386067708333, "t": 128.93609619140625, "r": 518.3797200520834, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "mol", "text": "mol", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.73190689086914, "t": 53.1451416015625, "r": 99.24485778808594, "b": 17.90057373046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p12.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p12.json new file mode 100644 index 0000000..5484ed6 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p12.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 501.8896484375, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 136]}], "orig": "03.5 Hydrazine (NzH4) is used as a rocket fuel that is oxidised by hydrogen peroxide. The equation for this reaction in the gas phase is", "text": "03.5 Hydrazine (NzH4) is used as a rocket fuel that is oxidised by hydrogen peroxide. The equation for this reaction in the gas phase is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 116.27604166666667, "t": 732.426035563151, "r": 123.46400960286458, "b": 724.7869160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 238.4715779622396, "t": 713.7526448567709, "r": 331.49241129557294, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "2H\u2014O\u2014O\u2014H", "text": "2H\u2014O\u2014O\u2014H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 383.0767008463542, "t": 713.7526448567709, "r": 419.8622233072917, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "N\u4e09N", "text": "N\u4e09N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 438.0435384114583, "t": 712.0550638834635, "r": 447.7684733072917, "b": 703.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "+", "text": "+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 466.3726399739583, "t": 713.7526448567709, "r": 534.8697916666666, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "4H\u2014O\u2014H", "text": "4H\u2014O\u2014H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 252.00189208984375, "t": 678.1034545898438, "r": 535.2926025390625, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "The enthalpy change for this reaction, \u25b3H = -789 kJ mol-1", "text": "The enthalpy change for this reaction, \u25b3H = -789 kJ mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 651.3665568033854, "r": 358.1302083333333, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Table3showssomemeanbondenthalpyvalues.", "text": "Table3showssomemeanbondenthalpyvalues.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 304.4318033854167, "t": 625.4784545898438, "r": 345.445556640625, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 3", "text": "Table 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 524.472391764323, "r": 296.398193359375, "b": 508.769775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Define the term mean bond enthalpy.", "text": "Define the term mean bond enthalpy.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 496.46230061848956, "r": 501.0440266927083, "b": 470.57419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "Use the equation and the data in Table 3 to calculate a value for the O-O bond enthalpy in hydrogenperoxide.", "text": "Use the equation and the data in Table 3 to calculate a value for the O-O bond enthalpy in hydrogenperoxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.976806640625, "t": 470.57419840494794, "r": 536.1382242838541, "b": 457.41794840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 482.8626708984375, "t": 115.77984619140625, "r": 525.9905192057291, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "kJ mol-1", "text": "kJ mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 445.11049397786456, "r": 162.78645833333334, "b": 432.37864176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}, {"page_no": 12, "bbox": {"l": 232.55208333333334, "t": 117.05303955078125, "r": 304.85463460286456, "b": 101.35040283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [11, 24]}, {"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [25, 50]}], "orig": "Definition Bond enthalpy Donotwrite outsidethe box", "text": "Definition Bond enthalpy Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 550.0913492838541, "t": 118.75063069661462, "r": 564.89013671875, "b": 106.86757405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 114.2842788696289, "t": 734.2892837524414, "r": 534.5986938476562, "b": 683.3049163818359, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.672115325927734, "t": 53.1563720703125, "r": 99.08405303955078, "b": 17.3460693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 12, "bbox": {"l": 164.72103881835938, "t": 601.3435821533203, "r": 467.8115234375, "b": 535.7142333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/9"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 279.4853108723958, "t": 248.27117919921875, "r": 304.85463460286456, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "N-H", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 329.3782958984375, "t": 248.27117919921875, "r": 354.7476399739583, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "N-N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 248.27117919921875, "r": 405.0634358723958, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "N=N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 429.5871175130208, "t": 248.27117919921875, "r": 455.3792317708333, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "H-O", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 168.70596313476562, "t": 275.008056640625, "r": 262.5724283854167, "b": 299.62298583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Meanbond enthalpy / kJ mol-1", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 281.59942626953125, "t": 280.52520751953125, "r": 303.16335042317706, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "388", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.49241129557294, "t": 280.10080973307294, "r": 353.4791666666667, "b": 294.53025309244794, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "163", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 380.9625651041667, "t": 280.52520751953125, "r": 402.9493408203125, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "944", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 280.52520751953125, "r": 453.26513671875, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "463", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 2, "num_cols": 5, "orientation": "rot_0", "grid": [[{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 279.4853108723958, "t": 248.27117919921875, "r": 304.85463460286456, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "N-H", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 329.3782958984375, "t": 248.27117919921875, "r": 354.7476399739583, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "N-N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 379.2712809244792, "t": 248.27117919921875, "r": 405.0634358723958, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "N=N", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 429.5871175130208, "t": 248.27117919921875, "r": 455.3792317708333, "b": 262.2762044270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "H-O", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 168.70596313476562, "t": 275.008056640625, "r": 262.5724283854167, "b": 299.62298583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Meanbond enthalpy / kJ mol-1", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 281.59942626953125, "t": 280.52520751953125, "r": 303.16335042317706, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "388", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 331.49241129557294, "t": 280.10080973307294, "r": 353.4791666666667, "b": 294.53025309244794, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "163", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 380.9625651041667, "t": 280.52520751953125, "r": 402.9493408203125, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "944", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 431.2784016927083, "t": 280.52520751953125, "r": 453.26513671875, "b": 293.25705973307294, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "463", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p13.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p13.json new file mode 100644 index 0000000..db7ceae --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p13.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 207.6055908203125, "t": 774.8655446370443, "r": 370.3920491536458, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.50332260131836, "t": 53.0228271484375, "r": 99.4515609741211, "b": 16.822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p14.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p14.json new file mode 100644 index 0000000..cef2635 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p14.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 774.0167541503906, "r": 78.64488220214844, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 307.3915608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "This question is about acids and bases.", "text": "This question is about acids and bases.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 87.52414957682292, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "04.", "text": "04.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 458.7618408203125, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 105]}], "orig": "Calculate the pH of a 0.150 mol dm-3 solution of ethanoic acid at 25 \u00b0C Giveyour answerto2decimal places.", "text": "Calculate the pH of a 0.150 mol dm-3 solution of ethanoic acid at 25 \u00b0C Giveyour answerto2decimal places.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 689.9865112304688, "r": 371.6604817708333, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "text": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.1311442057292, "t": 677.6790568033854, "r": 536.5610758463541, "b": 663.2496134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 337.83473714192706, "t": 474.81817626953125, "r": 355.1704508463542, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 434.50063069661456, "r": 101.9000956217448, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 432.80303955078125, "r": 286.67327880859375, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Strontium is anelement inGroup 2.", "text": "Strontium is anelement inGroup 2.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 407.76373291015625, "r": 520.4938151041666, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 162]}], "orig": "Calculate the pH of a 0.0100 mol dm-3 solution of strontium hydroxide at 10 \u00b0C You may assume that strontium hydroxide is completely dissociated in this solution.", "text": "Calculate the pH of a 0.0100 mol dm-3 solution of strontium hydroxide at 10 \u00b0C You may assume that strontium hydroxide is completely dissociated in this solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 112.89346313476562, "t": 369.99257405598956, "r": 421.976318359375, "b": 357.26072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "At 10 \u00b0C the ionic product of water, Kw = 2.93 x 10-15 mol2 dm-6", "text": "At 10 \u00b0C the ionic product of water, Kw = 2.93 x 10-15 mol2 dm-6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.1311442057292, "t": 356.83632405598956, "r": 536.1382242838541, "b": 342.40688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 336.5662841796875, "t": 128.51169840494788, "r": 356.4389241536458, "b": 117.90183512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.77970886230469, "t": 53.17462158203125, "r": 99.19371795654297, "b": 17.7877197265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p15.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p15.json new file mode 100644 index 0000000..855a1ea --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p15.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/18"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 50.31581115722656, "t": 776.5631256103516, "r": 109.0880635579427, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 105.2826639811198, "t": 774.441151936849, "r": 451.9966634114583, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "The pH of a barium hydroxide solution is lower at 50 \u00b0C than at 10 \u00b0C", "text": "The pH of a barium hydroxide solution is lower at 50 \u00b0C than at 10 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 750.6750183105469, "r": 495.9701741536458, "b": 726.0600992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 122]}], "orig": "At 50 \u00b0C a 25 cm? sample of this barium hydroxide solution was neutralised by 22.45cm3ofhydrochloricacidaddedfromaburette.", "text": "At 50 \u00b0C a 25 cm? sample of this barium hydroxide solution was neutralised by 22.45cm3ofhydrochloricacidaddedfromaburette.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 714.6014302571615, "r": 535.7154134114584, "b": 676.8302612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 168]}], "orig": "Deduce the volume of this hydrochloric acid that should be added from a burette to neutralise another 25 cm3 sample of this barium hydroxide solution at 10 \u00b0C [2 marks]", "text": "Deduce the volume of this hydrochloric acid that should be added from a burette to neutralise another 25 cm3 sample of this barium hydroxide solution at 10 \u00b0C [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 662.4008382161459, "r": 271.02886962890625, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Circle () the correct answer.", "text": "Circle () the correct answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 154.33001708984375, "t": 633.5419514973959, "r": 215.63920084635416, "b": 619.5369262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "> 22.45 cm3", "text": "> 22.45 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 294.7069091796875, "t": 633.1175537109375, "r": 355.1704508463542, "b": 619.5369262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "= 22.45 cm3", "text": "= 22.45 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 435.0837809244792, "t": 632.6931762695312, "r": 495.12451171875, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "< 22.45 cm3", "text": "< 22.45 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 594.9219970703125, "r": 216.06201171875, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Explain your answer", "text": "Explain your answer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 47.77887980143229, "t": 480.33530680338544, "r": 103.16855875651042, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 478.63771565755206, "r": 521.3394775390625, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "State how a buffer solution can be made from solutions of potassium hydroxide and ethanoicacid.", "text": "State how a buffer solution can be made from solutions of potassium hydroxide and ethanoicacid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 441.71535237630206, "r": 514.9971516927084, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "Give an equation for the reaction between potassium hydroxide and ethanoic acid.", "text": "Give an equation for the reaction between potassium hydroxide and ethanoic acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.3162841796875, "t": 418.79799397786456, "r": 518.3797200520834, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "State how this buffer solution resists changes in pH when a small amount of acid is added.", "text": "State how this buffer solution resists changes in pH when a small amount of acid is added.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.1311442057292, "t": 393.33428955078125, "r": 535.7154134114584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 366.59739176432294, "r": 250.31060791015625, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Howbuffersolutionismade", "text": "Howbuffersolutionismade", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 266.0157267252604, "r": 159.40387980143228, "b": 251.58632405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 189.20021565755212, "r": 300.20359293619794, "b": 175.61956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Howbuffer solutionresists pH change", "text": "Howbuffer solutionresists pH change", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 15, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.741512298583984, "t": 53.1185302734375, "r": 99.22008514404297, "b": 17.48614501953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p16.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p16.json new file mode 100644 index 0000000..1d6cda9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p16.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 551.7826741536459, "t": 217.63470458984375, "r": 567.0042317708334, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 773.16796875, "r": 434.2381591796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "A buffer solution is made by adding 2.00 g of sodium hydroxide to 500 cm? of 1.00 mol dm-3 ethanoic acid solution.", "text": "A buffer solution is made by adding 2.00 g of sodium hydroxide to 500 cm? of 1.00 mol dm-3 ethanoic acid solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.43039957682292, "t": 734.972401936849, "r": 344.1770833333333, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Calculate the pH of this buffer solution at 25 \u00b0C", "text": "Calculate the pH of this buffer solution at 25 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.007568359375, "t": 708.659901936849, "r": 300.20359293619794, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Give your answer to 2 decimal places.", "text": "Give your answer to 2 decimal places.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 684.4693806966146, "r": 372.0833333333333, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "text": "For ethanoic acid, Ka = 1.74 x 10-5 mol dm-3 at 25 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 483.7083333333333, "t": 671.3131306966146, "r": 536.1382242838541, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 336.9890950520833, "t": 213.81512451171875, "r": 356.0160725911458, "b": 201.93206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 551.7826741536459, "t": 217.63470458984375, "r": 567.0042317708334, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 542.4967651367188, "t": 242.42291259765625, "r": 574.9304809570312, "b": 202.35992431640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.75214385986328, "t": 53.18939208984375, "r": 99.23369598388672, "b": 17.509033203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p17.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p17.json new file mode 100644 index 0000000..c3421f3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p17.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/18"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/10"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.29071044921875, "t": 811.7879257202148, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 421.976318359375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "This question is about Period 3 elements and their compounds.", "text": "This question is about Period 3 elements and their compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 421.5535074869792, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "05. Which is not a correct statement about magnesium hydroxide?", "text": "Which is not a correct statement about magnesium hydroxide?", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "05."}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.0506591796875, "t": 716.2990112304688, "r": 536.1382242838541, "b": 701.8695780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 701.4451802571615, "r": 204.2230021158854, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 661.9764404296875, "r": 290.0558675130208, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "It is used to neutralise stomach acid", "text": "It is used to neutralise stomach acid", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 611.8978068033854, "r": 307.3915608723958, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "It forms a solutionwithpH=14at 25\u00b0C", "text": "It forms a solutionwithpH=14at 25\u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 562.2435709635417, "r": 290.0558675130208, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "It has the empirical formula H2MgO2", "text": "It has the empirical formula H2MgO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 48.201700846354164, "t": 511.74053955078125, "r": 456.2248942057292, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "05.2 Give an equation for the reaction of aluminium oxide with sulfuric acid.", "text": "05.2 Give an equation for the reaction of aluminium oxide with sulfuric acid.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.0506591796875, "t": 496.03794352213544, "r": 535.7154134114584, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 17, "bbox": {"l": 50.31581115722656, "t": 403.51979573567706, "r": 530.6415608723959, "b": 375.50970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 150]}], "orig": "05.3 Identify a reagent or test that could be used to distinguish between aqueous solutions ofsulfurdioxideandsulfurtrioxidewiththesameconcentrations.", "text": "05.3 Identify a reagent or test that could be used to distinguish between aqueous solutions ofsulfurdioxideandsulfurtrioxidewiththesameconcentrations.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 361.50465901692706, "r": 285.4048258463542, "b": 349.62160237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Statetheobservationineachcase.", "text": "Statetheobservationineachcase.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.1311442057292, "t": 349.62160237630206, "r": 536.1382242838541, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 322.88470458984375, "r": 192.38399251302084, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Reagent or test", "text": "Reagent or test", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 296.9966023763021, "r": 305.7002766927083, "b": 285.9623006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Observationwithsulfurdioxidesolution", "text": "Observationwithsulfurdioxidesolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 246.06915283203125, "r": 306.96875, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Observationwithsulfur trioxidesolution", "text": "Observationwithsulfur trioxidesolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 190.69270833333334, "t": 141.66794840494788, "r": 393.6472574869792, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Question5 continues on the next page", "text": "Question5 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.75908660888672, "t": 53.14544677734375, "r": 99.28108215332031, "b": 17.828369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p18.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p18.json new file mode 100644 index 0000000..5457096 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p18.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.73863728841146, "t": 774.0167541503906, "r": 90.06107584635417, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 87.52414957682292, "t": 771.4703877766927, "r": 99.3631591796875, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 771.4703877766927, "r": 454.9564208984375, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "The mass spectrum of the element phosphorus has a peak at = 124", "text": "The mass spectrum of the element phosphorus has a peak at = 124", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 741.7627258300781, "r": 391.5331217447917, "b": 728.6064758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Give the formula of the species responsible for this peak.", "text": "Give the formula of the species responsible for this peak.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.553955078125, "t": 728.6064758300781, "r": 535.2926025390625, "b": 715.4502258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 663.2496134440104, "r": 102.32291666666667, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 646.6982014973959, "r": 156.866943359375, "b": 634.8151448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "solution.", "text": "solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 490.0506591796875, "t": 634.8151448567709, "r": 536.1382242838541, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.31581115722656, "t": 542.7213948567708, "r": 88.36979166666667, "b": 529.1407470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 91.3295389811198, "t": 540.175028483073, "r": 98.51751708984375, "b": 531.6871134440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 541.8725992838542, "r": 531.0643717447916, "b": 515.9844970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "Draw the displayed formula of the molecule formed when phosphorus(V) oxide reacts withwater.", "text": "Draw the displayed formula of the molecule formed when phosphorus(V) oxide reacts withwater.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 490.0506591796875, "t": 502.4038492838542, "r": 535.7154134114584, "b": 487.97442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.85944747924805, "t": 53.1580810546875, "r": 99.19698333740234, "b": 17.61865234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p19.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p19.json new file mode 100644 index 0000000..0dfeb8e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p19.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 775.2899424235026, "r": 390.6875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Question5 continues on the nextpage", "text": "Question5 continues on the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 38.80020523071289, "t": 789.092601776123, "r": 541.6115112304688, "b": 73.8773193359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.55806350708008, "t": 53.1070556640625, "r": 99.49885559082031, "b": 17.413818359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p2.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p2.json new file mode 100644 index 0000000..812fc8f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p2.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.77225240071615, "t": 27.93007405598962, "r": 79.91335042317708, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 173.35699462890625, "t": 775.7143351236979, "r": 404.2177734375, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 182.6590779622396, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.46540451049805, "t": 52.9984130859375, "r": 99.5510482788086, "b": 16.2794189453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p20.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p20.json new file mode 100644 index 0000000..9290697 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p20.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 296.82102457682294, "b": 798.2072804768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.7", "text": "05.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.7", "text": "05.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 378.4256591796875, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Table 4 shows the melting points of three substances.", "text": "Table 4 shows the melting points of three substances.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 20, "bbox": {"l": 304.0089925130208, "t": 746.4310709635416, "r": 346.2911783854167, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 4", "text": "Table 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 243.12261962890625, "t": 716.2990112304688, "r": 300.20359293619794, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Substance", "text": "Substance", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 335.2978108723958, "t": 715.4502258300781, "r": 421.976318359375, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Meltingpoint/ K", "text": "Meltingpoint/ K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 223.67281087239584, "t": 694.6548563639323, "r": 301.47206624348956, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "sodiumchloride", "text": "sodiumchloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 364.8953450520833, "t": 695.503651936849, "r": 392.3787841796875, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1074", "text": "1074", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 223.25, "t": 674.2838948567709, "r": 263.41807047526044, "b": 660.2788492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "chlorine", "text": "chlorine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 371.2376708984375, "t": 675.1326802571615, "r": 391.9559733072917, "b": 659.0056762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "172", "text": "172", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 222.40435791015625, "t": 652.6397298177084, "r": 312.0426025390625, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "hydrogen chloride", "text": "hydrogen chloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 370.3920491536458, "t": 652.6397298177084, "r": 392.3787841796875, "b": 638.2103068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "158", "text": "158", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.8532206217448, "t": 621.2344970703125, "r": 428.3186442057292, "b": 608.5026448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Explain why the melting points of these substances are different.", "text": "Explain why the melting points of these substances are different.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 596.1951904296875, "r": 442.2717692057292, "b": 583.0389404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "You should refer to the structure of and bonding in each substance.", "text": "You should refer to the structure of and bonding in each substance.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 583.0389404296875, "r": 536.1382242838541, "b": 568.6094970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 57.9266103108724, "t": 27.08127848307288, "r": 81.1818135579427, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 46.760440826416016, "t": 776.4064331054688, "r": 105.32807159423828, "b": 759.193115234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.70090866088867, "t": 53.146484375, "r": 99.1500244140625, "b": 17.34271240234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p21.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p21.json new file mode 100644 index 0000000..2b3140d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p21.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.1765950520833, "t": 812.6367162068685, "r": 296.82102457682294, "b": 793.5389353434244, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 474.40625, "t": 69.09641520182288, "r": 538.6751708984375, "b": 55.94016520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 58.34943135579427, "t": 25.80808512369788, "r": 79.91335042317708, "b": 13.500630696614621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 553.4739583333334, "t": 108.14076741536462, "r": 567.8498942057291, "b": 94.98451741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 479.9029134114583, "t": 24.95928955078125, "r": 539.5208333333334, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.74695587158203, "t": 53.06658935546875, "r": 99.47607421875, "b": 17.3372802734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p22.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p22.json new file mode 100644 index 0000000..aa00d4c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p22.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 462.9900309244792, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "This question is about some elements in Group 7 and their compounds.", "text": "This question is about some elements in Group 7 and their compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 85.4100341796875, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "06.", "text": "06.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 87.52414957682292, "t": 728.1820780436198, "r": 98.51751708984375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 504.8494059244792, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 121]}], "orig": "Chlorine is added to some drinking water supplies to decrease the risk of people suffering from diseases such as cholera.", "text": "Chlorine is added to some drinking water supplies to decrease the risk of people suffering from diseases such as cholera.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 689.5621236165365, "r": 405.0634358723958, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "State why the amount of chlorine added must be controlled.", "text": "State why the amount of chlorine added must be controlled.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.0506591796875, "t": 677.2546590169271, "r": 536.1382242838541, "b": 662.8252156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 49.04734802246094, "t": 586.0097045898438, "r": 521.7622884114584, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "06.2 Give an equation for the reaction of chlorine with water to form a solution containing", "text": "06.2 Give an equation for the reaction of chlorine with water to form a solution containing", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 113.3162841796875, "t": 569.4582926432292, "r": 166.59184773763022, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "two acids.", "text": "two acids.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.43039957682292, "t": 543.5701904296875, "r": 427.4729817708333, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Explain, with reference to electrons,why this is a redox reaction.", "text": "Explain, with reference to electrons,why this is a redox reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.1311442057292, "t": 530.8383178710938, "r": 535.7154134114584, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 505.37461344401044, "r": 159.82670084635416, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 429.83229573567706, "r": 173.35699462890625, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Explanation", "text": "Explanation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.04734802246094, "t": 310.5772501627604, "r": 101.9000956217448, "b": 296.57220458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.3162841796875, "t": 309.72845458984375, "r": 441.8489583333333, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "A student bubbles chlorine gas through a solution of sodium iodide.", "text": "A student bubbles chlorine gas through a solution of sodium iodide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 281.7183634440104, "r": 340.37168375651044, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Statetheobservationthestudentwouldmake.", "text": "Statetheobservationthestudentwouldmake.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 256.2546590169271, "r": 302.7405192057292, "b": 243.94720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Give an ionic equation for the reaction.", "text": "Give an ionic equation for the reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.553955078125, "t": 243.94720458984375, "r": 536.1382242838541, "b": 229.51776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 218.05910237630212, "r": 175.04829915364584, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Observation", "text": "Observation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 192.17100016276038, "r": 183.92755126953125, "b": 179.43914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "lonic equation", "text": "lonic equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.68296813964844, "t": 53.0728759765625, "r": 99.08783721923828, "b": 17.2548828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p23.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p23.json new file mode 100644 index 0000000..a7b3670 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p23.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 503.5809733072917, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "The student adds a few drops of concentrated sulfuric acid to a small amount of solid sodium iodide.", "text": "The student adds a few drops of concentrated sulfuric acid to a small amount of solid sodium iodide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 733.2748209635416, "r": 369.54638671875, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Two gaseous sulfur-containing products are formed.", "text": "Two gaseous sulfur-containing products are formed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 708.2355041503906, "r": 494.7017008463542, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Give an equation for the formation of each of these sulfur-containing products.", "text": "Give an equation for the formation of each of these sulfur-containing products.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 681.9230041503906, "r": 422.3991292317708, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "State the role of sulfuric acid in the formation of these products.", "text": "State the role of sulfuric acid in the formation of these products.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 668.7667643229166, "r": 536.1382242838541, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 643.7274373372396, "r": 168.70596313476562, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Equation 1", "text": "Equation 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 566.9119262695312, "r": 168.70596313476562, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Equation 2", "text": "Equation 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 489.67197672526044, "r": 138.68559773763022, "b": 476.94012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Role", "text": "Role", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 449.77886962890625, "r": 101.9000956217448, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.5", "text": "06.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 448.08127848307294, "r": 509.5004475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 115]}], "orig": "The student adds a few drops of acidified silver nitrate solution to a solution of an unknown impure sodium halide.", "text": "The student adds a few drops of acidified silver nitrate solution to a solution of an unknown impure sodium halide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 420.91998291015625, "r": 422.3991292317708, "b": 408.18813069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "The student observes bubbles of gas and a colourless solution.", "text": "The student observes bubbles of gas and a colourless solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 408.18813069661456, "r": 457.4933675130208, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "The student bubbles the gas through calcium hydroxide solution and a white precipitate forms.", "text": "The student bubbles the gas through calcium hydroxide solution and a white precipitate forms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 369.56817626953125, "r": 313.3110758463542, "b": 357.26072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Deduce the identity of the sodium halide.", "text": "Deduce the identity of the sodium halide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 343.25567626953125, "r": 265.5321858723958, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Suggest the identity of the gas.", "text": "Suggest the identity of the gas.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 317.7919718424479, "r": 448.1912841796875, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Give an ionic equation for the formation of this gas from the impurity.", "text": "Give an ionic equation for the formation of this gas from the impurity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 303.78692626953125, "r": 535.7154134114584, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 278.74761962890625, "r": 233.8205362955729, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Identityofsodium halide", "text": "Identityofsodium halide", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 253.28387451171875, "r": 184.35038248697916, "b": 238.85447184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Identity of gas", "text": "Identity of gas", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.73910522460938, "t": 227.39577229817712, "r": 184.35038248697916, "b": 213.39072672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "lonic equation", "text": "lonic equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 23, "bbox": {"l": 190.69270833333334, "t": 110.26275634765625, "r": 393.2244059244792, "b": 95.83331298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 6 continues on the next page", "text": "Question 6 continues on the next page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 23, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 47.008304595947266, "t": 776.2696914672852, "r": 104.7603530883789, "b": 758.913818359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.707786560058594, "t": 53.05535888671875, "r": 99.06978607177734, "b": 17.37445068359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p24.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p24.json new file mode 100644 index 0000000..16943cc --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p24.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/17"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.6", "text": "06.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.6", "text": "06.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 380.116943359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "The ClF2+ ion contains two different Group 7 elements.", "text": "The ClF2+ ion contains two different Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.3162841796875, "t": 748.128651936849, "r": 511.6145833333333, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Use your understanding of the electron pair repulsion theory to draw the shape of this ion.", "text": "Use your understanding of the electron pair repulsion theory to draw the shape of this ion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 709.5086873372396, "r": 405.0634358723958, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Include any lone pairs of electrons that influence the shape.", "text": "Include any lone pairs of electrons that influence the shape.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.8532206217448, "t": 683.6205851236979, "r": 365.3181559244792, "b": 670.8887329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Explain why the ion has the shape you have drawn.", "text": "Explain why the ion has the shape you have drawn.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.43039957682292, "t": 658.1568806966146, "r": 335.72064208984375, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Suggest a value for the bond angle in the ion.", "text": "Suggest a value for the bond angle in the ion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.553955078125, "t": 645.4250284830729, "r": 535.2926025390625, "b": 632.2687784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 621.2344970703125, "r": 147.98768107096353, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Shape", "text": "Shape", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 442.56414794921875, "r": 173.35699462890625, "b": 428.13470458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Explanation", "text": "Explanation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.3162841796875, "t": 365.32419840494794, "r": 171.66571044921875, "b": 349.62160237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Bond angle", "text": "Bond angle", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 324.5822957356771, "r": 101.054443359375, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.7", "text": "06.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 321.61151123046875, "r": 472.7149658203125, "b": 309.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Magnesium is used in the extraction of titanium from titanium(IV) chloride.", "text": "Magnesium is used in the extraction of titanium from titanium(IV) chloride.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 295.29901123046875, "r": 279.0625, "b": 282.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Give an equation for this reaction.", "text": "Give an equation for this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 490.0506591796875, "t": 283.41595458984375, "r": 536.1382242838541, "b": 268.5621134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 551.3598225911459, "t": 235.45928955078125, "r": 566.1586100260416, "b": 223.15183512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 551.3598225911459, "t": 235.45928955078125, "r": 566.1586100260416, "b": 223.15183512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 47.35185241699219, "t": 775.9591522216797, "r": 104.07383728027344, "b": 759.1455383300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.718467712402344, "t": 53.13372802734375, "r": 99.17106628417969, "b": 17.50701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 542.27197265625, "t": 259.7894287109375, "r": 574.0704956054688, "b": 221.617919921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p25.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p25.json new file mode 100644 index 0000000..24b9cae --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p25.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/19"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 80.33617146809895, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 287.94175211588544, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Copper(ll) complexes are coloured.", "text": "Copper(ll) complexes are coloured.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 759.1629282633463, "r": 520.0710042317709, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 99]}], "orig": "The colour is caused by the d electrons of copper moving from their ground state to anexcitedstate.", "text": "The colour is caused by the d electrons of copper moving from their ground state to anexcitedstate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 721.3917541503906, "r": 103.5913798014323, "b": 705.2647399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 719.269785563151, "r": 444.8087158203125, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Explain why aqueous solutions containing [CuCl4]\u00b2- ions are yellow.", "text": "Explain why aqueous solutions containing [CuCl4]\u00b2- ions are yellow.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 705.6891377766927, "r": 536.1382242838541, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 48.201700846354164, "t": 535.9310709635417, "r": 464.2585042317708, "b": 519.8040568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "07.2 When a d electron moves from the ground state to the excited state in a", "text": "07.2 When a d electron moves from the ground state to the excited state in a", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.16192626953125, "t": 518.9552612304688, "r": 371.2376708984375, "b": 507.49660237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "copper complex, the energy change is 3.98 x 10-19 J", "text": "copper complex, the energy change is 3.98 x 10-19 J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 493.91595458984375, "r": 315.42519124348956, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "The Planck constant, h = 6.63 \u00d7 10-34 J s", "text": "The Planck constant, h = 6.63 \u00d7 10-34 J s", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 468.02785237630206, "r": 369.1235758463542, "b": 454.87160237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Calculate the frequency, in s-1, of the light absorbed.", "text": "Calculate the frequency, in s-1, of the light absorbed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.976806640625, "t": 454.87160237630206, "r": 535.7154134114584, "b": 441.71535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 292.16998291015625, "t": 306.3332722981771, "r": 346.2911783854167, "b": 289.35748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Frequency", "text": "Frequency", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 48.201700846354164, "t": 264.31817626953125, "r": 102.32291666666667, "b": 248.61553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 261.3473917643229, "r": 504.4265950520833, "b": 234.18609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "State three ways in which a transition metal complex can be changed to alter its colour.", "text": "State three ways in which a transition metal complex can be changed to alter its colour.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 234.61049397786462, "r": 535.7154134114584, "b": 221.45424397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 181.56109619140625, "r": 121.3499043782552, "b": 171.80002848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 156.09739176432288, "r": 121.77272542317708, "b": 146.33632405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 190.69270833333334, "t": 117.47743733723962, "r": 393.2244059244792, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question7continueson the nextpage", "text": "Question7continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 63.42329406738281, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.63474655151367, "t": 53.11236572265625, "r": 99.09383392333984, "b": 17.3360595703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p26.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p26.json new file mode 100644 index 0000000..d9a8240 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p26.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/20"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 198.726318359375, "t": 724.3625183105469, "r": 268.06911214192706, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "[CuCl4]2- (aq)", "text": "[CuCl4]2- (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 698.8988138834635, "r": 241.43133544921875, "b": 688.7133280436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "excess", "text": "excess", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 687.4401448567709, "r": 250.31060791015625, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "aqueous", "text": "aqueous", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 379.2712809244792, "t": 690.8353068033854, "r": 449.4597574869792, "b": 673.8594970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na4EDTA (aq)", "text": "Na4EDTA (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.9142862955729, "t": 675.5570780436198, "r": 252.4247029622396, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "ammonia", "text": "ammonia", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 197.88067626953125, "t": 650.9421590169271, "r": 232.1292521158854, "b": 634.3907470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Q (aq)", "text": "Q (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 371.2376708984375, "t": 650.5177612304688, "r": 405.4862467447917, "b": 633.9663492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "R (aq)", "text": "R (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 771.8947804768881, "r": 470.600830078125, "b": 743.8847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Consider the following reaction scheme in which P, Q and R are different complex ions of copper.", "text": "Consider the following reaction scheme in which P, Q and R are different complex ions of copper.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 198.726318359375, "t": 724.3625183105469, "r": 268.06911214192706, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "[CuCl4]2- (aq)", "text": "[CuCl4]2- (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 698.8988138834635, "r": 241.43133544921875, "b": 688.7133280436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "excess", "text": "excess", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.4914754231771, "t": 687.4401448567709, "r": 250.31060791015625, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "aqueous", "text": "aqueous", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 379.2712809244792, "t": 690.8353068033854, "r": 449.4597574869792, "b": 673.8594970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na4EDTA (aq)", "text": "Na4EDTA (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 205.9142862955729, "t": 675.5570780436198, "r": 252.4247029622396, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "ammonia", "text": "ammonia", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 197.88067626953125, "t": 650.9421590169271, "r": 232.1292521158854, "b": 634.3907470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Q (aq)", "text": "Q (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 371.2376708984375, "t": 650.5177612304688, "r": 405.4862467447917, "b": 633.9663492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "R (aq)", "text": "R (aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.62452697753906, "t": 607.2294514973959, "r": 105.2826639811198, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.\u2463", "text": "07.\u2463", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 112.89346313476562, "t": 604.6830851236979, "r": 293.015625, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Name the shape of the [CuCl4]\u00b2- ion.", "text": "Name the shape of the [CuCl4]\u00b2- ion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 591.1024373372396, "r": 535.7154134114584, "b": 576.6730143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 48.201700846354164, "t": 527.4431762695312, "r": 460.8759358723958, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "07.5 Give an ionic equation for the conversion of [CuCl4]\u00b2- to complex ion P.", "text": "07.5 Give an ionic equation for the conversion of [CuCl4]\u00b2- to complex ion P.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.0506591796875, "t": 511.74053955078125, "r": 536.1382242838541, "b": 497.31109619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 421.34438069661456, "r": 410.1372884114583, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "07.6 State the colour of the solution containing the complex ion Q.", "text": "07.6 State the colour of the solution containing the complex ion Q.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 392.90989176432294, "r": 399.9895833333333, "b": 380.17803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Give an ionic equation for the conversion of [CuCl4]\u00b2- to Q.", "text": "Give an ionic equation for the conversion of [CuCl4]\u00b2- to Q.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.1311442057292, "t": 380.60243733723956, "r": 535.7154134114584, "b": 366.17299397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 355.13873291015625, "r": 148.41051228841147, "b": 340.70928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Colour", "text": "Colour", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 329.2506306966146, "r": 159.82670084635416, "b": 314.39678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.62452697753906, "t": 238.85447184244788, "r": 103.5913798014323, "b": 222.72743733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 235.03489176432288, "r": 225.36409505208334, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Identifycomplex ion R.", "text": "Identifycomplex ion R.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.0506591796875, "t": 222.30303955078125, "r": 536.5610758463541, "b": 207.87359619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 554.319580078125, "t": 200.65887451171875, "r": 568.6955159505209, "b": 188.35142008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 197.84866333007812, "t": 729.5112686157227, "r": 449.76068115234375, "b": 635.7095031738281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.6900520324707, "t": 53.19793701171875, "r": 99.08284759521484, "b": 17.35870361328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p27.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p27.json new file mode 100644 index 0000000..37166df --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p27.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.89299011230469, "t": 746.4310709635416, "r": 83.71875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 48.62452697753906, "t": 350.04600016276044, "r": 109.0880635579427, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 61.73200480143229, "t": 23.68609619140625, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 249.4649658203125, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "This question is about cells.", "text": "This question is about cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 113.3162841796875, "t": 745.1578877766927, "r": 523.4535725911459, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "The half-equations for two electrodes that combine to make a non-rechargeable cell are", "text": "The half-equations for two electrodes that combine to make a non-rechargeable cell are", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 27, "bbox": {"l": 113.73910522460938, "t": 710.3574829101562, "r": 512.8830159505209, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Zn2+(aq) + 2e-\u2192 Zn(s) E =-0.76 V", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 680.2254231770834, "r": 512.460205078125, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "(1)OH +(be)HN + (s)\u03b5OuW -Z + (be)+HN\u4e59 + (s)OuW\u4e59 E=+0.52V", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 653.9129231770834, "r": 299.78076171875, "b": 639.4834798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Identify the oxidising agent in this cell.", "text": "Identify the oxidising agent in this cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 27, "bbox": {"l": 115.43039957682292, "t": 574.9754231770833, "r": 462.9900309244792, "b": 562.2435709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Figure 1 shows a cross-section through a rechargeable silver-zinc cell", "text": "Figure 1 shows a cross-section through a rechargeable silver-zinc cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 302.3177083333333, "t": 554.6044514973958, "r": 347.9824625651042, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 293.86126708984375, "t": 532.9603068033855, "r": 323.88161214192706, "b": 520.652852376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Metal", "text": "Metal", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.4729817708333, "t": 496.88669840494794, "r": 476.9431559244792, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Insulation", "text": "Insulation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 252.00189208984375, "t": 473.12058512369794, "r": 361.9355875651042, "b": 461.66192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Mixtureof Zn andZnO", "text": "Mixtureof Zn andZnO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.0501708984375, "t": 472.27178955078125, "r": 457.070556640625, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Metal", "text": "Metal", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 267.64630126953125, "t": 460.81313069661456, "r": 346.7139892578125, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "in an electrolyte", "text": "in an electrolyte", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.0501708984375, "t": 431.10544840494794, "r": 464.6813151041667, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Porous", "text": "Porous", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 427.0501708984375, "t": 419.22239176432294, "r": 476.9431559244792, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "separator", "text": "separator", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 172.08854166666666, "t": 387.39276123046875, "r": 231.28361002604166, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Ag2O paste", "text": "Ag2O paste", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 111.625, "t": 347.49961344401044, "r": 392.8015950520833, "b": 332.64577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Suggest the function of the porous separator in Figure 1.", "text": "Suggest the function of the porous separator in Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.0506591796875, "t": 640.7566731770834, "r": 535.7154134114584, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.4734700520833, "t": 333.49456787109375, "r": 534.8697916666666, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 48.201700846354164, "t": 274.92803955078125, "r": 514.5743408203125, "b": 257.9522501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "08.3 The standard electrode potentials for two half-equations for the silver-zinc cell are", "text": "08.3 The standard electrode potentials for two half-equations for the silver-zinc cell are", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 27, "bbox": {"l": 150.94743855794272, "t": 246.91794840494788, "r": 506.5406901041667, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Ag2O(s)+ H2O(l) + 2e- \u2192 2Ag(s)+ 2OH-(aq) E = +0.34 V ZnO(s) + H2O(l) + 2e- \u2192 Zn(s)+ 2OH-(aq) E =-1.26 V", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 191.74660237630212, "r": 535.2926025390625, "b": 162.03892008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Give an equation for the overall reaction that occurs when the cell is recharging. [1 mark]", "text": "Give an equation for the overall reaction that occurs when the cell is recharging. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 473.5605875651042, "t": 70.79400634765625, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 27, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.74736404418945, "t": 53.17083740234375, "r": 99.2158432006836, "b": 17.5997314453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 171.64683532714844, "t": 553.2512817382812, "r": 476.143310546875, "b": 373.05401611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/10"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p28.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p28.json new file mode 100644 index 0000000..6a508b3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p28.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 424.9360758463542, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 163]}], "orig": "The EMF of an alkaline hydrogen-oxygen fuel cell is +1.23 V The standard electrode potential for one of the electrodes in the alkaline hydrogen-oxygen fuel cell is", "text": "The EMF of an alkaline hydrogen-oxygen fuel cell is +1.23 V The standard electrode potential for one of the electrodes in the alkaline hydrogen-oxygen fuel cell is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 149.6789754231771, "t": 721.816151936849, "r": 350.9422200520833, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "(6)H +(be)-HO\u4e59 \u2190-\u4e59 + (1)OH\u4e59", "text": "(6)H +(be)-HO\u4e59 \u2190-\u4e59 + (1)OH\u4e59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 402.9493408203125, "t": 720.54296875, "r": 470.600830078125, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "E\u00b0=-0.83V", "text": "E\u00b0=-0.83V", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 50.31581115722656, "t": 681.07421875, "r": 101.47727457682292, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.4", "text": "08.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 113.3162841796875, "t": 678.527842203776, "r": 509.07763671875, "b": 653.0641276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Give the half-equation for the other electrode and calculate its standard electrode potential.", "text": "Give the half-equation for the other electrode and calculate its standard electrode potential.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 484.553955078125, "t": 652.2153523763021, "r": 535.2926025390625, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 113.73910522460938, "t": 627.6004231770834, "r": 159.82670084635416, "b": 613.1709798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Equation", "text": "Equation", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 114.58474731445312, "t": 549.9361165364583, "r": 129.38351440429688, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Ee", "text": "Ee", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 50.31581115722656, "t": 510.04296875, "r": 101.9000956217448, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.5", "text": "08.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 115.007568359375, "t": 507.49660237630206, "r": 517.5340576171875, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Suggest why the EMF values of the acidic and alkaline hydrogen-oxygen fuel cells are the same.", "text": "Suggest why the EMF values of the acidic and alkaline hydrogen-oxygen fuel cells are the same.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.0506591796875, "t": 482.03289794921875, "r": 536.1382242838541, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 231.28361002604166, "t": 338.16294352213544, "r": 346.7139892578125, "b": 326.7042439778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 556.4337158203125, "t": 431.52984619140625, "r": 563.1988525390625, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.68498992919922, "t": 53.12066650390625, "r": 99.07637786865234, "b": 17.40753173828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 543.0728149414062, "t": 458.28045654296875, "r": 575.6439208984375, "b": 416.9912414550781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p29.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p29.json new file mode 100644 index 0000000..f347b97 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p29.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 59.19507344563802, "t": 25.38368733723962, "r": 79.91335042317708, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 187.31011962890625, "t": 445.11049397786456, "r": 396.6070149739583, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.49864959716797, "t": 53.07568359375, "r": 99.51233673095703, "b": 16.77655029296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p3.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p3.json new file mode 100644 index 0000000..ad2fa06 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p3.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 180.12215169270834, "t": 775.7143351236979, "r": 397.45263671875, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 738.7919616699219, "r": 80.75899251302083, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 736.6699829101562, "r": 271.87451171875, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "This question is about equilibria.", "text": "This question is about equilibria.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 696.3524373372396, "r": 104.43702189127605, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 694.23046875, "r": 379.6941324869792, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Give two features of a reaction in dynamic equilibrium.", "text": "Give two features of a reaction in dynamic equilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 680.2254231770834, "r": 535.7154134114584, "b": 665.7959798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 112.89346313476562, "t": 655.1861165364584, "r": 163.20927937825522, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Feature 1", "text": "Feature 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 603.4098917643229, "r": 164.05492146809897, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Feature 2", "text": "Feature 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 538.4774373372395, "r": 103.5913798014323, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 535.9310709635417, "r": 302.3177083333333, "b": 521.0772298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "A gas-phase reaction is at equilibrium.", "text": "A gas-phase reaction is at equilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 521.926025390625, "r": 422.3991292317708, "b": 508.3453776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "When the pressure is increased the yield of product decreases.", "text": "When the pressure is increased the yield of product decreases.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 496.03794352213544, "r": 483.2854817708333, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "State what can be deduced about the chemical equation for this equilibrium.", "text": "State what can be deduced about the chemical equation for this equilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.0506591796875, "t": 482.45729573567706, "r": 535.2926025390625, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 190.69270833333334, "t": 339.43609619140625, "r": 393.2244059244792, "b": 325.4310506184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 1 continues on the next page", "text": "Question 1 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 3, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.799652099609375, "t": 53.073486328125, "r": 99.07989501953125, "b": 17.542236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p30.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p30.json new file mode 100644 index 0000000..cf321ea --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p30.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.72919845581055, "t": 53.18017578125, "r": 99.28366088867188, "b": 17.0953369140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p31.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p31.json new file mode 100644 index 0000000..2b91976 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p31.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.71382522583008, "t": 53.14093017578125, "r": 99.38362884521484, "b": 17.3262939453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p32.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p32.json new file mode 100644 index 0000000..963cdb8 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p32.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.86789957682294, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 243.96826171875, "t": 771.0459899902344, "r": 383.9223225911458, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Additional page, if required.", "text": "Additional page, if required.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Write the questionnumbers in the left-hand margin.", "text": "Write the questionnumbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 221]}], "orig": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,all acknowledgements of third-party copyright material arepublished in a separatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesand is availableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CopyrightTeam.", "text": "CopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Copyright?2022AQAand itslicensors.Allrightsreserved.", "text": "Copyright?2022AQAand itslicensors.Allrightsreserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 68.07433573404948, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 64.26893615722656, "t": 25.80808512369788, "r": 79.91335042317708, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 362.3583984375, "t": 49.99859619140625, "r": 487.0909016927083, "b": 40.23752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "226A7405/7", "text": "226A7405/7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.683597564697266, "t": 53.1888427734375, "r": 99.13557434082031, "b": 16.9169921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 346.5959777832031, "t": 76.732177734375, "r": 510.5633850097656, "b": 41.01318359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p4.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p4.json new file mode 100644 index 0000000..4e04fa7 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p4.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 101.9000956217448, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 388.5733642578125, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Carbon monoxide and hydrogen react to form methanol.", "text": "Carbon monoxide and hydrogen react to form methanol.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 4, "bbox": {"l": 245.6595662434896, "t": 748.5530497233073, "r": 403.3721516927083, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "CO(g) + 2H2(g) = CHsOH(g)", "text": "CO(g) + 2H2(g) = CHsOH(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 721.3917541503906, "r": 506.1178792317708, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 172]}], "orig": "0.430 mol of carbon monoxide is mixed with 0.860 mol of hydrogen. At equilibrium, the total pressure in the flask is 250 kPa and the mixture contains 0.110 mol of methanol.", "text": "0.430 mol of carbon monoxide is mixed with 0.860 mol of hydrogen. At equilibrium, the total pressure in the flask is 250 kPa and the mixture contains 0.110 mol of methanol.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.43039957682292, "t": 667.0691731770834, "r": 479.0572916666667, "b": 656.0348917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Calculatetheamount,inmoles,ofcarbonmonoxidepresentatequilibrium.", "text": "Calculatetheamount,inmoles,ofcarbonmonoxidepresentatequilibrium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 642.0298665364584, "r": 526.8361409505209, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "Calculate the partial pressure, in kPa, of carbon monoxide in this equilibrium mixture.", "text": "Calculate the partial pressure, in kPa, of carbon monoxide in this equilibrium mixture.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 483.7083333333333, "t": 616.9905395507812, "r": 535.7154134114584, "b": 602.5611165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 187.31011962890625, "t": 363.62664794921875, "r": 526.413330078125, "b": 325.8554484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Amountofcarbonmonoxide mol Partial pressure kPa", "text": "Amountofcarbonmonoxide mol Partial pressure kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 50.31581115722656, "t": 296.9966023763021, "r": 102.32291666666667, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 294.4502156575521, "r": 446.5, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Give an expression for the equilibrium constant (K,) for this reaction.", "text": "Give an expression for the equilibrium constant (K,) for this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 245.6595662434896, "t": 269.4109090169271, "r": 402.5264892578125, "b": 255.40586344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "CO(g) + 2H2(g) = CH3OH(g)", "text": "CO(g) + 2H2(g) = CH3OH(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.0506591796875, "t": 255.83026123046875, "r": 536.1382242838541, "b": 241.40081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.8532206217448, "t": 214.23952229817712, "r": 123.88683064778645, "b": 206.60040283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "K", "text": "K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.603614807128906, "t": 53.21435546875, "r": 99.1415786743164, "b": 17.57452392578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p5.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p5.json new file mode 100644 index 0000000..12b10e0 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p5.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/21"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.47727457682292, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 524.7220458984375, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "A different mixture of carbon monoxide and hydrogen is left to reach equilibrium at a temperature T.", "text": "A different mixture of carbon monoxide and hydrogen is left to reach equilibrium at a temperature T.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 733.2748209635416, "r": 370.3920491536458, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Some data for this equilibrium are shown in Table 1.", "text": "Some data for this equilibrium are shown in Table 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 5, "bbox": {"l": 304.4318033854167, "t": 707.38671875, "r": 344.5998942057292, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 201.26324462890625, "t": 679.3766377766927, "r": 319.23057047526044, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Partial pressure of CO", "text": "Partial pressure of CO", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 378.0028483072917, "t": 679.3766377766927, "r": 421.1306559244792, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "125 kPa", "text": "125 kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 200.8404337565104, "t": 661.9764404296875, "r": 339.5260416666667, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Partialpressure of CHsOH", "text": "Partialpressure of CHsOH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 376.3115234375, "t": 662.4008382161459, "r": 421.976318359375, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "5.45 kPa", "text": "5.45 kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 200.8404337565104, "t": 645.0006306966146, "r": 216.90767415364584, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Kp", "text": "Kp", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 356.4389241536458, "t": 645.0006306966146, "r": 441.8489583333333, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "1.15 x 10-6 kPa-2", "text": "1.15 x 10-6 kPa-2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 5, "bbox": {"l": 248.19649251302084, "t": 617.4149373372396, "r": 401.6808675130208, "b": 602.5611165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "CO(g) + 2H2(g) = CHsOH(g)", "text": "CO(g) + 2H2(g) = CHsOH(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 590.2536417643229, "r": 535.2926025390625, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Calculate the partial pressure, in kPa, of hydrogen in this equilibrium mixture. [3 marks]", "text": "Calculate the partial pressure, in kPa, of hydrogen in this equilibrium mixture. [3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 290.0558675130208, "t": 403.09539794921875, "r": 525.9905192057291, "b": 387.81715901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Partial pressure kPa", "text": "Partial pressure kPa", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 360.23146565755206, "r": 101.054443359375, "b": 346.22642008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.6", "text": "01.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.3162841796875, "t": 358.95827229817706, "r": 525.9905192057291, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Use the Kp value from Table 1 to calculate a value for Kp for the following reaction at temperature T.", "text": "Use the Kp value from Table 1 to calculate a value for Kp for the following reaction at temperature T.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 248.19649251302084, "t": 325.4310506184896, "r": 402.1036783854167, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "CHOH(g) = CO(g) + 2H2(g)", "text": "CHOH(g) = CO(g) + 2H2(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 303.78692626953125, "r": 212.679443359375, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Give the units for Kp", "text": "Give the units for Kp", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.1311442057292, "t": 290.63067626953125, "r": 536.5610758463541, "b": 276.20123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 377.1571858723958, "t": 137.84836832682288, "r": 384.7679850260417, "b": 129.36049397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "K", "text": "K", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 360.6671142578125, "t": 114.93105061848962, "r": 388.9962158203125, "b": 101.35040283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Units", "text": "Units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.9833984375, "t": 70.36960856119788, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 553.4739583333334, "t": 118.32623291015625, "r": 567.8498942057291, "b": 106.01877848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.78177261352539, "t": 53.18817138671875, "r": 99.22442626953125, "b": 17.46331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p6.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p6.json new file mode 100644 index 0000000..79de23a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p6.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 298.93511962890625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Rheniumhasanatomicnumberof75", "text": "Rheniumhasanatomicnumberof75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 50.73863728841146, "t": 730.7284545898438, "r": 88.36979166666667, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 85.83285522460938, "t": 728.1820780436198, "r": 98.51751708984375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 729.8796590169271, "r": 295.55255126953125, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Define the term relative atomic mass.", "text": "Define the term relative atomic mass.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.976806640625, "t": 715.8746236165365, "r": 535.7154134114584, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 6, "bbox": {"l": 48.62452697753906, "t": 599.1659545898438, "r": 394.4928792317708, "b": 583.0389404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "02.2 The relative atomic mass of a sample of rhenium is 186.3", "text": "02.2 The relative atomic mass of a sample of rhenium is 186.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 570.3070678710938, "r": 484.553955078125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Table 2 shows information about the two isotopes of rhenium in this sample.", "text": "Table 2 shows information about the two isotopes of rhenium in this sample.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 304.4318033854167, "t": 543.9945678710938, "r": 345.445556640625, "b": 532.1115112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 192.80680338541666, "t": 516.4088948567708, "r": 312.0426025390625, "b": 502.4038492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Relative isotopic mass", "text": "Relative isotopic mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 355.1704508463542, "t": 516.4088948567708, "r": 458.7618408203125, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Relativeabundance", "text": "Relativeabundance", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 241.85416666666666, "t": 499.00868733723956, "r": 263.8409016927083, "b": 485.85243733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "185", "text": "185", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 399.5667317708333, "t": 499.00868733723956, "r": 414.3655192057292, "b": 486.27683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 211.41097005208334, "t": 481.60850016276044, "r": 293.4384358723958, "b": 468.87664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "To be calculated", "text": "To be calculated", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 399.5667317708333, "t": 481.18410237630206, "r": 414.788330078125, "b": 468.45225016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 454.02280680338544, "r": 430.4327392578125, "b": 426.43711344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "Calculate the relative isotopic mass of the other rhenium isotope. Show your working.", "text": "Calculate the relative isotopic mass of the other rhenium isotope. Show your working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.553955078125, "t": 428.13470458984375, "r": 536.1382242838541, "b": 413.70526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 276.94838460286456, "t": 252.43511962890625, "r": 387.7277425130208, "b": 238.85447184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Relative isotopic mass", "text": "Relative isotopic mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.62452697753906, "t": 211.26877848307288, "r": 102.32291666666667, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "02].3", "text": "02].3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 208.72239176432288, "r": 457.9161783854167, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "State why the isotopes of rhenium have the same chemical properties.", "text": "State why the isotopes of rhenium have the same chemical properties.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 195.56614176432288, "r": 536.1382242838541, "b": 181.13669840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.69084167480469, "t": 53.16693115234375, "r": 99.08799743652344, "b": 17.5013427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p7.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p7.json new file mode 100644 index 0000000..71b4422 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p7.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/texts/9"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 772.3191782633463, "r": 502.3125, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "A sample of rhenium is ionised by electron impact in a time of flight (TOF) mass spectrometer.", "text": "A sample of rhenium is ionised by electron impact in a time of flight (TOF) mass spectrometer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 50.73863728841146, "t": 732.8504231770834, "r": 84.14157104492188, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 732.426035563151, "r": 448.1912841796875, "b": 705.2647399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "A 185Re+ ion with a kinetic energy of 1.153 \u00d7 10-13 J travels through a 1.450 m flight tube.", "text": "A 185Re+ ion with a kinetic energy of 1.153 \u00d7 10-13 J travels through a 1.450 m flight tube.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 688.7133280436198, "r": 430.4327392578125, "b": 670.8887329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "The kinetic energy of the ion is given by the equation KE = mv2 2", "text": "The kinetic energy of the ion is given by the equation KE = mv2 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 658.5812784830729, "r": 225.78692626953125, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "where m = mass / kg V=speed / ms-1 KE=kinetic energy / J", "text": "where m = mass / kg V=speed / ms-1 KE=kinetic energy / J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 593.2244262695312, "r": 423.2447916666667, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Calculate the time,inseconds,for theiontoreachthedetector.", "text": "Calculate the time,inseconds,for theiontoreachthedetector.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 567.7607014973958, "r": 342.0629475911458, "b": 556.3020426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "The Avogadro constant, L = 6.022 \u00d7 1023 mol-1", "text": "The Avogadro constant, L = 6.022 \u00d7 1023 mol-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 554.1800537109375, "r": 536.1382242838541, "b": 541.0238037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 362.3583984375, "t": 124.69211832682288, "r": 388.5733642578125, "b": 110.26275634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Time", "text": "Time", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.67705535888672, "t": 53.18963623046875, "r": 99.12734985351562, "b": 17.6636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p8.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p8.json new file mode 100644 index 0000000..1ae08f9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p8.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 47.77887980143229, "t": 776.1387329101562, "r": 102.74573771158855, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 771.8947804768881, "r": 468.4867350260417, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "State how the relative abundance of 185Re+ is determined in a TOF mass spectrometer.", "text": "State how the relative abundance of 185Re+ is determined in a TOF mass spectrometer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 484.553955078125, "t": 746.4310709635416, "r": 536.1382242838541, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 551.3598225911459, "t": 646.2738037109375, "r": 566.1586100260416, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.8090934753418, "t": 53.20458984375, "r": 99.13793182373047, "b": 17.58782958984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p9.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p9.json new file mode 100644 index 0000000..2fe4bb9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-7405-1-2022jun/p9.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-7405-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 11858812023516864323, "filename": "aqa-chemistry-7405-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 802.4512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 18.59340413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 207.6055908203125, "t": 774.8655446370443, "r": 370.3920491536458, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 9, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7405/1", "text": "IB/M/Jun22/7405/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.526153564453125, "t": 53.07830810546875, "r": 99.46122741699219, "b": 16.9515380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/merged.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/merged.json new file mode 100644 index 0000000..c54f9d6 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/merged.json @@ -0,0 +1 @@ +{"texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.4461924235026, "r": 172.5113525390625, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 54.96685282389323, "t": 628.8736165364584, "r": 120.50426228841145, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 602.13671875, "r": 156.02130126953125, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 587.707275390625, "r": 297.24383544921875, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "I declare this ismyown work.", "text": "I declare this ismyown work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 186.04166666666666, "b": 496.88669840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "GCSE CHEMISTRY", "text": "GCSE CHEMISTRY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 481.60850016276044, "r": 122.19554646809895, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Higher Tier", "text": "Higher Tier", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 116.69886271158855, "t": 481.18410237630206, "r": 191.5383504231771, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Paper 1", "text": "Paper 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 407.76373291015625, "r": 92.59801228841145, "b": 395.03188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 394.18308512369794, "r": 186.04166666666666, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 380.60243733723956, "r": 83.71875, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 367.44618733723956, "r": 153.484375, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7a scientific calculator", "text": "\u00b7a scientific calculator", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 354.71433512369794, "r": 191.9611612955729, "b": 342.40688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7 the periodic table (enclosed).", "text": "the periodic table (enclosed).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 329.2506306966146, "r": 108.66524251302083, "b": 317.7919718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 316.5187784830729, "r": 230.86079915364584, "b": 303.3625284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 303.3625284830729, "r": 241.43133544921875, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7Pencil should only be used for drawing.", "text": "\u00b7Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 277.47442626953125, "r": 373.351806640625, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "\u00b7 Answer all questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "Answer all questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 291.4794718424479, "r": 241.0085245768229, "b": 276.20123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 250.73752848307288, "r": 424.9360758463542, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 224.84942626953125, "r": 402.5264892578125, "b": 200.23447672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "\u00b7 Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 198.96132405598962, "r": 356.4389241536458, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "\u00b7In all calculations, show clearly how you work out your answer.", "text": "\u00b7In all calculations, show clearly how you work out your answer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 173.92197672526038, "r": 106.12831624348958, "b": 160.34136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 159.49257405598962, "r": 251.57906087239584, "b": 147.18511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "\u00b7 The maximum mark for this paper is 100.", "text": "The maximum mark for this paper is 100.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 145.91192626953125, "r": 282.445068359375, "b": 133.60447184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "The marks for questions are shown in brackets.", "text": "The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 120.02382405598962, "r": 391.5331217447917, "b": 94.56011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "You are reminded of the need for good English and clear presentation in your answers.", "text": "You are reminded of the need for good English and clear presentation in your answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 225.36409505208334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "JUN2284621H01", "text": "JUN2284621H01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 498.0842692057292, "t": 548.6629231770833, "r": 546.2859700520834, "b": 493.06715901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 331.49241129557294, "t": 437.47137451171875, "r": 544.5946858723959, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 45 minutes", "text": "Time allowed: 1 hour 45 minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 367.8551025390625, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E10", "text": "IB/M/Jun22/E10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 467.6410725911458, "t": 33.87156168619788, "r": 545.8631591796875, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "8462/1H", "text": "8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 293.4384358723958, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 339.5260416666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "This question is about metals and non-metals.", "text": "This question is about metals and non-metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 743.4603068033854, "r": 378.4256591796875, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Figure 1 shows an outline of part of the periodic table.", "text": "Figure 1 shows an outline of part of the periodic table.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 2, "bbox": {"l": 267.64630126953125, "t": 716.7234090169271, "r": 313.3110758463542, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 411.40576171875, "t": 645.8494262695312, "r": 418.59375, "b": 638.2103068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 144.60511271158853, "t": 637.3615112304688, "r": 153.484375, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 250.7334187825521, "t": 614.019775390625, "r": 260.8811442057292, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 2, "bbox": {"l": 49.04734802246094, "t": 562.2435709635417, "r": 376.3115234375, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "01.1 Element Q is a dull solid with a melting point of 44 \u00b0C.", "text": "01.1 Element Q is a dull solid with a melting point of 44 \u00b0C.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 533.809102376302, "r": 306.12310791015625, "b": 519.379659016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Element Q does not conduct electricity.", "text": "Element Q does not conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.73910522460938, "t": 506.64780680338544, "r": 535.7154134114584, "b": 478.21331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which section of the periodic table in Figure 1 is most likely to contain element Q? [1 mark]", "text": "Which section of the periodic table in Figure 1 is most likely to contain element Q? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 477.78892008463544, "r": 200.8404337565104, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 153.90719604492188, "t": 438.74456787109375, "r": 161.09516398111978, "b": 429.83229573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 235.0890096028646, "t": 438.32017008463544, "r": 242.2769775390625, "b": 429.83229573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 316.6936442057292, "t": 437.47137451171875, "r": 322.19032796223956, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 397.45263671875, "t": 437.47137451171875, "r": 402.5264892578125, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.62452697753906, "t": 394.60748291015625, "r": 103.16855875651042, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 392.48549397786456, "r": 332.3380533854167, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Element R forms ions of formula R2+ and R3+", "text": "Element R forms ions of formula R2+ and R3+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 365.32419840494794, "r": 535.2926025390625, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which section of the periodic table in Figure 1 is most likely to contain element R? [1 mark]", "text": "Which section of the periodic table in Figure 1 is most likely to contain element R? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 336.88975016276044, "r": 200.8404337565104, "b": 321.1871134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 153.90719604492188, "t": 296.9966023763021, "r": 161.09516398111978, "b": 288.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 235.5118408203125, "t": 296.57220458984375, "r": 241.43133544921875, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 316.6936442057292, "t": 296.57220458984375, "r": 322.6131591796875, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.201700846354164, "t": 253.70827229817712, "r": 103.16855875651042, "b": 237.58127848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 251.58632405598962, "r": 528.5274658203125, "b": 224.84942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "Give two differences between the physical properties of the elements in Group 1 and those ofthetransitionelements.", "text": "Give two differences between the physical properties of the elements in Group 1 and those ofthetransitionelements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.976806640625, "t": 224.00063069661462, "r": 535.2926025390625, "b": 210.84438069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 145.06313069661462, "r": 121.77272542317708, "b": 136.15085856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.9573567708334, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 286.25046793619794, "t": 809.6659495035807, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 474.40625, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Complete Figure 2 to show the electronic structure of an aluminium atom.", "text": "Complete Figure 2 to show the electronic structure of an aluminium atom.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 224.09564208984375, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Usetheperiodictable.", "text": "Usetheperiodictable.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.0506591796875, "t": 731.5772399902344, "r": 535.7154134114584, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 268.06911214192706, "t": 703.9915568033854, "r": 314.15671793619794, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 490.09637451171875, "r": 101.9000956217448, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 487.12563069661456, "r": 219.4446004231771, "b": 475.66697184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Aluminiumisametal.", "text": "Aluminiumisametal.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 461.66192626953125, "r": 310.77414957682294, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Describe how metals conduct electricity.", "text": "Describe how metals conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 434.50063069661456, "r": 254.9616495768229, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Answerintermsofelectrons.", "text": "Answerintermsofelectrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.1311442057292, "t": 422.19317626953125, "r": 535.2926025390625, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.89299011230469, "t": 202.35646565755212, "r": 101.9000956217448, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.6", "text": "01.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 199.81011962890625, "r": 535.7154134114584, "b": 173.92197672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Name the type of bonding in compounds formed between metals and non-metals. [1 mark]", "text": "Name the type of bonding in compounds formed between metals and non-metals. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 104.01420084635417, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.7", "text": "01.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 772.3191782633463, "r": 486.6680908203125, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "Magnesium oxide is a compound formed from the metal magnesium and the non-metal oxygen.", "text": "Magnesium oxide is a compound formed from the metal magnesium and the non-metal oxygen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 494.7017008463542, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Describe what happens when a magnesium atom reacts with an oxygen atom.", "text": "Describe what happens when a magnesium atom reacts with an oxygen atom.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 707.8111063639323, "r": 334.0293375651042, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "You should refer to electrons in your answer.", "text": "You should refer to electrons in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.553955078125, "t": 693.8060709635416, "r": 535.7154134114584, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 553.8967692057291, "t": 493.06715901692706, "r": 569.5411783854166, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 553.8967692057291, "t": 493.06715901692706, "r": 569.5411783854166, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 474.8290608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Sodium carbonate reacts with hydrochloric acid in an exothermic reaction.", "text": "Sodium carbonate reacts with hydrochloric acid in an exothermic reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 743.8847045898438, "r": 270.1832275390625, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 5, "bbox": {"l": 177.16239420572916, "t": 718.8453877766927, "r": 471.023681640625, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Na2CO3(s) + 2HCl(aq)\u2192 2NaCl(aq) + CO2(g) + H2O()", "text": "Na2CO3(s) + 2HCl(aq)\u2192 2NaCl(aq) + CO2(g) + H2O()", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 689.9865112304688, "r": 520.4938151041666, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 133]}], "orig": "A student investigated the effect of changing the mass of sodium carbonate powder onthehighesttemperaturereachedbythereactionmixture.", "text": "A student investigated the effect of changing the mass of sodium carbonate powder onthehighesttemperaturereachedbythereactionmixture.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 626.3272298177084, "r": 103.5913798014323, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.3162841796875, "t": 623.7808634440104, "r": 512.8830159505209, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Plan a method to investigate the effect of changing the mass of sodium carbonate powder on the highest temperature reached.", "text": "Plan a method to investigate the effect of changing the mass of sodium carbonate powder on the highest temperature reached.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 596.6195882161459, "r": 535.2926025390625, "b": 583.4633382161458, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 79.91335042317708, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 802.4512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.9573567708334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 445.6543375651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Figure 3 shows a line of best fit drawn through the student's results.", "text": "Figure 3 shows a line of best fit drawn through the student's results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 268.06911214192706, "t": 743.0359090169271, "r": 314.15671793619794, "b": 728.6064758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 688.7133280436198, "r": 183.50472005208334, "b": 676.4058736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "30.0", "text": "30.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 632.2687784830729, "r": 183.92755126953125, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "28.0", "text": "28.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.56439208984375, "t": 587.2828776041666, "r": 123.88683064778645, "b": 572.8534545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Highest", "text": "Highest", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.14157104492188, "t": 574.1266276041667, "r": 145.45075480143228, "b": 561.394775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "temperature", "text": "temperature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 159.40387980143228, "t": 574.9754231770833, "r": 183.0819091796875, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "26.0", "text": "26.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 83.71875, "t": 561.8191731770833, "r": 140.79971313476562, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "reached by", "text": "reached by", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.56439208984375, "t": 549.51171875, "r": 143.33663940429688, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "thereaction", "text": "thereaction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.14157104492188, "t": 538.901835123698, "r": 149.25615437825522, "b": 526.1699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "mixture in \u00b0C", "text": "mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 518.5308634440105, "r": 183.50472005208334, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "24.0", "text": "24.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 461.66192626953125, "r": 183.92755126953125, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "22.0", "text": "22.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 405.21734619140625, "r": 186.8873087565104, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "20.0+", "text": "20.0+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 175.8939412434896, "t": 395.88067626953125, "r": 195.34375, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.0", "text": "0.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 234.24336751302084, "t": 395.88067626953125, "r": 251.57906087239584, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.0", "text": "1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 290.4786783854167, "t": 397.15386962890625, "r": 308.23720296223956, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.0", "text": "2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 346.2911783854167, "t": 396.30507405598956, "r": 365.3181559244792, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "3.0", "text": "3.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 403.7949625651042, "t": 395.88067626953125, "r": 421.5535074869792, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "4.0", "text": "4.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 460.0302734375, "t": 396.30507405598956, "r": 478.6344401041667, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "5.0", "text": "5.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 253.69317626953125, "t": 381.02683512369794, "r": 429.5871175130208, "b": 367.44618733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Massofsodiumcarbonate ingrams", "text": "Massofsodiumcarbonate ingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "02].2", "text": "02].2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 386.4592692057292, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Determine the gradient of the line of best fit in Figure 3.", "text": "Determine the gradient of the line of best fit in Figure 3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 202.10888671875, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Use the equation:", "text": "Use the equation:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 276.1027425130208, "t": 732.426035563151, "r": 429.164306640625, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Change inhighest temperature", "text": "Change inhighest temperature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 220.29024251302084, "t": 724.3625183105469, "r": 273.98862711588544, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Gradient =", "text": "Gradient =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 312.0426025390625, "t": 716.7234090169271, "r": 393.2244059244792, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Change in mass", "text": "Change in mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 691.2597045898438, "r": 179.2765096028646, "b": 678.527842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Give the unit.", "text": "Give the unit.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.1311442057292, "t": 678.1034545898438, "r": 536.1382242838541, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 434.92502848307294, "r": 167.86032104492188, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Gradient =", "text": "Gradient =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 407.6003824869792, "t": 434.92502848307294, "r": 430.4327392578125, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Unit", "text": "Unit", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.201700846354164, "t": 358.10947672526044, "r": 102.32291666666667, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 355.56313069661456, "r": 526.8361409505209, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "The initial temperature of the reaction mixture is where the line of best fit would meet the y-axis.", "text": "The initial temperature of the reaction mixture is where the line of best fit would meet the y-axis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 315.2455851236979, "r": 388.1505533854167, "b": 304.2113240559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Determinetheinitialtemperatureofthereactionmixture.", "text": "Determinetheinitialtemperatureofthereactionmixture.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 288.9330851236979, "r": 272.29734293619794, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "ShowyourworkingonFigure3.", "text": "ShowyourworkingonFigure3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.1311442057292, "t": 277.0500284830729, "r": 535.7154134114584, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 196.18939208984375, "t": 236.30808512369788, "r": 535.7154134114584, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Initialtemperatureofthereactionmixture\uff1a \u00b0C", "text": "Initialtemperatureofthereactionmixture\uff1a \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.2523600260416, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 7, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 90.48389689127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 87.9469706217448, "t": 771.0459899902344, "r": 98.51751708984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 506.9635416666667, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "text": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 733.69921875, "r": 521.3394775390625, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "text": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.0506591796875, "t": 707.8111063639323, "r": 534.4469401041666, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 693.3816731770834, "r": 200.8404337565104, "b": 678.1034545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 614.019775390625, "r": 219.4446004231771, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 583.4633382161458, "r": 128.53787231445312, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 507.9209798177083, "r": 401.6808675130208, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.90719604492188, "t": 411.58327229817706, "r": 219.4446004231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 381.45123291015625, "r": 128.960693359375, "b": 371.69012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 305.90887451171875, "r": 401.6808675130208, "b": 293.6014200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 222.72743733723962, "r": 219.8674112955729, "b": 162.46331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Highest temperature reached by thereaction mixture in \u00b0C", "text": "Highest temperature reached by thereaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 117.05303955078125, "r": 401.6808675130208, "b": 104.74558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Mass ofsodiumcarbonate in grams", "text": "Mass ofsodiumcarbonate in grams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 90.48389689127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 87.9469706217448, "t": 771.0459899902344, "r": 98.51751708984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 506.9635416666667, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "text": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 733.69921875, "r": 521.3394775390625, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "text": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.0506591796875, "t": 707.8111063639323, "r": 534.4469401041666, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 693.3816731770834, "r": 200.8404337565104, "b": 678.1034545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 614.019775390625, "r": 219.4446004231771, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 583.4633382161458, "r": 128.53787231445312, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 507.9209798177083, "r": 401.6808675130208, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.90719604492188, "t": 411.58327229817706, "r": 219.4446004231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 381.45123291015625, "r": 128.960693359375, "b": 371.69012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 305.90887451171875, "r": 401.6808675130208, "b": 293.6014200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 222.72743733723962, "r": 219.8674112955729, "b": 162.46331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Highest temperature reached by thereaction mixture in \u00b0C", "text": "Highest temperature reached by thereaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 117.05303955078125, "r": 401.6808675130208, "b": 104.74558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Mass ofsodiumcarbonate in grams", "text": "Mass ofsodiumcarbonate in grams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 150.10179646809897, "t": 641.1810709635416, "r": 159.40387980143228, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "X", "text": "X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 175.8939412434896, "t": 615.7173665364584, "r": 227.90104166666666, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Reactants", "text": "Reactants", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 360.6671142578125, "t": 553.331278483073, "r": 406.7547200520833, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Products", "text": "Products", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 478.6344401041667, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Figure 4 shows a reaction profile for thereaction of sodium carbonate with hydrochloric acid.", "text": "Figure 4 shows a reaction profile for thereaction of sodium carbonate with hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 268.491943359375, "t": 729.4552612304688, "r": 313.73388671875, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 150.10179646809897, "t": 641.1810709635416, "r": 159.40387980143228, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "X", "text": "X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 175.8939412434896, "t": 615.7173665364584, "r": 227.90104166666666, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Reactants", "text": "Reactants", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 360.6671142578125, "t": 553.331278483073, "r": 406.7547200520833, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Products", "text": "Products", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 249.88777669270834, "t": 502.8282470703125, "r": 349.6737467447917, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Progress of reaction", "text": "Progress of reaction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.47016906738281, "t": 436.62261962890625, "r": 101.47727457682292, "b": 421.76877848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 434.50063069661456, "r": 347.1368408203125, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "What do labelsX and Y represent on Figure 4?", "text": "What do labelsX and Y represent on Figure 4?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.976806640625, "t": 420.91998291015625, "r": 535.7154134114584, "b": 407.76373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 395.45627848307294, "r": 124.30965169270833, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "x", "text": "x", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.47016906738281, "t": 304.6357218424479, "r": 101.9000956217448, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.6", "text": "02.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 302.51373291015625, "r": 442.694580078125, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "How does the reaction profile show that the reaction is exothermic?", "text": "How does the reaction profile show that the reaction is exothermic?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 277.47442626953125, "r": 183.92755126953125, "b": 263.4693806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 4.", "text": "Use Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.0506591796875, "t": 263.8937784830729, "r": 536.1382242838541, "b": 249.46433512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 553.8967692057291, "t": 218.05910237630212, "r": 569.5411783854166, "b": 205.75164794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 553.8967692057291, "t": 218.05910237630212, "r": 569.5411783854166, "b": 205.75164794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.86789957682294, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 681.9230041503906, "r": 341.2173258463542, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 666.2203776041666, "r": 396.6070149739583, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "O Carbon atom", "text": "O Carbon atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.64488220214844, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 346.2911783854167, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "This question is about different forms of carbon.", "text": "This question is about different forms of carbon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 743.4603068033854, "r": 337.41192626953125, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Figure 5 represents the structure of diamond.", "text": "Figure 5 represents the structure of diamond.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 10, "bbox": {"l": 267.64630126953125, "t": 716.7234090169271, "r": 313.73388671875, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 681.9230041503906, "r": 341.2173258463542, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 666.2203776041666, "r": 396.6070149739583, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "O Carbon atom", "text": "O Carbon atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 49.89299011230469, "t": 544.418965657552, "r": 345.8683675130208, "b": 529.1407470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "03.1 Describe the structure and bonding of diamond.", "text": "03.1 Describe the structure and bonding of diamond.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.553955078125, "t": 529.1407470703125, "r": 535.7154134114584, "b": 515.9844970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 49.04734802246094, "t": 310.5772501627604, "r": 364.0497233072917, "b": 294.4502156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "03.2 Explain why diamond has a very high melting point.", "text": "03.2 Explain why diamond has a very high melting point.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.553955078125, "t": 294.02581787109375, "r": 535.7154134114584, "b": 280.86956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 284.1363525390625, "t": 812.2123209635416, "r": 293.86126708984375, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 11, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 297.24383544921875, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Figure 6 represents the molecule C70", "text": "Figure 6 represents the molecule C70", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 11, "bbox": {"l": 268.06911214192706, "t": 746.4310709635416, "r": 313.73388671875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 47.77887980143229, "t": 541.0238037109375, "r": 102.32291666666667, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 538.4774373372395, "r": 322.6131591796875, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is the name of this type of molecule?", "text": "What is the name of this type of molecule?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 525.3211873372395, "r": 535.7154134114584, "b": 510.8917643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 510.8917643229167, "r": 200.8404337565104, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 470.99859619140625, "r": 161.51798502604166, "b": 456.14479573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Fullerene", "text": "Fullerene", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 433.65183512369794, "r": 165.74620564778647, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Graphene", "text": "Graphene", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 396.30507405598956, "r": 164.05492146809897, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Nanotube", "text": "Nanotube", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 360.65586344401044, "r": 156.866943359375, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Polymer", "text": "Polymer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 294.8746134440104, "r": 102.32291666666667, "b": 280.4451700846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 293.1770222981771, "r": 503.5809733072917, "b": 279.1719767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Molecules such as Cro can be used in medicine to move drugs around the body.", "text": "Molecules such as Cro can be used in medicine to move drugs around the body.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 115.007568359375, "t": 266.0157267252604, "r": 433.8153483072917, "b": 253.28387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Suggest one reason why the Cro molecule is suitable for this use.", "text": "Suggest one reason why the Cro molecule is suitable for this use.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 491.741943359375, "t": 253.70827229817712, "r": 536.98388671875, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.86789957682294, "t": 813.909901936849, "r": 295.97536214192706, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 478.6344401041667, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Calculate the number of C7o molecules that can be made from one mole of carbonatoms.", "text": "Calculate the number of C7o molecules that can be made from one mole of carbonatoms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 733.2748209635416, "r": 339.9488525390625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "The Avogadro constant = 6.02 \u00d7 1023 per mole", "text": "The Avogadro constant = 6.02 \u00d7 1023 per mole", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.553955078125, "t": 720.1185709635416, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 207.6055908203125, "t": 502.8282470703125, "r": 321.76751708984375, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Number of molecules =", "text": "Number of molecules =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.64488220214844, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 553.8967692057291, "t": 505.79901123046875, "r": 568.6955159505209, "b": 493.91595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 115.43039957682292, "t": 772.3191782633463, "r": 363.2040608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "This question is about zinc and compounds of zinc.", "text": "This question is about zinc and compounds of zinc.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 745.582285563151, "r": 483.7083333333333, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "A student produces pure crystals of zinc chloride by reacting zinc oxide with hydrochloric acid.", "text": "A student produces pure crystals of zinc chloride by reacting zinc oxide with hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 705.2647399902344, "r": 270.60605875651044, "b": 692.1084899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 213.94791666666666, "t": 679.801025390625, "r": 434.2381591796875, "b": 664.9472045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "ZnO(s) + 2HCl(aq)\u2192 ZnCl2(aq) + H2O()", "text": "ZnO(s) + 2HCl(aq)\u2192 ZnCl2(aq) + H2O()", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 47.356058756510414, "t": 642.0298665364584, "r": 506.9635416666667, "b": 622.0832926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "4]. The student adds zinc oxide to hydrochloric acid until the zinc oxide is in excess.", "text": "4]. The student adds zinc oxide to hydrochloric acid until the zinc oxide is in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 611.0490112304688, "r": 502.3125, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Giveoneobservationthatthestudentcouldmaketoshowthatthezincoxideis in excess.", "text": "Giveoneobservationthatthestudentcouldmaketoshowthatthezincoxideis in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 491.741943359375, "t": 586.4341023763021, "r": 536.98388671875, "b": 572.004659016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.201700846354164, "t": 483.73044840494794, "r": 108.24242146809895, "b": 466.75465901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 102.74573771158855, "t": 481.60850016276044, "r": 450.3053792317708, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "IWhy is excess zinc oxide used rather than excess hydrochloric acid?", "text": "IWhy is excess zinc oxide used rather than excess hydrochloric acid?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 491.741943359375, "t": 468.02785237630206, "r": 537.4066975911459, "b": 453.17401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.89299011230469, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 349.19720458984375, "r": 534.8697916666666, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "Name one other compound that the student could add to hydrochloric acid to produce zinc chloride.", "text": "Name one other compound that the student could add to hydrochloric acid to produce zinc chloride.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.0506591796875, "t": 323.3091023763021, "r": 536.1382242838541, "b": 308.8796590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.62452697753906, "t": 232.91290283203125, "r": 108.24242146809895, "b": 218.48350016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 105.2826639811198, "t": 231.21535237630212, "r": 513.3058675130209, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "Describe how the student should obtain crystals of zinc chloride from a solution of zinc chloride.", "text": "Describe how the student should obtain crystals of zinc chloride from a solution of zinc chloride.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.1311442057292, "t": 202.35646565755212, "r": 536.5610758463541, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.43039957682292, "t": 772.7435709635416, "r": 480.3257649739583, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "Zinc chloride is also produced in a displacement reaction between zinc and copper chloride solution.", "text": "Zinc chloride is also produced in a displacement reaction between zinc and copper chloride solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 270.1832275390625, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Theequationfor thereaction is:", "text": "Theequationfor thereaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 251.15625, "t": 708.659901936849, "r": 397.45263671875, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "n+\u00b2Ouz\u2190\u00b2on+uz", "text": "n+\u00b2Ouz\u2190\u00b2on+uz", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 656.8836873372396, "r": 103.5913798014323, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 654.76171875, "r": 332.3380533854167, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Complete the ionic equation for this reaction.", "text": "Complete the ionic equation for this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 639.9078776041666, "r": 535.7154134114584, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 164.90056355794272, "t": 613.1709798177084, "r": 205.9142862955729, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Zn +", "text": "Zn +", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 310.77414957682294, "t": 613.1709798177084, "r": 385.1907958984375, "b": 598.7415568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "\u2192\u2192 Zn2+ +", "text": "\u2192\u2192 Zn2+ +", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 542.2969970703125, "r": 101.9000956217448, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.6", "text": "04.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 539.7506306966145, "r": 390.2646484375, "b": 527.018778483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Why is zinc described as being oxidised in this reaction?", "text": "Why is zinc described as being oxidised in this reaction?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 491.741943359375, "t": 527.018778483073, "r": 537.4066975911459, "b": 512.589335123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 104.85984293619792, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.7", "text": "04.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 553.4739583333334, "t": 145.06313069661462, "r": 569.9639892578125, "b": 131.05808512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 104.85984293619792, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.7", "text": "04.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 525.1448567708334, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Complete Figure 7 to show how zinc, copper and another substance can be used to light a lamp.", "text": "Complete Figure 7 to show how zinc, copper and another substance can be used to light a lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 706.9623209635416, "r": 146.29639689127603, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Label:", "text": "Label:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 15, "bbox": {"l": 119.65861002604167, "t": 687.0157470703125, "r": 147.56486002604166, "b": 675.1326802571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "zinc", "text": "zinc", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 15, "bbox": {"l": 124.30965169270833, "t": 666.644775390625, "r": 161.51798502604166, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "copper", "text": "copper", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 15, "bbox": {"l": 118.81296793619792, "t": 648.3957926432291, "r": 253.27034505208334, "b": 636.9371134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "the othersubstanceused.", "text": "the othersubstanceused.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 623.3564656575521, "r": 342.9086100260417, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The symbol represents the lamp.", "text": "The symbol represents the lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 485.8224283854167, "t": 610.6246134440104, "r": 537.4066975911459, "b": 596.1951904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 15, "bbox": {"l": 268.91477457682294, "t": 584.7365112304688, "r": 314.57952880859375, "b": 569.8826904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 553.4739583333334, "t": 145.06313069661462, "r": 569.9639892578125, "b": 131.05808512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 207.1827596028646, "t": 136.57525634765625, "r": 370.3920491536458, "b": 122.99460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 360.2443033854167, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "This question is about groups in the periodic table.", "text": "This question is about groups in the periodic table.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 731.152842203776, "r": 459.1846516927083, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "The elements in Group 1 become more reactive going down the group.", "text": "The elements in Group 1 become more reactive going down the group.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 705.2647399902344, "r": 315.84800211588544, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Rubidium is below potassium in Group 1.", "text": "Rubidium is below potassium in Group 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.47016906738281, "t": 653.488525390625, "r": 101.47727457682292, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 652.2153523763021, "r": 334.0293375651042, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Rubidium and potassium are added to water.", "text": "Rubidium and potassium are added to water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 625.0540568033854, "r": 508.2319742838542, "b": 598.7415568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Predict one observation you would see that shows that rubidium is more reactive than potassium.", "text": "Predict one observation you would see that shows that rubidium is more reactive than potassium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.0506591796875, "t": 599.1659545898438, "r": 534.8697916666666, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.62452697753906, "t": 483.73044840494794, "r": 108.66524251302083, "b": 467.17905680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 102.74573771158855, "t": 480.33530680338544, "r": 380.116943359375, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "IExplain why rubidium is more reactive than potassium.", "text": "IExplain why rubidium is more reactive than potassium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 467.60345458984375, "r": 536.5610758463541, "b": 453.17401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 47.77887980143229, "t": 249.03993733723962, "r": 106.55113728841145, "b": 233.33730061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.3162841796875, "t": 246.06915283203125, "r": 414.788330078125, "b": 233.33730061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Complete the equation for the reaction of rubidium with water.", "text": "Complete the equation for the reaction of rubidium with water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 217.63470458984375, "r": 278.21685791015625, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "You should balance the equation.", "text": "You should balance the equation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.553955078125, "t": 204.47845458984375, "r": 535.7154134114584, "b": 191.32220458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 162.3636271158854, "t": 169.25364176432288, "r": 188.5785929361979, "b": 152.70220947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Rb", "text": "Rb", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 204.64583333333334, "t": 167.98044840494788, "r": 223.25, "b": 154.82419840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "+", "text": "+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 243.96826171875, "t": 169.25364176432288, "r": 278.21685791015625, "b": 151.85341389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "H2O", "text": "H2O", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 282.86789957682294, "t": 813.909901936849, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 553.8967692057291, "t": 126.38970947265625, "r": 568.6955159505209, "b": 114.08225504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 271.87451171875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The noble gases are in Group 0.", "text": "The noble gases are in Group 0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 50.31581115722656, "t": 746.0066731770834, "r": 83.29592386881511, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 84.14157104492188, "t": 744.7334899902344, "r": 100.63162231445312, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.3162841796875, "t": 744.7334899902344, "r": 371.6604817708333, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Which is a correct statement about the noble gases?", "text": "Which is a correct statement about the noble gases?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.0506591796875, "t": 732.0016377766927, "r": 535.7154134114584, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 716.7234090169271, "r": 201.26324462890625, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 676.8302612304688, "r": 454.5336100260417, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "The noble gases all have atoms with eight electrons in the outer shell.", "text": "The noble gases all have atoms with eight electrons in the outer shell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 640.332275390625, "r": 468.0639241536458, "b": 625.9028523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "The noble gases have boiling points that increase going down the group.", "text": "The noble gases have boiling points that increase going down the group.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 602.9855143229166, "r": 354.3247884114583, "b": 590.6780395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "The noble gases have molecules with two atoms.", "text": "The noble gases have molecules with two atoms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 565.6387329101562, "r": 407.1775309244792, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "The noble gases react with metals to form ionic compounds.", "text": "The noble gases react with metals to form ionic compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.89299011230469, "t": 515.1357014973958, "r": 101.9000956217448, "b": 500.70627848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 513.862528483073, "r": 408.023193359375, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Table 1 shows information about the three isotopes of neon.", "text": "Table 1 shows information about the three isotopes of neon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 270.1832275390625, "t": 483.30605061848956, "r": 310.77414957682294, "b": 471.42299397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 167.0146687825521, "t": 448.93007405598956, "r": 238.8944091796875, "b": 436.19822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Massnumber", "text": "Massnumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 274.8342692057292, "t": 449.77886962890625, "r": 416.0568033854167, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Percentage abundance (%)", "text": "Percentage abundance (%)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 195.34375, "t": 425.58831787109375, "r": 210.5653279622396, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 361.5127766927083, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "90.48", "text": "90.48", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 194.9209187825521, "t": 403.09539794921875, "r": 210.14251708984375, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 336.9890950520833, "t": 402.24660237630206, "r": 361.0899658203125, "b": 389.51475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "0.27", "text": "0.27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 194.9209187825521, "t": 379.75364176432294, "r": 210.9881591796875, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 336.5662841796875, "t": 379.32924397786456, "r": 361.0899658203125, "b": 366.59739176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "9.25", "text": "9.25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 330.09942626953125, "r": 344.5998942057292, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Calculate the relative atomic mass (Ar) of neon.", "text": "Calculate the relative atomic mass (Ar) of neon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 302.0893351236979, "r": 312.0426025390625, "b": 289.35748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Give your answer to 3 significant figures.", "text": "Give your answer to 3 significant figures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.553955078125, "t": 286.3866984049479, "r": 535.7154134114584, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 186.8873087565104, "t": 122.99460856119788, "r": 407.1775309244792, "b": 108.14076741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Relative atomic mass (3 significant figures) =", "text": "Relative atomic mass (3 significant figures) =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 553.8967692057291, "t": 126.38970947265625, "r": 568.6955159505209, "b": 114.08225504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 79.06770833333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 282.02223714192706, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Thisquestion is about electrolysis.", "text": "Thisquestion is about electrolysis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 747.2798563639323, "r": 512.0373942057291, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "Molten sodium chloride is electrolysed in an industrial process to produce sodium.", "text": "Molten sodium chloride is electrolysed in an industrial process to produce sodium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 721.816151936849, "r": 425.7816975911458, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Figure 8 shows a simplified version of the electrolysis cell used.", "text": "Figure 8 shows a simplified version of the electrolysis cell used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 267.64630126953125, "t": 696.3524373372396, "r": 314.15671793619794, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 183.92755126953125, "t": 669.6155395507812, "r": 248.19649251302084, "b": 655.6105143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Chlorine gas", "text": "Chlorine gas", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 386.4592692057292, "t": 627.6004231770834, "r": 430.4327392578125, "b": 615.7173665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Molten", "text": "Molten", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 394.9156901041667, "t": 615.29296875, "r": 432.9696858723958, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 147.98768107096353, "t": 560.121602376302, "r": 183.92755126953125, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Molten", "text": "Molten", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 371.2376708984375, "t": 560.121602376302, "r": 407.6003824869792, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Molten", "text": "Molten", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 148.41051228841147, "t": 546.5409545898438, "r": 186.8873087565104, "b": 534.6578776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 371.2376708984375, "t": 546.1165568033855, "r": 410.1372884114583, "b": 534.6578776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 148.41051228841147, "t": 535.5066731770833, "r": 189.42423502604166, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "chloride", "text": "chloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 372.5061442057292, "t": 534.6578776041667, "r": 412.6742350260417, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "chloride", "text": "chloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 222.40435791015625, "t": 479.06211344401044, "r": 252.4247029622396, "b": 467.17905680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Mesh'", "text": "Mesh'", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 48.201700846354164, "t": 439.59336344401044, "r": 102.74573771158855, "b": 423.89072672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.3162841796875, "t": 437.47137451171875, "r": 423.6676025390625, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Which is the correct half equation for the production of sodium?", "text": "Which is the correct half equation for the production of sodium?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 490.0506591796875, "t": 423.46636962890625, "r": 536.1382242838541, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.3162841796875, "t": 409.03692626953125, "r": 200.8404337565104, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 368.71938069661456, "r": 200.4176025390625, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na + e \u2192 Na+", "text": "Na + e \u2192 Na+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 331.79697672526044, "r": 199.57196044921875, "b": 318.21636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Na \u2192 Na+ + e\"", "text": "Na \u2192 Na+ + e\"", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 294.02581787109375, "r": 199.99479166666666, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na+ + e \u2192 Na", "text": "Na+ + e \u2192 Na", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 257.10345458984375, "r": 199.99479166666666, "b": 245.64479573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na+ \u2192 Na + e", "text": "Na+ \u2192 Na + e", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 411.8285725911458, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "A mesh is used to keep the products of the electrolysis apart.", "text": "A mesh is used to keep the products of the electrolysis apart.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.47016906738281, "t": 747.7042541503906, "r": 101.47727457682292, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 746.4310709635416, "r": 486.2452392578125, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Suggest one reason why the products of the electrolysis must be kept apart.", "text": "Suggest one reason why the products of the electrolysis must be kept apart.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.0506591796875, "t": 730.3040568033854, "r": 536.1382242838541, "b": 715.8746236165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.89299011230469, "t": 614.019775390625, "r": 101.47727457682292, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 612.7466023763021, "r": 447.7684733072917, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Which type of particle passes through the mesh in the electrolysis of moltensodiumchloride?", "text": "Which type of particle passes through the mesh in the electrolysis of moltensodiumchloride?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.0506591796875, "t": 586.0097045898438, "r": 535.7154134114584, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 572.004659016927, "r": 200.8404337565104, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Tick () one box.", "text": "Tick () one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 531.262715657552, "r": 141.64535522460938, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Atom", "text": "Atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 494.34035237630206, "r": 156.866943359375, "b": 481.18410237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Electron", "text": "Electron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 456.14479573567706, "r": 131.92045084635416, "b": 444.26169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "lon", "text": "lon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 420.91998291015625, "r": 159.82670084635416, "b": 407.76373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Molecule", "text": "Molecule", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 317.3675740559896, "r": 390.6875, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question6continueson thenextpage", "text": "Question6continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 19, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 506.5406901041667, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 83]}], "orig": "Aqueous sodium chloride solution is electrolysed in a different industrial process.", "text": "Aqueous sodium chloride solution is electrolysed in a different industrial process.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 748.128651936849, "r": 356.4389241536458, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Two gases and an alkaline solution are produced.", "text": "Two gases and an alkaline solution are produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 697.2012329101562, "r": 101.9000956217448, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 680.6498209635416, "r": 266.8006591796875, "b": 669.6155395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "sodiumionsandchlorideions?", "text": "sodiumionsandchlorideions?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 667.91796875, "r": 535.7154134114584, "b": 654.76171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 48.62452697753906, "t": 552.4824829101562, "r": 101.47727457682292, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.5", "text": "06.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 550.3605143229167, "r": 295.1297200520833, "b": 537.2042643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Name the alkaline solution produced.", "text": "Name the alkaline solution produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 490.4734700520833, "t": 537.2042643229167, "r": 535.7154134114584, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 50.31581115722656, "t": 446.80808512369794, "r": 83.29592386881511, "b": 433.22743733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 84.98721313476562, "t": 445.95928955078125, "r": 101.054443359375, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 446.38368733723956, "r": 336.5662841796875, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Explain how the alkaline solution is produced.", "text": "Explain how the alkaline solution is produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 419.22239176432294, "r": 366.5866292317708, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "You should refer to the processes at the electrodes.", "text": "You should refer to the processes at the electrodes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 406.91493733723956, "r": 536.1382242838541, "b": 392.48549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 558.125, "t": 256.2546590169271, "r": 564.89013671875, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 21, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 385.1907958984375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "07 This question is about silicon and compounds of silicon.", "text": "07 This question is about silicon and compounds of silicon.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 21, "bbox": {"l": 50.31581115722656, "t": 731.152842203776, "r": 171.2428995768229, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "07.1 and silicon.", "text": "07.1 and silicon.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 689.9865112304688, "r": 490.0506591796875, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Silicon can be extracted by reducing silicon dioxide with different substances.", "text": "Silicon can be extracted by reducing silicon dioxide with different substances.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 661.5520426432291, "r": 316.6936442057292, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "The equation for one possible reaction is:", "text": "The equation for one possible reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 21, "bbox": {"l": 230.86079915364584, "t": 634.3907470703125, "r": 417.3252766927083, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "2C(s) + SiO2(s)\u2192 Si(s) + 2CO(g)", "text": "2C(s) + SiO2(s)\u2192 Si(s) + 2CO(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.43039957682292, "t": 603.8342895507812, "r": 520.4938151041666, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Explain what this reaction shows about the position of silicon in the reactivity series.", "text": "Explain what this reaction shows about the position of silicon in the reactivity series.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 588.1316731770834, "r": 535.7154134114584, "b": 575.3998209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 21, "bbox": {"l": 48.62452697753906, "t": 422.19317626953125, "r": 305.7002766927083, "b": 406.06614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "07.2 Aluminium also reduces silicon dioxide.", "text": "07.2 Aluminium also reduces silicon dioxide.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 391.21230061848956, "r": 512.0373942057291, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Carbon is used rather than aluminium to reduce silicon dioxide because carbon is cheaperthanaluminium.", "text": "Carbon is used rather than aluminium to reduce silicon dioxide because carbon is cheaperthanaluminium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 352.16794840494794, "r": 312.0426025390625, "b": 338.58730061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Carbon can be obtained by heating coal.", "text": "Carbon can be obtained by heating coal.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.007568359375, "t": 325.8554484049479, "r": 332.3380533854167, "b": 313.5479939778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Aluminium is obtained from aluminium oxide.", "text": "Aluminium is obtained from aluminium oxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 298.69415283203125, "r": 382.6538899739583, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Explain why aluminium is more expensive than carbon.", "text": "Explain why aluminium is more expensive than carbon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.1311442057292, "t": 285.9623006184896, "r": 536.1382242838541, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 310.351318359375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Magnesiumalsoreducessilicondioxide.", "text": "Magnesiumalsoreducessilicondioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 748.128651936849, "r": 269.7604166666667, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The equationfor thereaction is:", "text": "The equationfor thereaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 224.09564208984375, "t": 723.0893351236979, "r": 424.5132649739583, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "2Mg(s) + SiO2(s) \u2192 Si(s) + 2MgO(s)", "text": "2Mg(s) + SiO2(s) \u2192 Si(s) + 2MgO(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.04734802246094, "t": 670.8887329101562, "r": 102.32291666666667, "b": 655.6105143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 669.1911417643229, "r": 516.6884358723959, "b": 643.3030395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Give one reason why the products are difficult to separate if magnesium is used to reduce silicon dioxide.", "text": "Give one reason why the products are difficult to separate if magnesium is used to reduce silicon dioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 639.9078776041666, "r": 535.2926025390625, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 48.62452697753906, "t": 525.3211873372395, "r": 102.74573771158855, "b": 509.1941731770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.4", "text": "07.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 523.19921875, "r": 518.3797200520834, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Calculate the minimum mass in grams of magnesium needed to completely reduce 1.2 kg of silicon dioxide.", "text": "Calculate the minimum mass in grams of magnesium needed to completely reduce 1.2 kg of silicon dioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 483.30605061848956, "r": 409.2916666666667, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Relative atomic masses (Ar): O = 16 Mg = 24 Si = 28", "text": "Relative atomic masses (Ar): O = 16 Mg = 24 Si = 28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.553955078125, "t": 470.14980061848956, "r": 536.1382242838541, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 234.66617838541666, "t": 176.46836344401038, "r": 391.1103108723958, "b": 164.16090901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Minimummassof magnesium=", "text": "Minimummassof magnesium=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 63.84611511230469, "t": 24.95928955078125, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 255.38446044921875, "t": 664.9472045898438, "r": 268.491943359375, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 664.9472045898438, "r": 327.68701171875, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 216.4848429361979, "t": 621.2344970703125, "r": 227.47821044921875, "b": 609.7758382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 254.9616495768229, "t": 622.5076904296875, "r": 268.06911214192706, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "!S", "text": "!S", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 622.5076904296875, "r": 328.10984293619794, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Si", "text": "Si", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 354.7476399739583, "t": 621.2344970703125, "r": 365.7410074869792, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 256.2301025390625, "t": 578.370585123698, "r": 266.8006591796875, "b": 566.487528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.42519124348956, "t": 578.370585123698, "r": 326.41855875651044, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 376.734375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "SizHe is a covalent compound of silicon and hydrogen.", "text": "SizHe is a covalent compound of silicon and hydrogen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 746.4310709635416, "r": 101.9000956217448, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.5", "text": "07.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 743.8847045898438, "r": 478.2116292317708, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Complete Figure 9 to show the outer shell electrons in a molecule of Si2H6", "text": "Complete Figure 9 to show the outer shell electrons in a molecule of Si2H6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 490.0506591796875, "t": 731.152842203776, "r": 535.2926025390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 23, "bbox": {"l": 268.491943359375, "t": 701.4451802571615, "r": 313.3110758463542, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 255.38446044921875, "t": 664.9472045898438, "r": 268.491943359375, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 664.9472045898438, "r": 327.68701171875, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 216.4848429361979, "t": 621.2344970703125, "r": 227.47821044921875, "b": 609.7758382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 254.9616495768229, "t": 622.5076904296875, "r": 268.06911214192706, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "!S", "text": "!S", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 622.5076904296875, "r": 328.10984293619794, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Si", "text": "Si", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 354.7476399739583, "t": 621.2344970703125, "r": 365.7410074869792, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 256.2301025390625, "t": 578.370585123698, "r": 266.8006591796875, "b": 566.487528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.42519124348956, "t": 578.370585123698, "r": 326.41855875651044, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.62452697753906, "t": 520.2284545898438, "r": 101.9000956217448, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.6", "text": "07.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 516.8332926432292, "r": 237.62593587239584, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Si2H6 reacts with oxygen.", "text": "Si2H6 reacts with oxygen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 490.09637451171875, "r": 270.60605875651044, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 23, "bbox": {"l": 210.9881591796875, "t": 464.63267008463544, "r": 437.6207275390625, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "(6)OH9 + (s)\"O!S (6)O L + (6)9H!S\u4e59", "text": "(6)OH9 + (s)\"O!S (6)O L + (6)9H!S\u4e59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 439.16896565755206, "r": 418.59375, "b": 425.16392008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "30 cm? of Si2H is reacted with 150 cm? (an excess) of oxygen.", "text": "30 cm? of Si2H is reacted with 150 cm? (an excess) of oxygen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 399.70021565755206, "r": 414.788330078125, "b": 386.54396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Calculate the total volume of gases present after the reaction.", "text": "Calculate the total volume of gases present after the reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 373.81211344401044, "r": 479.9029134114583, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "All volumes of gases are measured at the same temperature and pressure.", "text": "All volumes of gases are measured at the same temperature and pressure.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.553955078125, "t": 359.80706787109375, "r": 535.7154134114584, "b": 347.07521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 326.84136962890625, "t": 119.17502848307288, "r": 537.8295491536459, "b": 105.16998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Volume of gases = cm3", "text": "Volume of gases = cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 553.4739583333334, "t": 121.29701741536462, "r": 569.5411783854166, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 553.4739583333334, "t": 121.29701741536462, "r": 569.5411783854166, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 281.59942626953125, "t": 813.4855066935221, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.10132853190105, "t": 744.309092203776, "r": 99.78598022460938, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 447.65688069661456, "r": 101.9000956217448, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 309.0828450520833, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "This question is about acids and alkalis.", "text": "This question is about acids and alkalis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.10132853190105, "t": 744.309092203776, "r": 99.78598022460938, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 745.1578877766927, "r": 324.304443359375, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Explain why the pH of an acid depends on:", "text": "Explain why the pH of an acid depends on:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 116.69886271158855, "t": 723.9381306966146, "r": 238.4715779622396, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "thestrengthoftheacid", "text": "thestrengthoftheacid", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 706.113525390625, "r": 266.8006591796875, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7 the concentration of the acid.", "text": "the concentration of the acid.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 483.7083333333333, "t": 693.3816731770834, "r": 535.7154134114584, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 447.65688069661456, "r": 101.9000956217448, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 445.95928955078125, "r": 445.2315266927083, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "A student titrated 25.00 cm3 of hydrochloric acid with 0.100 mol/dm3 bariumhydroxidesolution.", "text": "A student titrated 25.00 cm3 of hydrochloric acid with 0.100 mol/dm3 bariumhydroxidesolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 403.94419352213544, "r": 243.96826171875, "b": 392.48549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Table 2 shows the results.", "text": "Table 2 shows the results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 269.7604166666667, "t": 378.90484619140625, "r": 311.6197916666667, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 62.57765197753906, "t": 346.65081787109375, "r": 151.79308064778647, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Titration number", "text": "Titration number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 269.33758544921875, "t": 346.65081787109375, "r": 277.7940266927083, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 325.5729166666667, "t": 347.07521565755206, "r": 335.2978108723958, "b": 333.07017008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 383.0767008463542, "t": 346.65081787109375, "r": 391.5331217447917, "b": 334.34336344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 438.8892008463542, "t": 347.07521565755206, "r": 448.6140950520833, "b": 333.91896565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 495.9701741536458, "t": 347.07521565755206, "r": 505.695068359375, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 62.57765197753906, "t": 327.55303955078125, "r": 212.25663248697916, "b": 315.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Volume of bariumhydroxide", "text": "Volume of bariumhydroxide", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 258.34421793619794, "t": 321.61151123046875, "r": 289.21022542317706, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.90", "text": "23.90", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.0023600260417, "t": 321.61151123046875, "r": 345.8683675130208, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.45", "text": "23.45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 371.6604817708333, "t": 321.61151123046875, "r": 402.5264892578125, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.55", "text": "23.55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 428.3186442057292, "t": 321.61151123046875, "r": 459.1846516927083, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.55", "text": "23.55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.976806640625, "t": 321.61151123046875, "r": 516.265625, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.45", "text": "23.45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 61.73200480143229, "t": 314.39678955078125, "r": 172.5113525390625, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "solution used in cm?", "text": "solution used in cm?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.3162841796875, "t": 274.5036417643229, "r": 507.8091634114583, "b": 248.61553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "The student calculated the volume of barium hydroxide solution to be used in the titration calculation as 23.50 cm3.", "text": "The student calculated the volume of barium hydroxide solution to be used in the titration calculation as 23.50 cm3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 234.61049397786462, "r": 523.03076171875, "b": 209.99558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "Explain why the student used a volume of 23.50 cm3 of barium hydroxide solution in the titrationcalculation.", "text": "Explain why the student used a volume of 23.50 cm3 of barium hydroxide solution in the titrationcalculation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.1311442057292, "t": 209.14678955078125, "r": 536.1382242838541, "b": 194.71734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 542.4805908203125, "t": 788.4461924235026, "r": 580.9573567708334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.054443359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.3", "text": "08.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.054443359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.3", "text": "08.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 499.3527425130208, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "25.00 cm? of the hydrochloric acid reacted with 23.50 cm? of the 0.100 mol/dm3 bariumhydroxide solution.", "text": "25.00 cm? of the hydrochloric acid reacted with 23.50 cm? of the 0.100 mol/dm3 bariumhydroxide solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 270.1832275390625, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 197.0350341796875, "t": 707.8111063639323, "r": 451.1510416666667, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "2HCl(aq)+ Ba(OH)2(aq)\u2192 BaCl2(aq)+ 2H2O(l)", "text": "2HCl(aq)+ Ba(OH)2(aq)\u2192 BaCl2(aq)+ 2H2O(l)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 668.3423665364584, "r": 421.5535074869792, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Calculate the concentration of the hydrochloric acid in mol/dm?.", "text": "Calculate the concentration of the hydrochloric acid in mol/dm?.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 655.1861165364584, "r": 536.1382242838541, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 161.51798502604166, "t": 413.70526123046875, "r": 536.5610758463541, "b": 401.39780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Concentration of the hydrochloric acid = mol/dm3", "text": "Concentration of the hydrochloric acid = mol/dm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 187.73295084635416, "t": 321.1871134440104, "r": 390.6875, "b": 307.6064656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question8continuesonthenextpage", "text": "Question8continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 443.9630533854167, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Another student titrated sulfuric acid with barium hydroxide solution.", "text": "Another student titrated sulfuric acid with barium hydroxide solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 748.5530497233073, "r": 270.1832275390625, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 26, "bbox": {"l": 195.34375, "t": 723.5137329101562, "r": 453.26513671875, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "H2SO4(aq) + Ba(OH)2(aq) \u2192 BaSO4(s) + 2H2O(l)", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 696.7768351236979, "r": 513.7286783854166, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "The student measured the electrical conductivity of the mixture during the titration.", "text": "The student measured the electrical conductivity of the mixture during the titration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 670.0399373372396, "r": 437.1979166666667, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Thebetteraconductor,thehighertheelectricalconductivityvalue.", "text": "Thebetteraconductor,thehighertheelectricalconductivityvalue.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 644.1518351236979, "r": 254.538818359375, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 10 shows the results.", "text": "Figure 10 shows the results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 26, "bbox": {"l": 265.5321858723958, "t": 618.2637329101562, "r": 315.84800211588544, "b": 605.1074829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 169.1287841796875, "t": 568.6094970703125, "r": 176.3167521158854, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 99.3631591796875, "t": 518.106465657552, "r": 146.29639689127603, "b": 505.37461344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Electrical", "text": "Electrical", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 168.70596313476562, "t": 513.0137329101562, "r": 177.16239420572916, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 98.94033813476562, "t": 507.9209798177083, "r": 158.9810587565104, "b": 491.79396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "conductivity", "text": "conductivity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 99.3631591796875, "t": 494.76475016276044, "r": 154.33001708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "in arbitrary", "text": "in arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 99.3631591796875, "t": 481.18410237630206, "r": 124.73248291015625, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 230.01513671875, "t": 390.78794352213544, "r": 244.81392415364584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 285.82763671875, "t": 390.78794352213544, "r": 301.0492350260417, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 343.3314208984375, "t": 390.78794352213544, "r": 358.1302083333333, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 400.4123942057292, "t": 390.36354573567706, "r": 413.9427083333333, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 185.1960245768229, "t": 377.20729573567706, "r": 431.7012125651042, "b": 364.89980061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Volumeof bariumhydroxidesolution added in cm3", "text": "Volumeof bariumhydroxidesolution added in cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 50.73863728841146, "t": 336.88975016276044, "r": 88.36979166666667, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "08.", "text": "08.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 82.02746073404948, "t": 336.46535237630206, "r": 101.054443359375, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": ":4", "text": ":4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 50.73863728841146, "t": 336.88975016276044, "r": 88.36979166666667, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "08.", "text": "08.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 82.02746073404948, "t": 336.46535237630206, "r": 101.054443359375, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": ":4", "text": ":4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 335.61655680338544, "r": 524.7220458984375, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "Explain why the electrical conductivity of the mixture was zero when the sulfuric acid had just beenneutralised.", "text": "Explain why the electrical conductivity of the mixture was zero when the sulfuric acid had just beenneutralised.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 295.7234090169271, "r": 276.94838460286456, "b": 283.41595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Use the equationfor thereaction.", "text": "Use the equationfor thereaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 270.25970458984375, "r": 255.80729166666666, "b": 256.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Refer to ions in your answer.", "text": "Refer to ions in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.1311442057292, "t": 257.9522501627604, "r": 535.7154134114584, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 63.42329406738281, "t": 25.80808512369788, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.445068359375, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 553.0511067708334, "t": 659.0056762695312, "r": 569.9639892578125, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.5", "text": "08.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 113.3162841796875, "t": 772.7435709635416, "r": 457.4933675130208, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "The student then added a further 10 cm? of barium hydroxide solution.", "text": "The student then added a further 10 cm? of barium hydroxide solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 745.582285563151, "r": 364.8953450520833, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "The electrical conductivity of the mixture increased.", "text": "The electrical conductivity of the mixture increased.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 719.6941731770834, "r": 222.8271687825521, "b": 706.5379231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Giveonereasonwhy.", "text": "Giveonereasonwhy.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.0506591796875, "t": 704.840342203776, "r": 536.1382242838541, "b": 690.4109090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 553.0511067708334, "t": 659.0056762695312, "r": 569.9639892578125, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 230.86079915364584, "t": 562.2435709635417, "r": 346.2911783854167, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 188.15576171875, "t": 445.11049397786456, "r": 397.45263671875, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 541.2121175130209, "t": 786.32421875, "r": 580.5345458984375, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 219]}], "orig": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 245]}], "orig": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "text": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 186.04166666666666, "t": 445.11049397786456, "r": 394.9156901041667, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 363.2040608723958, "t": 44.90590413411462, "r": 507.8091634114583, "b": 33.44716389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "226G8462/1H", "text": "226G8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 541.2121175130209, "t": 786.32421875, "r": 580.5345458984375, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.3713684082031, "t": 396.29754638671875, "r": 544.0729370117188, "b": 194.6727294921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.6879475911458, "t": 453.6784261067708, "r": 534.4469401041666, "b": 464.7126871744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.3053792317708, "t": 474.898193359375, "r": 488.7821858723958, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 510.9717610677083, "r": 473.1377766927083, "b": 519.8840738932291, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 526.25, "r": 473.5605875651042, "b": 537.2842610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 544.4989827473959, "r": 473.9833984375, "b": 552.9868977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 473.1377766927083, "b": 571.2358805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 578.875, "r": 473.5605875651042, "b": 589.0605061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 595.0020345052084, "r": 473.5605875651042, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 612.4022216796875, "r": 473.9833984375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.5738525390625, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 11, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.6879475911458, "t": 453.6784261067708, "r": 534.4469401041666, "b": 464.7126871744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.6879475911458, "t": 453.6784261067708, "r": 534.4469401041666, "b": 464.7126871744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.3053792317708, "t": 474.898193359375, "r": 488.7821858723958, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 510.9717610677083, "r": 473.1377766927083, "b": 519.8840738932291, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 526.25, "r": 473.5605875651042, "b": 537.2842610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 544.4989827473959, "r": 473.9833984375, "b": 552.9868977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 473.1377766927083, "b": 571.2358805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 578.875, "r": 473.5605875651042, "b": 589.0605061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 595.0020345052084, "r": 473.5605875651042, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 612.4022216796875, "r": 473.9833984375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.5738525390625, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.028892517089844, "t": 797.4698028564453, "r": 168.19972229003906, "b": 750.2145767211914, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.59428787231445, "t": 53.4034423828125, "r": 246.23011779785156, "b": 17.48321533203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 500.0463562011719, "t": 546.2381591796875, "r": 543.3062133789062, "b": 493.0670166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.85730743408203, "t": 53.138671875, "r": 99.28272247314453, "b": 17.32171630859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 83.22163391113281, "t": 775.5824356079102, "r": 104.6264419555664, "b": 759.376838684082, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 82.88858032226562, "t": 490.4773864746094, "r": 103.99593353271484, "b": 474.3543395996094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.826263427734375, "t": 53.1265869140625, "r": 99.09163665771484, "b": 17.47698974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 216.1488037109375, "t": 687.8902130126953, "r": 364.1007385253906, "b": 529.9866638183594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.824642181396484, "t": 53.1064453125, "r": 99.16098022460938, "b": 17.65423583984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 545.0658569335938, "t": 516.5293884277344, "r": 576.5323486328125, "b": 477.6912536621094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.76749038696289, "t": 53.12872314453125, "r": 99.13385772705078, "b": 17.51544189453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 84.31061553955078, "t": 713.8152923583984, "r": 498.6824645996094, "b": 367.89630126953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.6757698059082, "t": 53.302734375, "r": 99.16030883789062, "b": 17.4625244140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.825653076171875, "t": 53.16912841796875, "r": 99.22120666503906, "b": 17.67669677734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 39.997745513916016, "t": 788.6085472106934, "r": 540.5895385742188, "b": 76.569580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.730838775634766, "t": 53.16070556640625, "r": 99.11856842041016, "b": 17.56536865234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 148.96104431152344, "t": 699.4140472412109, "r": 431.3801574707031, "b": 511.32061767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.72150421142578, "t": 53.21575927734375, "r": 99.02352142333984, "b": 17.614990234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 545.0675048828125, "t": 241.86834716796875, "r": 577.0537719726562, "b": 200.44451904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 183.67413330078125, "t": 689.0947418212891, "r": 395.67596435546875, "b": 583.9583435058594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.66802215576172, "t": 53.22222900390625, "r": 99.1289291381836, "b": 17.5638427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.81427001953125, "t": 53.1534423828125, "r": 99.220947265625, "b": 17.87664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 204.51419067382812, "t": 716.3077774047852, "r": 373.9934387207031, "b": 569.1023864746094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.833866119384766, "t": 53.0880126953125, "r": 99.1875991821289, "b": 17.359130859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 544.8119506835938, "t": 529.9595642089844, "r": 576.8878173828125, "b": 489.5596923828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.73081970214844, "t": 53.15118408203125, "r": 99.1497802734375, "b": 17.478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.679386138916016, "t": 53.180908203125, "r": 99.15983581542969, "b": 17.7747802734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 46.86721420288086, "t": 776.192756652832, "r": 104.57872772216797, "b": 759.2460327148438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.66917419433594, "t": 53.17962646484375, "r": 99.1082534790039, "b": 17.5198974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 210.0513153076172, "t": 557.4714965820312, "r": 371.6581726074219, "b": 505.3802490234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 544.9921875, "t": 168.60968017578125, "r": 577.043212890625, "b": 127.175048828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.66910934448242, "t": 53.190185546875, "r": 99.1316909790039, "b": 17.5001220703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 82.45284271240234, "t": 516.9572143554688, "r": 104.8023681640625, "b": 500.1972351074219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.7761116027832, "t": 53.252685546875, "r": 99.26835632324219, "b": 17.78460693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 544.7325439453125, "t": 150.69403076171875, "r": 577.20947265625, "b": 109.1588134765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 39.47840118408203, "t": 788.3730697631836, "r": 539.8247680664062, "b": 75.8057861328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.725730895996094, "t": 53.2596435546875, "r": 99.10089874267578, "b": 17.6256103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.847145080566406, "t": 53.126220703125, "r": 99.17255401611328, "b": 17.7830810546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.71705627441406, "t": 53.154052734375, "r": 99.15788269042969, "b": 17.366455078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 545.0584716796875, "t": 282.157958984375, "r": 576.5506591796875, "b": 241.53350830078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.726165771484375, "t": 53.06036376953125, "r": 99.18004608154297, "b": 17.6517333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.74374771118164, "t": 53.08709716796875, "r": 99.16704559326172, "b": 17.24615478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 82.2315444946289, "t": 748.2027435302734, "r": 104.81997680664062, "b": 731.6419372558594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.73017120361328, "t": 53.1356201171875, "r": 99.146728515625, "b": 17.383056640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 205.07598876953125, "t": 675.6852722167969, "r": 375.23626708984375, "b": 558.8597717285156, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/36"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 545.0231323242188, "t": 145.28521728515625, "r": 577.076171875, "b": 104.4761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 81.33708953857422, "t": 748.4152221679688, "r": 104.49987030029297, "b": 731.7340087890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 46.28067398071289, "t": 448.952392578125, "r": 105.23295593261719, "b": 431.4825134277344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.59077835083008, "t": 53.1778564453125, "r": 99.12206268310547, "b": 17.450927734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 46.18698501586914, "t": 776.3649291992188, "r": 105.48291778564453, "b": 758.8308334350586, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.78736114501953, "t": 53.08837890625, "r": 99.23674011230469, "b": 17.3798828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 99.21434020996094, "t": 594.9752044677734, "r": 436.32781982421875, "b": 363.9990539550781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/7"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 46.077030181884766, "t": 338.9711608886719, "r": 105.3624267578125, "b": 321.97808837890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.590415954589844, "t": 53.24151611328125, "r": 99.1473388671875, "b": 17.32464599609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 545.11279296875, "t": 682.5220031738281, "r": 577.2296142578125, "b": 641.0832061767578, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.74171447753906, "t": 53.149169921875, "r": 99.22322845458984, "b": 17.59033203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.53289794921875, "t": 53.03009033203125, "r": 99.4490737915039, "b": 16.610595703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.74699020385742, "t": 53.18353271484375, "r": 99.3206787109375, "b": 17.10015869140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.7423095703125, "t": 53.17816162109375, "r": 99.29827880859375, "b": 17.1097412109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.725128173828125, "t": 53.1527099609375, "r": 99.40816497802734, "b": 17.32061767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 348.2997131347656, "t": 71.1689453125, "r": 526.5169067382812, "b": 35.192138671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}, "2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}, "3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}, "4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}, "5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}, "6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}, "7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}, "8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}, "9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}, "10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}, "11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}, "12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}, "13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}, "14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}, "15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}, "16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}, "17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}, "18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}, "19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}, "20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}, "21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}, "22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}, "23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}, "24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}, "25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}, "26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}, "27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}, "28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}, "29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}, "30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}, "31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}, "32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}, "_failed_pages": []} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p1.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p1.json new file mode 100644 index 0000000..8cac84e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p1.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/16"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/24"}, {"$ref": "#/groups/4"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/5"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.4461924235026, "r": 172.5113525390625, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 54.96685282389323, "t": 628.8736165364584, "r": 120.50426228841145, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 602.13671875, "r": 156.02130126953125, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 587.707275390625, "r": 297.24383544921875, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "I declare this ismyown work.", "text": "I declare this ismyown work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 186.04166666666666, "b": 496.88669840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "GCSE CHEMISTRY", "text": "GCSE CHEMISTRY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 481.60850016276044, "r": 122.19554646809895, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Higher Tier", "text": "Higher Tier", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 116.69886271158855, "t": 481.18410237630206, "r": 191.5383504231771, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Paper 1", "text": "Paper 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 407.76373291015625, "r": 92.59801228841145, "b": 395.03188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 394.18308512369794, "r": 186.04166666666666, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 380.60243733723956, "r": 83.71875, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 367.44618733723956, "r": 153.484375, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7a scientific calculator", "text": "\u00b7a scientific calculator", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 354.71433512369794, "r": 191.9611612955729, "b": 342.40688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7 the periodic table (enclosed).", "text": "the periodic table (enclosed).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 329.2506306966146, "r": 108.66524251302083, "b": 317.7919718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 316.5187784830729, "r": 230.86079915364584, "b": 303.3625284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 303.3625284830729, "r": 241.43133544921875, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7Pencil should only be used for drawing.", "text": "\u00b7Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 277.47442626953125, "r": 373.351806640625, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "\u00b7 Answer all questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "Answer all questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 291.4794718424479, "r": 241.0085245768229, "b": 276.20123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 250.73752848307288, "r": 424.9360758463542, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 224.84942626953125, "r": 402.5264892578125, "b": 200.23447672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "\u00b7 Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 198.96132405598962, "r": 356.4389241536458, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "\u00b7In all calculations, show clearly how you work out your answer.", "text": "\u00b7In all calculations, show clearly how you work out your answer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 173.92197672526038, "r": 106.12831624348958, "b": 160.34136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 159.49257405598962, "r": 251.57906087239584, "b": 147.18511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "\u00b7 The maximum mark for this paper is 100.", "text": "The maximum mark for this paper is 100.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 145.91192626953125, "r": 282.445068359375, "b": 133.60447184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "The marks for questions are shown in brackets.", "text": "The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 120.02382405598962, "r": 391.5331217447917, "b": 94.56011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "You are reminded of the need for good English and clear presentation in your answers.", "text": "You are reminded of the need for good English and clear presentation in your answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 225.36409505208334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "JUN2284621H01", "text": "JUN2284621H01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 498.0842692057292, "t": 548.6629231770833, "r": 546.2859700520834, "b": 493.06715901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 331.49241129557294, "t": 437.47137451171875, "r": 544.5946858723959, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 45 minutes", "text": "Time allowed: 1 hour 45 minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 367.8551025390625, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E10", "text": "IB/M/Jun22/E10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 467.6410725911458, "t": 33.87156168619788, "r": 545.8631591796875, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "8462/1H", "text": "8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.028892517089844, "t": 797.4698028564453, "r": 168.19972229003906, "b": 750.2145767211914, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.59428787231445, "t": 53.4034423828125, "r": 246.23011779785156, "b": 17.48321533203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 500.0463562011719, "t": 546.2381591796875, "r": 543.3062133789062, "b": 493.0670166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.3713684082031, "t": 396.29754638671875, "r": 544.0729370117188, "b": 194.6727294921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.6879475911458, "t": 453.6784261067708, "r": 534.4469401041666, "b": 464.7126871744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.3053792317708, "t": 474.898193359375, "r": 488.7821858723958, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 510.9717610677083, "r": 473.1377766927083, "b": 519.8840738932291, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 526.25, "r": 473.5605875651042, "b": 537.2842610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.1041666666667, "t": 544.4989827473959, "r": 473.9833984375, "b": 552.9868977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 473.1377766927083, "b": 571.2358805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 578.875, "r": 473.5605875651042, "b": 589.0605061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 595.0020345052084, "r": 473.5605875651042, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 612.4022216796875, "r": 473.9833984375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.5738525390625, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 11, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.6879475911458, "t": 453.6784261067708, "r": 534.4469401041666, "b": 464.7126871744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.6879475911458, "t": 453.6784261067708, "r": 534.4469401041666, "b": 464.7126871744792, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.3053792317708, "t": 474.898193359375, "r": 488.7821858723958, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 493.5715738932292, "r": 472.7149658203125, "b": 502.0594889322917, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 510.9717610677083, "r": 473.1377766927083, "b": 519.8840738932291, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 526.25, "r": 473.5605875651042, "b": 537.2842610677084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.1041666666667, "t": 544.4989827473959, "r": 473.9833984375, "b": 552.9868977864584, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 473.1377766927083, "b": 571.2358805338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 578.875, "r": 473.5605875651042, "b": 589.0605061848959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 595.0020345052084, "r": 473.5605875651042, "b": 605.1875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 612.4022216796875, "r": 473.9833984375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "8", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.5738525390625, "t": 630.226806640625, "r": 487.5137125651042, "b": 643.383056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 10, "end_row_offset_idx": 11, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p10.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p10.json new file mode 100644 index 0000000..7a9ac59 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p10.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/10"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.86789957682294, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 681.9230041503906, "r": 341.2173258463542, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 666.2203776041666, "r": 396.6070149739583, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "O Carbon atom", "text": "O Carbon atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.64488220214844, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 346.2911783854167, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "This question is about different forms of carbon.", "text": "This question is about different forms of carbon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 743.4603068033854, "r": 337.41192626953125, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Figure 5 represents the structure of diamond.", "text": "Figure 5 represents the structure of diamond.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 10, "bbox": {"l": 267.64630126953125, "t": 716.7234090169271, "r": 313.73388671875, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 681.9230041503906, "r": 341.2173258463542, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 317.53928629557294, "t": 666.2203776041666, "r": 396.6070149739583, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "O Carbon atom", "text": "O Carbon atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 49.89299011230469, "t": 544.418965657552, "r": 345.8683675130208, "b": 529.1407470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "03.1 Describe the structure and bonding of diamond.", "text": "03.1 Describe the structure and bonding of diamond.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.553955078125, "t": 529.1407470703125, "r": 535.7154134114584, "b": 515.9844970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 10, "bbox": {"l": 49.04734802246094, "t": 310.5772501627604, "r": 364.0497233072917, "b": 294.4502156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "03.2 Explain why diamond has a very high melting point.", "text": "03.2 Explain why diamond has a very high melting point.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.553955078125, "t": 294.02581787109375, "r": 535.7154134114584, "b": 280.86956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 183.67413330078125, "t": 689.0947418212891, "r": 395.67596435546875, "b": 583.9583435058594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.66802215576172, "t": 53.22222900390625, "r": 99.1289291381836, "b": 17.5638427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p11.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p11.json new file mode 100644 index 0000000..46c1551 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p11.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 284.1363525390625, "t": 812.2123209635416, "r": 293.86126708984375, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 11, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 297.24383544921875, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Figure 6 represents the molecule C70", "text": "Figure 6 represents the molecule C70", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 11, "bbox": {"l": 268.06911214192706, "t": 746.4310709635416, "r": 313.73388671875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 47.77887980143229, "t": 541.0238037109375, "r": 102.32291666666667, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 538.4774373372395, "r": 322.6131591796875, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is the name of this type of molecule?", "text": "What is the name of this type of molecule?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 525.3211873372395, "r": 535.7154134114584, "b": 510.8917643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.3162841796875, "t": 510.8917643229167, "r": 200.8404337565104, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 470.99859619140625, "r": 161.51798502604166, "b": 456.14479573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Fullerene", "text": "Fullerene", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 433.65183512369794, "r": 165.74620564778647, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Graphene", "text": "Graphene", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 396.30507405598956, "r": 164.05492146809897, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Nanotube", "text": "Nanotube", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 360.65586344401044, "r": 156.866943359375, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Polymer", "text": "Polymer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 294.8746134440104, "r": 102.32291666666667, "b": 280.4451700846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 293.1770222981771, "r": 503.5809733072917, "b": 279.1719767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Molecules such as Cro can be used in medicine to move drugs around the body.", "text": "Molecules such as Cro can be used in medicine to move drugs around the body.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 115.007568359375, "t": 266.0157267252604, "r": 433.8153483072917, "b": 253.28387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Suggest one reason why the Cro molecule is suitable for this use.", "text": "Suggest one reason why the Cro molecule is suitable for this use.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 491.741943359375, "t": 253.70827229817712, "r": 536.98388671875, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.81427001953125, "t": 53.1534423828125, "r": 99.220947265625, "b": 17.87664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 204.51419067382812, "t": 716.3077774047852, "r": 373.9934387207031, "b": 569.1023864746094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p12.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p12.json new file mode 100644 index 0000000..8ac9137 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p12.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.86789957682294, "t": 813.909901936849, "r": 295.97536214192706, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 478.6344401041667, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Calculate the number of C7o molecules that can be made from one mole of carbonatoms.", "text": "Calculate the number of C7o molecules that can be made from one mole of carbonatoms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 733.2748209635416, "r": 339.9488525390625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "The Avogadro constant = 6.02 \u00d7 1023 per mole", "text": "The Avogadro constant = 6.02 \u00d7 1023 per mole", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.553955078125, "t": 720.1185709635416, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 207.6055908203125, "t": 502.8282470703125, "r": 321.76751708984375, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Number of molecules =", "text": "Number of molecules =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.64488220214844, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 553.8967692057291, "t": 505.79901123046875, "r": 568.6955159505209, "b": 493.91595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.833866119384766, "t": 53.0880126953125, "r": 99.1875991821289, "b": 17.359130859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 544.8119506835938, "t": 529.9595642089844, "r": 576.8878173828125, "b": 489.5596923828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p13.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p13.json new file mode 100644 index 0000000..4bd3830 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p13.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/18"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 115.43039957682292, "t": 772.3191782633463, "r": 363.2040608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "This question is about zinc and compounds of zinc.", "text": "This question is about zinc and compounds of zinc.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 745.582285563151, "r": 483.7083333333333, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "A student produces pure crystals of zinc chloride by reacting zinc oxide with hydrochloric acid.", "text": "A student produces pure crystals of zinc chloride by reacting zinc oxide with hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 705.2647399902344, "r": 270.60605875651044, "b": 692.1084899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 213.94791666666666, "t": 679.801025390625, "r": 434.2381591796875, "b": 664.9472045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "ZnO(s) + 2HCl(aq)\u2192 ZnCl2(aq) + H2O()", "text": "ZnO(s) + 2HCl(aq)\u2192 ZnCl2(aq) + H2O()", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 47.356058756510414, "t": 642.0298665364584, "r": 506.9635416666667, "b": 622.0832926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "4]. The student adds zinc oxide to hydrochloric acid until the zinc oxide is in excess.", "text": "4]. The student adds zinc oxide to hydrochloric acid until the zinc oxide is in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 611.0490112304688, "r": 502.3125, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Giveoneobservationthatthestudentcouldmaketoshowthatthezincoxideis in excess.", "text": "Giveoneobservationthatthestudentcouldmaketoshowthatthezincoxideis in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 491.741943359375, "t": 586.4341023763021, "r": 536.98388671875, "b": 572.004659016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.201700846354164, "t": 483.73044840494794, "r": 108.24242146809895, "b": 466.75465901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 102.74573771158855, "t": 481.60850016276044, "r": 450.3053792317708, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "IWhy is excess zinc oxide used rather than excess hydrochloric acid?", "text": "IWhy is excess zinc oxide used rather than excess hydrochloric acid?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 491.741943359375, "t": 468.02785237630206, "r": 537.4066975911459, "b": 453.17401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.89299011230469, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 349.19720458984375, "r": 534.8697916666666, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "Name one other compound that the student could add to hydrochloric acid to produce zinc chloride.", "text": "Name one other compound that the student could add to hydrochloric acid to produce zinc chloride.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.0506591796875, "t": 323.3091023763021, "r": 536.1382242838541, "b": 308.8796590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.62452697753906, "t": 232.91290283203125, "r": 108.24242146809895, "b": 218.48350016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 105.2826639811198, "t": 231.21535237630212, "r": 513.3058675130209, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "Describe how the student should obtain crystals of zinc chloride from a solution of zinc chloride.", "text": "Describe how the student should obtain crystals of zinc chloride from a solution of zinc chloride.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.1311442057292, "t": 202.35646565755212, "r": 536.5610758463541, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.73081970214844, "t": 53.15118408203125, "r": 99.1497802734375, "b": 17.478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p14.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p14.json new file mode 100644 index 0000000..3a8abc0 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p14.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.43039957682292, "t": 772.7435709635416, "r": 480.3257649739583, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "Zinc chloride is also produced in a displacement reaction between zinc and copper chloride solution.", "text": "Zinc chloride is also produced in a displacement reaction between zinc and copper chloride solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 270.1832275390625, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Theequationfor thereaction is:", "text": "Theequationfor thereaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 251.15625, "t": 708.659901936849, "r": 397.45263671875, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "n+\u00b2Ouz\u2190\u00b2on+uz", "text": "n+\u00b2Ouz\u2190\u00b2on+uz", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 656.8836873372396, "r": 103.5913798014323, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 654.76171875, "r": 332.3380533854167, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Complete the ionic equation for this reaction.", "text": "Complete the ionic equation for this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 639.9078776041666, "r": 535.7154134114584, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 164.90056355794272, "t": 613.1709798177084, "r": 205.9142862955729, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Zn +", "text": "Zn +", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 310.77414957682294, "t": 613.1709798177084, "r": 385.1907958984375, "b": 598.7415568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "\u2192\u2192 Zn2+ +", "text": "\u2192\u2192 Zn2+ +", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 542.2969970703125, "r": 101.9000956217448, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.6", "text": "04.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 539.7506306966145, "r": 390.2646484375, "b": 527.018778483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Why is zinc described as being oxidised in this reaction?", "text": "Why is zinc described as being oxidised in this reaction?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 491.741943359375, "t": 527.018778483073, "r": 537.4066975911459, "b": 512.589335123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.679386138916016, "t": 53.180908203125, "r": 99.15983581542969, "b": 17.7747802734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p15.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p15.json new file mode 100644 index 0000000..5ad3123 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p15.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/pictures/3"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 104.85984293619792, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.7", "text": "04.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 553.4739583333334, "t": 145.06313069661462, "r": 569.9639892578125, "b": 131.05808512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 104.85984293619792, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.7", "text": "04.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 525.1448567708334, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Complete Figure 7 to show how zinc, copper and another substance can be used to light a lamp.", "text": "Complete Figure 7 to show how zinc, copper and another substance can be used to light a lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 15, "bbox": {"l": 114.16192626953125, "t": 706.9623209635416, "r": 146.29639689127603, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Label:", "text": "Label:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 15, "bbox": {"l": 119.65861002604167, "t": 687.0157470703125, "r": 147.56486002604166, "b": 675.1326802571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "zinc", "text": "zinc", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 15, "bbox": {"l": 124.30965169270833, "t": 666.644775390625, "r": 161.51798502604166, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "copper", "text": "copper", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 15, "bbox": {"l": 118.81296793619792, "t": 648.3957926432291, "r": 253.27034505208334, "b": 636.9371134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "the othersubstanceused.", "text": "the othersubstanceused.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 623.3564656575521, "r": 342.9086100260417, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The symbol represents the lamp.", "text": "The symbol represents the lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 485.8224283854167, "t": 610.6246134440104, "r": 537.4066975911459, "b": 596.1951904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 15, "bbox": {"l": 268.91477457682294, "t": 584.7365112304688, "r": 314.57952880859375, "b": 569.8826904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 553.4739583333334, "t": 145.06313069661462, "r": 569.9639892578125, "b": 131.05808512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 207.1827596028646, "t": 136.57525634765625, "r": 370.3920491536458, "b": 122.99460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 46.86721420288086, "t": 776.192756652832, "r": 104.57872772216797, "b": 759.2460327148438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.66917419433594, "t": 53.17962646484375, "r": 99.1082534790039, "b": 17.5198974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 210.0513153076172, "t": 557.4714965820312, "r": 371.6581726074219, "b": 505.3802490234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 544.9921875, "t": 168.60968017578125, "r": 577.043212890625, "b": 127.175048828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p16.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p16.json new file mode 100644 index 0000000..6c3666f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p16.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 360.2443033854167, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "This question is about groups in the periodic table.", "text": "This question is about groups in the periodic table.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 731.152842203776, "r": 459.1846516927083, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "The elements in Group 1 become more reactive going down the group.", "text": "The elements in Group 1 become more reactive going down the group.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 705.2647399902344, "r": 315.84800211588544, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Rubidium is below potassium in Group 1.", "text": "Rubidium is below potassium in Group 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.47016906738281, "t": 653.488525390625, "r": 101.47727457682292, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 652.2153523763021, "r": 334.0293375651042, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Rubidium and potassium are added to water.", "text": "Rubidium and potassium are added to water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 625.0540568033854, "r": 508.2319742838542, "b": 598.7415568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Predict one observation you would see that shows that rubidium is more reactive than potassium.", "text": "Predict one observation you would see that shows that rubidium is more reactive than potassium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.0506591796875, "t": 599.1659545898438, "r": 534.8697916666666, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.62452697753906, "t": 483.73044840494794, "r": 108.66524251302083, "b": 467.17905680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 102.74573771158855, "t": 480.33530680338544, "r": 380.116943359375, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "IExplain why rubidium is more reactive than potassium.", "text": "IExplain why rubidium is more reactive than potassium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 467.60345458984375, "r": 536.5610758463541, "b": 453.17401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 47.77887980143229, "t": 249.03993733723962, "r": 106.55113728841145, "b": 233.33730061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.3162841796875, "t": 246.06915283203125, "r": 414.788330078125, "b": 233.33730061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Complete the equation for the reaction of rubidium with water.", "text": "Complete the equation for the reaction of rubidium with water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 217.63470458984375, "r": 278.21685791015625, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "You should balance the equation.", "text": "You should balance the equation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.553955078125, "t": 204.47845458984375, "r": 535.7154134114584, "b": 191.32220458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 162.3636271158854, "t": 169.25364176432288, "r": 188.5785929361979, "b": 152.70220947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Rb", "text": "Rb", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 204.64583333333334, "t": 167.98044840494788, "r": 223.25, "b": 154.82419840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "+", "text": "+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 243.96826171875, "t": 169.25364176432288, "r": 278.21685791015625, "b": 151.85341389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "H2O", "text": "H2O", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.66910934448242, "t": 53.190185546875, "r": 99.1316909790039, "b": 17.5001220703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p17.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p17.json new file mode 100644 index 0000000..7055aa0 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p17.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 282.86789957682294, "t": 813.909901936849, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 553.8967692057291, "t": 126.38970947265625, "r": 568.6955159505209, "b": 114.08225504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 271.87451171875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The noble gases are in Group 0.", "text": "The noble gases are in Group 0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 50.31581115722656, "t": 746.0066731770834, "r": 83.29592386881511, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 84.14157104492188, "t": 744.7334899902344, "r": 100.63162231445312, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.3162841796875, "t": 744.7334899902344, "r": 371.6604817708333, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Which is a correct statement about the noble gases?", "text": "Which is a correct statement about the noble gases?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 490.0506591796875, "t": 732.0016377766927, "r": 535.7154134114584, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 716.7234090169271, "r": 201.26324462890625, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 676.8302612304688, "r": 454.5336100260417, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "The noble gases all have atoms with eight electrons in the outer shell.", "text": "The noble gases all have atoms with eight electrons in the outer shell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 640.332275390625, "r": 468.0639241536458, "b": 625.9028523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "The noble gases have boiling points that increase going down the group.", "text": "The noble gases have boiling points that increase going down the group.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 602.9855143229166, "r": 354.3247884114583, "b": 590.6780395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "The noble gases have molecules with two atoms.", "text": "The noble gases have molecules with two atoms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 565.6387329101562, "r": 407.1775309244792, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "The noble gases react with metals to form ionic compounds.", "text": "The noble gases react with metals to form ionic compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.89299011230469, "t": 515.1357014973958, "r": 101.9000956217448, "b": 500.70627848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 513.862528483073, "r": 408.023193359375, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Table 1 shows information about the three isotopes of neon.", "text": "Table 1 shows information about the three isotopes of neon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 17, "bbox": {"l": 270.1832275390625, "t": 483.30605061848956, "r": 310.77414957682294, "b": 471.42299397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 167.0146687825521, "t": 448.93007405598956, "r": 238.8944091796875, "b": 436.19822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Massnumber", "text": "Massnumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 274.8342692057292, "t": 449.77886962890625, "r": 416.0568033854167, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Percentage abundance (%)", "text": "Percentage abundance (%)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 195.34375, "t": 425.58831787109375, "r": 210.5653279622396, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 361.5127766927083, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "90.48", "text": "90.48", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 194.9209187825521, "t": 403.09539794921875, "r": 210.14251708984375, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 336.9890950520833, "t": 402.24660237630206, "r": 361.0899658203125, "b": 389.51475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "0.27", "text": "0.27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 194.9209187825521, "t": 379.75364176432294, "r": 210.9881591796875, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 336.5662841796875, "t": 379.32924397786456, "r": 361.0899658203125, "b": 366.59739176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "9.25", "text": "9.25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 330.09942626953125, "r": 344.5998942057292, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Calculate the relative atomic mass (Ar) of neon.", "text": "Calculate the relative atomic mass (Ar) of neon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 302.0893351236979, "r": 312.0426025390625, "b": 289.35748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Give your answer to 3 significant figures.", "text": "Give your answer to 3 significant figures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.553955078125, "t": 286.3866984049479, "r": 535.7154134114584, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 186.8873087565104, "t": 122.99460856119788, "r": 407.1775309244792, "b": 108.14076741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Relative atomic mass (3 significant figures) =", "text": "Relative atomic mass (3 significant figures) =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 553.8967692057291, "t": 126.38970947265625, "r": 568.6955159505209, "b": 114.08225504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 82.45284271240234, "t": 516.9572143554688, "r": 104.8023681640625, "b": 500.1972351074219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.7761116027832, "t": 53.252685546875, "r": 99.26835632324219, "b": 17.78460693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 544.7325439453125, "t": 150.69403076171875, "r": 577.20947265625, "b": 109.1588134765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p18.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p18.json new file mode 100644 index 0000000..6cbf77a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p18.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 79.06770833333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 282.02223714192706, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Thisquestion is about electrolysis.", "text": "Thisquestion is about electrolysis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 747.2798563639323, "r": 512.0373942057291, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "Molten sodium chloride is electrolysed in an industrial process to produce sodium.", "text": "Molten sodium chloride is electrolysed in an industrial process to produce sodium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 721.816151936849, "r": 425.7816975911458, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Figure 8 shows a simplified version of the electrolysis cell used.", "text": "Figure 8 shows a simplified version of the electrolysis cell used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 267.64630126953125, "t": 696.3524373372396, "r": 314.15671793619794, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 183.92755126953125, "t": 669.6155395507812, "r": 248.19649251302084, "b": 655.6105143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Chlorine gas", "text": "Chlorine gas", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 386.4592692057292, "t": 627.6004231770834, "r": 430.4327392578125, "b": 615.7173665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Molten", "text": "Molten", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 394.9156901041667, "t": 615.29296875, "r": 432.9696858723958, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 147.98768107096353, "t": 560.121602376302, "r": 183.92755126953125, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Molten", "text": "Molten", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 371.2376708984375, "t": 560.121602376302, "r": 407.6003824869792, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Molten", "text": "Molten", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 148.41051228841147, "t": 546.5409545898438, "r": 186.8873087565104, "b": 534.6578776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 371.2376708984375, "t": 546.1165568033855, "r": 410.1372884114583, "b": 534.6578776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 148.41051228841147, "t": 535.5066731770833, "r": 189.42423502604166, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "chloride", "text": "chloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 372.5061442057292, "t": 534.6578776041667, "r": 412.6742350260417, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "chloride", "text": "chloride", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 222.40435791015625, "t": 479.06211344401044, "r": 252.4247029622396, "b": 467.17905680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Mesh'", "text": "Mesh'", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 48.201700846354164, "t": 439.59336344401044, "r": 102.74573771158855, "b": 423.89072672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.3162841796875, "t": 437.47137451171875, "r": 423.6676025390625, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Which is the correct half equation for the production of sodium?", "text": "Which is the correct half equation for the production of sodium?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 490.0506591796875, "t": 423.46636962890625, "r": 536.1382242838541, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.3162841796875, "t": 409.03692626953125, "r": 200.8404337565104, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 368.71938069661456, "r": 200.4176025390625, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na + e \u2192 Na+", "text": "Na + e \u2192 Na+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 331.79697672526044, "r": 199.57196044921875, "b": 318.21636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Na \u2192 Na+ + e\"", "text": "Na \u2192 Na+ + e\"", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 294.02581787109375, "r": 199.99479166666666, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na+ + e \u2192 Na", "text": "Na+ + e \u2192 Na", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 257.10345458984375, "r": 199.99479166666666, "b": 245.64479573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na+ \u2192 Na + e", "text": "Na+ \u2192 Na + e", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 39.47840118408203, "t": 788.3730697631836, "r": 539.8247680664062, "b": 75.8057861328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.725730895996094, "t": 53.2596435546875, "r": 99.10089874267578, "b": 17.6256103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p19.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p19.json new file mode 100644 index 0000000..2425826 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p19.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/14"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 411.8285725911458, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "A mesh is used to keep the products of the electrolysis apart.", "text": "A mesh is used to keep the products of the electrolysis apart.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.47016906738281, "t": 747.7042541503906, "r": 101.47727457682292, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 746.4310709635416, "r": 486.2452392578125, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Suggest one reason why the products of the electrolysis must be kept apart.", "text": "Suggest one reason why the products of the electrolysis must be kept apart.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.0506591796875, "t": 730.3040568033854, "r": 536.1382242838541, "b": 715.8746236165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.89299011230469, "t": 614.019775390625, "r": 101.47727457682292, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 612.7466023763021, "r": 447.7684733072917, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Which type of particle passes through the mesh in the electrolysis of moltensodiumchloride?", "text": "Which type of particle passes through the mesh in the electrolysis of moltensodiumchloride?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.0506591796875, "t": 586.0097045898438, "r": 535.7154134114584, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.3162841796875, "t": 572.004659016927, "r": 200.8404337565104, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Tick () one box.", "text": "Tick () one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 531.262715657552, "r": 141.64535522460938, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Atom", "text": "Atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 494.34035237630206, "r": 156.866943359375, "b": 481.18410237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Electron", "text": "Electron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 456.14479573567706, "r": 131.92045084635416, "b": 444.26169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "lon", "text": "lon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 420.91998291015625, "r": 159.82670084635416, "b": 407.76373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Molecule", "text": "Molecule", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 317.3675740559896, "r": 390.6875, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question6continueson thenextpage", "text": "Question6continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 19, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.847145080566406, "t": 53.126220703125, "r": 99.17255401611328, "b": 17.7830810546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p2.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p2.json new file mode 100644 index 0000000..e96082d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p2.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 293.4384358723958, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 339.5260416666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "This question is about metals and non-metals.", "text": "This question is about metals and non-metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 743.4603068033854, "r": 378.4256591796875, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Figure 1 shows an outline of part of the periodic table.", "text": "Figure 1 shows an outline of part of the periodic table.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 2, "bbox": {"l": 267.64630126953125, "t": 716.7234090169271, "r": 313.3110758463542, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 411.40576171875, "t": 645.8494262695312, "r": 418.59375, "b": 638.2103068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 144.60511271158853, "t": 637.3615112304688, "r": 153.484375, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 250.7334187825521, "t": 614.019775390625, "r": 260.8811442057292, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 2, "bbox": {"l": 49.04734802246094, "t": 562.2435709635417, "r": 376.3115234375, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "01.1 Element Q is a dull solid with a melting point of 44 \u00b0C.", "text": "01.1 Element Q is a dull solid with a melting point of 44 \u00b0C.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 533.809102376302, "r": 306.12310791015625, "b": 519.379659016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Element Q does not conduct electricity.", "text": "Element Q does not conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.73910522460938, "t": 506.64780680338544, "r": 535.7154134114584, "b": 478.21331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which section of the periodic table in Figure 1 is most likely to contain element Q? [1 mark]", "text": "Which section of the periodic table in Figure 1 is most likely to contain element Q? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 477.78892008463544, "r": 200.8404337565104, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 153.90719604492188, "t": 438.74456787109375, "r": 161.09516398111978, "b": 429.83229573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 235.0890096028646, "t": 438.32017008463544, "r": 242.2769775390625, "b": 429.83229573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 316.6936442057292, "t": 437.47137451171875, "r": 322.19032796223956, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 397.45263671875, "t": 437.47137451171875, "r": 402.5264892578125, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.62452697753906, "t": 394.60748291015625, "r": 103.16855875651042, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 392.48549397786456, "r": 332.3380533854167, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Element R forms ions of formula R2+ and R3+", "text": "Element R forms ions of formula R2+ and R3+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 365.32419840494794, "r": 535.2926025390625, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which section of the periodic table in Figure 1 is most likely to contain element R? [1 mark]", "text": "Which section of the periodic table in Figure 1 is most likely to contain element R? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 336.88975016276044, "r": 200.8404337565104, "b": 321.1871134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 153.90719604492188, "t": 296.9966023763021, "r": 161.09516398111978, "b": 288.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 235.5118408203125, "t": 296.57220458984375, "r": 241.43133544921875, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 2, "bbox": {"l": 316.6936442057292, "t": 296.57220458984375, "r": 322.6131591796875, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 48.201700846354164, "t": 253.70827229817712, "r": 103.16855875651042, "b": 237.58127848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 113.3162841796875, "t": 251.58632405598962, "r": 528.5274658203125, "b": 224.84942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 114]}], "orig": "Give two differences between the physical properties of the elements in Group 1 and those ofthetransitionelements.", "text": "Give two differences between the physical properties of the elements in Group 1 and those ofthetransitionelements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.976806640625, "t": 224.00063069661462, "r": 535.2926025390625, "b": 210.84438069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 115.007568359375, "t": 145.06313069661462, "r": 121.77272542317708, "b": 136.15085856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.9573567708334, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.85730743408203, "t": 53.138671875, "r": 99.28272247314453, "b": 17.32171630859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p20.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p20.json new file mode 100644 index 0000000..152b829 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p20.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 506.5406901041667, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 83]}], "orig": "Aqueous sodium chloride solution is electrolysed in a different industrial process.", "text": "Aqueous sodium chloride solution is electrolysed in a different industrial process.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 748.128651936849, "r": 356.4389241536458, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Two gases and an alkaline solution are produced.", "text": "Two gases and an alkaline solution are produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 697.2012329101562, "r": 101.9000956217448, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.4", "text": "06.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 680.6498209635416, "r": 266.8006591796875, "b": 669.6155395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "sodiumionsandchlorideions?", "text": "sodiumionsandchlorideions?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 667.91796875, "r": 535.7154134114584, "b": 654.76171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 48.62452697753906, "t": 552.4824829101562, "r": 101.47727457682292, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.5", "text": "06.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 550.3605143229167, "r": 295.1297200520833, "b": 537.2042643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "Name the alkaline solution produced.", "text": "Name the alkaline solution produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 490.4734700520833, "t": 537.2042643229167, "r": 535.7154134114584, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 50.31581115722656, "t": 446.80808512369794, "r": 83.29592386881511, "b": 433.22743733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 84.98721313476562, "t": 445.95928955078125, "r": 101.054443359375, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 446.38368733723956, "r": 336.5662841796875, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Explain how the alkaline solution is produced.", "text": "Explain how the alkaline solution is produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 419.22239176432294, "r": 366.5866292317708, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "You should refer to the processes at the electrodes.", "text": "You should refer to the processes at the electrodes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 406.91493733723956, "r": 536.1382242838541, "b": 392.48549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 558.125, "t": 256.2546590169271, "r": 564.89013671875, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.71705627441406, "t": 53.154052734375, "r": 99.15788269042969, "b": 17.366455078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 545.0584716796875, "t": 282.157958984375, "r": 576.5506591796875, "b": 241.53350830078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p21.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p21.json new file mode 100644 index 0000000..4dc748a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p21.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 21, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 385.1907958984375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "07 This question is about silicon and compounds of silicon.", "text": "07 This question is about silicon and compounds of silicon.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 21, "bbox": {"l": 50.31581115722656, "t": 731.152842203776, "r": 171.2428995768229, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "07.1 and silicon.", "text": "07.1 and silicon.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 689.9865112304688, "r": 490.0506591796875, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Silicon can be extracted by reducing silicon dioxide with different substances.", "text": "Silicon can be extracted by reducing silicon dioxide with different substances.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 661.5520426432291, "r": 316.6936442057292, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "The equation for one possible reaction is:", "text": "The equation for one possible reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 21, "bbox": {"l": 230.86079915364584, "t": 634.3907470703125, "r": 417.3252766927083, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "2C(s) + SiO2(s)\u2192 Si(s) + 2CO(g)", "text": "2C(s) + SiO2(s)\u2192 Si(s) + 2CO(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.43039957682292, "t": 603.8342895507812, "r": 520.4938151041666, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Explain what this reaction shows about the position of silicon in the reactivity series.", "text": "Explain what this reaction shows about the position of silicon in the reactivity series.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 588.1316731770834, "r": 535.7154134114584, "b": 575.3998209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 21, "bbox": {"l": 48.62452697753906, "t": 422.19317626953125, "r": 305.7002766927083, "b": 406.06614176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "07.2 Aluminium also reduces silicon dioxide.", "text": "07.2 Aluminium also reduces silicon dioxide.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 391.21230061848956, "r": 512.0373942057291, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Carbon is used rather than aluminium to reduce silicon dioxide because carbon is cheaperthanaluminium.", "text": "Carbon is used rather than aluminium to reduce silicon dioxide because carbon is cheaperthanaluminium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 352.16794840494794, "r": 312.0426025390625, "b": 338.58730061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Carbon can be obtained by heating coal.", "text": "Carbon can be obtained by heating coal.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.007568359375, "t": 325.8554484049479, "r": 332.3380533854167, "b": 313.5479939778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Aluminium is obtained from aluminium oxide.", "text": "Aluminium is obtained from aluminium oxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 298.69415283203125, "r": 382.6538899739583, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Explain why aluminium is more expensive than carbon.", "text": "Explain why aluminium is more expensive than carbon.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.1311442057292, "t": 285.9623006184896, "r": 536.1382242838541, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.726165771484375, "t": 53.06036376953125, "r": 99.18004608154297, "b": 17.6517333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p22.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p22.json new file mode 100644 index 0000000..5e15a51 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p22.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 310.351318359375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Magnesiumalsoreducessilicondioxide.", "text": "Magnesiumalsoreducessilicondioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 748.128651936849, "r": 269.7604166666667, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The equationfor thereaction is:", "text": "The equationfor thereaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 224.09564208984375, "t": 723.0893351236979, "r": 424.5132649739583, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "2Mg(s) + SiO2(s) \u2192 Si(s) + 2MgO(s)", "text": "2Mg(s) + SiO2(s) \u2192 Si(s) + 2MgO(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.04734802246094, "t": 670.8887329101562, "r": 102.32291666666667, "b": 655.6105143229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 669.1911417643229, "r": 516.6884358723959, "b": 643.3030395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Give one reason why the products are difficult to separate if magnesium is used to reduce silicon dioxide.", "text": "Give one reason why the products are difficult to separate if magnesium is used to reduce silicon dioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 639.9078776041666, "r": 535.2926025390625, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 48.62452697753906, "t": 525.3211873372395, "r": 102.74573771158855, "b": 509.1941731770833, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.4", "text": "07.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 523.19921875, "r": 518.3797200520834, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Calculate the minimum mass in grams of magnesium needed to completely reduce 1.2 kg of silicon dioxide.", "text": "Calculate the minimum mass in grams of magnesium needed to completely reduce 1.2 kg of silicon dioxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 483.30605061848956, "r": 409.2916666666667, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Relative atomic masses (Ar): O = 16 Mg = 24 Si = 28", "text": "Relative atomic masses (Ar): O = 16 Mg = 24 Si = 28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.553955078125, "t": 470.14980061848956, "r": 536.1382242838541, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 234.66617838541666, "t": 176.46836344401038, "r": 391.1103108723958, "b": 164.16090901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Minimummassof magnesium=", "text": "Minimummassof magnesium=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.74374771118164, "t": 53.08709716796875, "r": 99.16704559326172, "b": 17.24615478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p23.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p23.json new file mode 100644 index 0000000..7827fd5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p23.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/35"}, {"$ref": "#/pictures/3"}, {"$ref": "#/texts/37"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 63.84611511230469, "t": 24.95928955078125, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 255.38446044921875, "t": 664.9472045898438, "r": 268.491943359375, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 664.9472045898438, "r": 327.68701171875, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 216.4848429361979, "t": 621.2344970703125, "r": 227.47821044921875, "b": 609.7758382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 254.9616495768229, "t": 622.5076904296875, "r": 268.06911214192706, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "!S", "text": "!S", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 622.5076904296875, "r": 328.10984293619794, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Si", "text": "Si", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 354.7476399739583, "t": 621.2344970703125, "r": 365.7410074869792, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 256.2301025390625, "t": 578.370585123698, "r": 266.8006591796875, "b": 566.487528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.42519124348956, "t": 578.370585123698, "r": 326.41855875651044, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 376.734375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "SizHe is a covalent compound of silicon and hydrogen.", "text": "SizHe is a covalent compound of silicon and hydrogen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 746.4310709635416, "r": 101.9000956217448, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.5", "text": "07.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 743.8847045898438, "r": 478.2116292317708, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Complete Figure 9 to show the outer shell electrons in a molecule of Si2H6", "text": "Complete Figure 9 to show the outer shell electrons in a molecule of Si2H6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 490.0506591796875, "t": 731.152842203776, "r": 535.2926025390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 23, "bbox": {"l": 268.491943359375, "t": 701.4451802571615, "r": 313.3110758463542, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 255.38446044921875, "t": 664.9472045898438, "r": 268.491943359375, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 664.9472045898438, "r": 327.68701171875, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 216.4848429361979, "t": 621.2344970703125, "r": 227.47821044921875, "b": 609.7758382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 254.9616495768229, "t": 622.5076904296875, "r": 268.06911214192706, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "!S", "text": "!S", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.0023600260417, "t": 622.5076904296875, "r": 328.10984293619794, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Si", "text": "Si", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 354.7476399739583, "t": 621.2344970703125, "r": 365.7410074869792, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 256.2301025390625, "t": 578.370585123698, "r": 266.8006591796875, "b": 566.487528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 315.42519124348956, "t": 578.370585123698, "r": 326.41855875651044, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.62452697753906, "t": 520.2284545898438, "r": 101.9000956217448, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.6", "text": "07.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 516.8332926432292, "r": 237.62593587239584, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Si2H6 reacts with oxygen.", "text": "Si2H6 reacts with oxygen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 490.09637451171875, "r": 270.60605875651044, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 23, "bbox": {"l": 210.9881591796875, "t": 464.63267008463544, "r": 437.6207275390625, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "(6)OH9 + (s)\"O!S (6)O L + (6)9H!S\u4e59", "text": "(6)OH9 + (s)\"O!S (6)O L + (6)9H!S\u4e59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 439.16896565755206, "r": 418.59375, "b": 425.16392008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "30 cm? of Si2H is reacted with 150 cm? (an excess) of oxygen.", "text": "30 cm? of Si2H is reacted with 150 cm? (an excess) of oxygen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 399.70021565755206, "r": 414.788330078125, "b": 386.54396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Calculate the total volume of gases present after the reaction.", "text": "Calculate the total volume of gases present after the reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 373.81211344401044, "r": 479.9029134114583, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "All volumes of gases are measured at the same temperature and pressure.", "text": "All volumes of gases are measured at the same temperature and pressure.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.553955078125, "t": 359.80706787109375, "r": 535.7154134114584, "b": 347.07521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 326.84136962890625, "t": 119.17502848307288, "r": 537.8295491536459, "b": 105.16998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Volume of gases = cm3", "text": "Volume of gases = cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 553.4739583333334, "t": 121.29701741536462, "r": 569.5411783854166, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 553.4739583333334, "t": 121.29701741536462, "r": 569.5411783854166, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 82.2315444946289, "t": 748.2027435302734, "r": 104.81997680664062, "b": 731.6419372558594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.73017120361328, "t": 53.1356201171875, "r": 99.146728515625, "b": 17.383056640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 205.07598876953125, "t": 675.6852722167969, "r": 375.23626708984375, "b": 558.8597717285156, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/36"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 545.0231323242188, "t": 145.28521728515625, "r": 577.076171875, "b": 104.4761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p24.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p24.json new file mode 100644 index 0000000..f330c2f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p24.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 281.59942626953125, "t": 813.4855066935221, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.10132853190105, "t": 744.309092203776, "r": 99.78598022460938, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 447.65688069661456, "r": 101.9000956217448, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 309.0828450520833, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "This question is about acids and alkalis.", "text": "This question is about acids and alkalis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.10132853190105, "t": 744.309092203776, "r": 99.78598022460938, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 745.1578877766927, "r": 324.304443359375, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Explain why the pH of an acid depends on:", "text": "Explain why the pH of an acid depends on:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 116.69886271158855, "t": 723.9381306966146, "r": 238.4715779622396, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "thestrengthoftheacid", "text": "thestrengthoftheacid", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 114.16192626953125, "t": 706.113525390625, "r": 266.8006591796875, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7 the concentration of the acid.", "text": "the concentration of the acid.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 483.7083333333333, "t": 693.3816731770834, "r": 535.7154134114584, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 447.65688069661456, "r": 101.9000956217448, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.2", "text": "08.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.73910522460938, "t": 445.95928955078125, "r": 445.2315266927083, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "A student titrated 25.00 cm3 of hydrochloric acid with 0.100 mol/dm3 bariumhydroxidesolution.", "text": "A student titrated 25.00 cm3 of hydrochloric acid with 0.100 mol/dm3 bariumhydroxidesolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 403.94419352213544, "r": 243.96826171875, "b": 392.48549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Table 2 shows the results.", "text": "Table 2 shows the results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 269.7604166666667, "t": 378.90484619140625, "r": 311.6197916666667, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 62.57765197753906, "t": 346.65081787109375, "r": 151.79308064778647, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Titration number", "text": "Titration number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 269.33758544921875, "t": 346.65081787109375, "r": 277.7940266927083, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "1", "text": "1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 325.5729166666667, "t": 347.07521565755206, "r": 335.2978108723958, "b": 333.07017008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 383.0767008463542, "t": 346.65081787109375, "r": 391.5331217447917, "b": 334.34336344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 438.8892008463542, "t": 347.07521565755206, "r": 448.6140950520833, "b": 333.91896565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 495.9701741536458, "t": 347.07521565755206, "r": 505.695068359375, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 62.57765197753906, "t": 327.55303955078125, "r": 212.25663248697916, "b": 315.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Volume of bariumhydroxide", "text": "Volume of bariumhydroxide", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 258.34421793619794, "t": 321.61151123046875, "r": 289.21022542317706, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.90", "text": "23.90", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.0023600260417, "t": 321.61151123046875, "r": 345.8683675130208, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.45", "text": "23.45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 371.6604817708333, "t": 321.61151123046875, "r": 402.5264892578125, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.55", "text": "23.55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 428.3186442057292, "t": 321.61151123046875, "r": 459.1846516927083, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.55", "text": "23.55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.976806640625, "t": 321.61151123046875, "r": 516.265625, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "23.45", "text": "23.45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 61.73200480143229, "t": 314.39678955078125, "r": 172.5113525390625, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "solution used in cm?", "text": "solution used in cm?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 113.3162841796875, "t": 274.5036417643229, "r": 507.8091634114583, "b": 248.61553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "The student calculated the volume of barium hydroxide solution to be used in the titration calculation as 23.50 cm3.", "text": "The student calculated the volume of barium hydroxide solution to be used in the titration calculation as 23.50 cm3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 234.61049397786462, "r": 523.03076171875, "b": 209.99558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 108]}], "orig": "Explain why the student used a volume of 23.50 cm3 of barium hydroxide solution in the titrationcalculation.", "text": "Explain why the student used a volume of 23.50 cm3 of barium hydroxide solution in the titrationcalculation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 484.1311442057292, "t": 209.14678955078125, "r": 536.1382242838541, "b": 194.71734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 542.4805908203125, "t": 788.4461924235026, "r": 580.9573567708334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 81.33708953857422, "t": 748.4152221679688, "r": 104.49987030029297, "b": 731.7340087890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 46.28067398071289, "t": 448.952392578125, "r": 105.23295593261719, "b": 431.4825134277344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.59077835083008, "t": 53.1778564453125, "r": 99.12206268310547, "b": 17.450927734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p25.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p25.json new file mode 100644 index 0000000..f3b6abc --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p25.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.054443359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.3", "text": "08.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.054443359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.3", "text": "08.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 499.3527425130208, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "25.00 cm? of the hydrochloric acid reacted with 23.50 cm? of the 0.100 mol/dm3 bariumhydroxide solution.", "text": "25.00 cm? of the hydrochloric acid reacted with 23.50 cm? of the 0.100 mol/dm3 bariumhydroxide solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 270.1832275390625, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 197.0350341796875, "t": 707.8111063639323, "r": 451.1510416666667, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "2HCl(aq)+ Ba(OH)2(aq)\u2192 BaCl2(aq)+ 2H2O(l)", "text": "2HCl(aq)+ Ba(OH)2(aq)\u2192 BaCl2(aq)+ 2H2O(l)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 668.3423665364584, "r": 421.5535074869792, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Calculate the concentration of the hydrochloric acid in mol/dm?.", "text": "Calculate the concentration of the hydrochloric acid in mol/dm?.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 655.1861165364584, "r": 536.1382242838541, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 161.51798502604166, "t": 413.70526123046875, "r": 536.5610758463541, "b": 401.39780680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Concentration of the hydrochloric acid = mol/dm3", "text": "Concentration of the hydrochloric acid = mol/dm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 187.73295084635416, "t": 321.1871134440104, "r": 390.6875, "b": 307.6064656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question8continuesonthenextpage", "text": "Question8continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 46.18698501586914, "t": 776.3649291992188, "r": 105.48291778564453, "b": 758.8308334350586, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.78736114501953, "t": 53.08837890625, "r": 99.23674011230469, "b": 17.3798828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p26.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p26.json new file mode 100644 index 0000000..e8b668c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p26.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 443.9630533854167, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Another student titrated sulfuric acid with barium hydroxide solution.", "text": "Another student titrated sulfuric acid with barium hydroxide solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 748.5530497233073, "r": 270.1832275390625, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 26, "bbox": {"l": 195.34375, "t": 723.5137329101562, "r": 453.26513671875, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "H2SO4(aq) + Ba(OH)2(aq) \u2192 BaSO4(s) + 2H2O(l)", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.16192626953125, "t": 696.7768351236979, "r": 513.7286783854166, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "The student measured the electrical conductivity of the mixture during the titration.", "text": "The student measured the electrical conductivity of the mixture during the titration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 670.0399373372396, "r": 437.1979166666667, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Thebetteraconductor,thehighertheelectricalconductivityvalue.", "text": "Thebetteraconductor,thehighertheelectricalconductivityvalue.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 644.1518351236979, "r": 254.538818359375, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 10 shows the results.", "text": "Figure 10 shows the results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 26, "bbox": {"l": 265.5321858723958, "t": 618.2637329101562, "r": 315.84800211588544, "b": 605.1074829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 169.1287841796875, "t": 568.6094970703125, "r": 176.3167521158854, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 99.3631591796875, "t": 518.106465657552, "r": 146.29639689127603, "b": 505.37461344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Electrical", "text": "Electrical", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 168.70596313476562, "t": 513.0137329101562, "r": 177.16239420572916, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 98.94033813476562, "t": 507.9209798177083, "r": 158.9810587565104, "b": 491.79396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "conductivity", "text": "conductivity", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 99.3631591796875, "t": 494.76475016276044, "r": 154.33001708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "in arbitrary", "text": "in arbitrary", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 99.3631591796875, "t": 481.18410237630206, "r": 124.73248291015625, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "units", "text": "units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 230.01513671875, "t": 390.78794352213544, "r": 244.81392415364584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 285.82763671875, "t": 390.78794352213544, "r": 301.0492350260417, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 343.3314208984375, "t": 390.78794352213544, "r": 358.1302083333333, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 400.4123942057292, "t": 390.36354573567706, "r": 413.9427083333333, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 185.1960245768229, "t": 377.20729573567706, "r": 431.7012125651042, "b": 364.89980061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Volumeof bariumhydroxidesolution added in cm3", "text": "Volumeof bariumhydroxidesolution added in cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 50.73863728841146, "t": 336.88975016276044, "r": 88.36979166666667, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "08.", "text": "08.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 82.02746073404948, "t": 336.46535237630206, "r": 101.054443359375, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": ":4", "text": ":4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 50.73863728841146, "t": 336.88975016276044, "r": 88.36979166666667, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "08.", "text": "08.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 82.02746073404948, "t": 336.46535237630206, "r": 101.054443359375, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": ":4", "text": ":4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 335.61655680338544, "r": 524.7220458984375, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "Explain why the electrical conductivity of the mixture was zero when the sulfuric acid had just beenneutralised.", "text": "Explain why the electrical conductivity of the mixture was zero when the sulfuric acid had just beenneutralised.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 295.7234090169271, "r": 276.94838460286456, "b": 283.41595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Use the equationfor thereaction.", "text": "Use the equationfor thereaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 270.25970458984375, "r": 255.80729166666666, "b": 256.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Refer to ions in your answer.", "text": "Refer to ions in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 484.1311442057292, "t": 257.9522501627604, "r": 535.7154134114584, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 63.42329406738281, "t": 25.80808512369788, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 99.21434020996094, "t": 594.9752044677734, "r": 436.32781982421875, "b": 363.9990539550781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/7"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 46.077030181884766, "t": 338.9711608886719, "r": 105.3624267578125, "b": 321.97808837890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.590415954589844, "t": 53.24151611328125, "r": 99.1473388671875, "b": 17.32464599609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p27.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p27.json new file mode 100644 index 0000000..e601a76 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p27.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.445068359375, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 553.0511067708334, "t": 659.0056762695312, "r": 569.9639892578125, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "08.5", "text": "08.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 113.3162841796875, "t": 772.7435709635416, "r": 457.4933675130208, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "The student then added a further 10 cm? of barium hydroxide solution.", "text": "The student then added a further 10 cm? of barium hydroxide solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 745.582285563151, "r": 364.8953450520833, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "The electrical conductivity of the mixture increased.", "text": "The electrical conductivity of the mixture increased.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 719.6941731770834, "r": 222.8271687825521, "b": 706.5379231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Giveonereasonwhy.", "text": "Giveonereasonwhy.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.0506591796875, "t": 704.840342203776, "r": 536.1382242838541, "b": 690.4109090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 553.0511067708334, "t": 659.0056762695312, "r": 569.9639892578125, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 230.86079915364584, "t": 562.2435709635417, "r": 346.2911783854167, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 545.11279296875, "t": 682.5220031738281, "r": 577.2296142578125, "b": 641.0832061767578, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.74171447753906, "t": 53.149169921875, "r": 99.22322845458984, "b": 17.59033203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p28.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p28.json new file mode 100644 index 0000000..20425ae --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p28.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 188.15576171875, "t": 445.11049397786456, "r": 397.45263671875, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.53289794921875, "t": 53.03009033203125, "r": 99.4490737915039, "b": 16.610595703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p29.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p29.json new file mode 100644 index 0000000..29b5acd --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p29.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.74699020385742, "t": 53.18353271484375, "r": 99.3206787109375, "b": 17.10015869140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p3.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p3.json new file mode 100644 index 0000000..ecbb69d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p3.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/pictures/3"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 286.25046793619794, "t": 809.6659495035807, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 474.40625, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Complete Figure 2 to show the electronic structure of an aluminium atom.", "text": "Complete Figure 2 to show the electronic structure of an aluminium atom.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 224.09564208984375, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Usetheperiodictable.", "text": "Usetheperiodictable.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.0506591796875, "t": 731.5772399902344, "r": 535.7154134114584, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 268.06911214192706, "t": 703.9915568033854, "r": 314.15671793619794, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 490.09637451171875, "r": 101.9000956217448, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 487.12563069661456, "r": 219.4446004231771, "b": 475.66697184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Aluminiumisametal.", "text": "Aluminiumisametal.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 461.66192626953125, "r": 310.77414957682294, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Describe how metals conduct electricity.", "text": "Describe how metals conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 434.50063069661456, "r": 254.9616495768229, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Answerintermsofelectrons.", "text": "Answerintermsofelectrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.1311442057292, "t": 422.19317626953125, "r": 535.2926025390625, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.89299011230469, "t": 202.35646565755212, "r": 101.9000956217448, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.6", "text": "01.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 199.81011962890625, "r": 535.7154134114584, "b": 173.92197672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Name the type of bonding in compounds formed between metals and non-metals. [1 mark]", "text": "Name the type of bonding in compounds formed between metals and non-metals. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 83.22163391113281, "t": 775.5824356079102, "r": 104.6264419555664, "b": 759.376838684082, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 82.88858032226562, "t": 490.4773864746094, "r": 103.99593353271484, "b": 474.3543395996094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.826263427734375, "t": 53.1265869140625, "r": 99.09163665771484, "b": 17.47698974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 216.1488037109375, "t": 687.8902130126953, "r": 364.1007385253906, "b": 529.9866638183594, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p30.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p30.json new file mode 100644 index 0000000..188627b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p30.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 541.2121175130209, "t": 786.32421875, "r": 580.5345458984375, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.7423095703125, "t": 53.17816162109375, "r": 99.29827880859375, "b": 17.1097412109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p31.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p31.json new file mode 100644 index 0000000..79433ae --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p31.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.725128173828125, "t": 53.1527099609375, "r": 99.40816497802734, "b": 17.32061767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p32.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p32.json new file mode 100644 index 0000000..832393e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p32.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 219]}], "orig": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 245]}], "orig": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "text": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 186.04166666666666, "t": 445.11049397786456, "r": 394.9156901041667, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 363.2040608723958, "t": 44.90590413411462, "r": 507.8091634114583, "b": 33.44716389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "226G8462/1H", "text": "226G8462/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 541.2121175130209, "t": 786.32421875, "r": 580.5345458984375, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 348.2997131347656, "t": 71.1689453125, "r": 526.5169067382812, "b": 35.192138671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p4.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p4.json new file mode 100644 index 0000000..57d0cbc --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p4.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 104.01420084635417, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.7", "text": "01.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 772.3191782633463, "r": 486.6680908203125, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "Magnesium oxide is a compound formed from the metal magnesium and the non-metal oxygen.", "text": "Magnesium oxide is a compound formed from the metal magnesium and the non-metal oxygen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 494.7017008463542, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Describe what happens when a magnesium atom reacts with an oxygen atom.", "text": "Describe what happens when a magnesium atom reacts with an oxygen atom.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 707.8111063639323, "r": 334.0293375651042, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "You should refer to electrons in your answer.", "text": "You should refer to electrons in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.553955078125, "t": 693.8060709635416, "r": 535.7154134114584, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 553.8967692057291, "t": 493.06715901692706, "r": 569.5411783854166, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 553.8967692057291, "t": 493.06715901692706, "r": 569.5411783854166, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.824642181396484, "t": 53.1064453125, "r": 99.16098022460938, "b": 17.65423583984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 545.0658569335938, "t": 516.5293884277344, "r": 576.5323486328125, "b": 477.6912536621094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p5.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p5.json new file mode 100644 index 0000000..77b0f29 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p5.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/9"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 474.8290608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 73]}], "orig": "Sodium carbonate reacts with hydrochloric acid in an exothermic reaction.", "text": "Sodium carbonate reacts with hydrochloric acid in an exothermic reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 743.8847045898438, "r": 270.1832275390625, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 5, "bbox": {"l": 177.16239420572916, "t": 718.8453877766927, "r": 471.023681640625, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "Na2CO3(s) + 2HCl(aq)\u2192 2NaCl(aq) + CO2(g) + H2O()", "text": "Na2CO3(s) + 2HCl(aq)\u2192 2NaCl(aq) + CO2(g) + H2O()", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 689.9865112304688, "r": 520.4938151041666, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 133]}], "orig": "A student investigated the effect of changing the mass of sodium carbonate powder onthehighesttemperaturereachedbythereactionmixture.", "text": "A student investigated the effect of changing the mass of sodium carbonate powder onthehighesttemperaturereachedbythereactionmixture.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 626.3272298177084, "r": 103.5913798014323, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.3162841796875, "t": 623.7808634440104, "r": 512.8830159505209, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Plan a method to investigate the effect of changing the mass of sodium carbonate powder on the highest temperature reached.", "text": "Plan a method to investigate the effect of changing the mass of sodium carbonate powder on the highest temperature reached.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 596.6195882161459, "r": 535.2926025390625, "b": 583.4633382161458, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 79.91335042317708, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.76749038696289, "t": 53.12872314453125, "r": 99.13385772705078, "b": 17.51544189453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p6.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p6.json new file mode 100644 index 0000000..5bf2c4f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p6.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 802.4512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.9573567708334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 445.6543375651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Figure 3 shows a line of best fit drawn through the student's results.", "text": "Figure 3 shows a line of best fit drawn through the student's results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 268.06911214192706, "t": 743.0359090169271, "r": 314.15671793619794, "b": 728.6064758300781, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 688.7133280436198, "r": 183.50472005208334, "b": 676.4058736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "30.0", "text": "30.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 632.2687784830729, "r": 183.92755126953125, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "28.0", "text": "28.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.56439208984375, "t": 587.2828776041666, "r": 123.88683064778645, "b": 572.8534545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Highest", "text": "Highest", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.14157104492188, "t": 574.1266276041667, "r": 145.45075480143228, "b": 561.394775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "temperature", "text": "temperature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 159.40387980143228, "t": 574.9754231770833, "r": 183.0819091796875, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "26.0", "text": "26.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 83.71875, "t": 561.8191731770833, "r": 140.79971313476562, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "reached by", "text": "reached by", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.56439208984375, "t": 549.51171875, "r": 143.33663940429688, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "thereaction", "text": "thereaction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 84.14157104492188, "t": 538.901835123698, "r": 149.25615437825522, "b": 526.1699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "mixture in \u00b0C", "text": "mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 518.5308634440105, "r": 183.50472005208334, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "24.0", "text": "24.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 461.66192626953125, "r": 183.92755126953125, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "22.0", "text": "22.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 158.9810587565104, "t": 405.21734619140625, "r": 186.8873087565104, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "20.0+", "text": "20.0+", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 175.8939412434896, "t": 395.88067626953125, "r": 195.34375, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "0.0", "text": "0.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 234.24336751302084, "t": 395.88067626953125, "r": 251.57906087239584, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "1.0", "text": "1.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 290.4786783854167, "t": 397.15386962890625, "r": 308.23720296223956, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "2.0", "text": "2.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 346.2911783854167, "t": 396.30507405598956, "r": 365.3181559244792, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "3.0", "text": "3.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 403.7949625651042, "t": 395.88067626953125, "r": 421.5535074869792, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "4.0", "text": "4.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 460.0302734375, "t": 396.30507405598956, "r": 478.6344401041667, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "5.0", "text": "5.0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 253.69317626953125, "t": 381.02683512369794, "r": 429.5871175130208, "b": 367.44618733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Massofsodiumcarbonate ingrams", "text": "Massofsodiumcarbonate ingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 84.31061553955078, "t": 713.8152923583984, "r": 498.6824645996094, "b": 367.89630126953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.6757698059082, "t": 53.302734375, "r": 99.16030883789062, "b": 17.4625244140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p7.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p7.json new file mode 100644 index 0000000..ad953dd --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p7.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/texts/16"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "02].2", "text": "02].2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 386.4592692057292, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Determine the gradient of the line of best fit in Figure 3.", "text": "Determine the gradient of the line of best fit in Figure 3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 202.10888671875, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Use the equation:", "text": "Use the equation:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 276.1027425130208, "t": 732.426035563151, "r": 429.164306640625, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Change inhighest temperature", "text": "Change inhighest temperature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 220.29024251302084, "t": 724.3625183105469, "r": 273.98862711588544, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Gradient =", "text": "Gradient =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 312.0426025390625, "t": 716.7234090169271, "r": 393.2244059244792, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Change in mass", "text": "Change in mass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 691.2597045898438, "r": 179.2765096028646, "b": 678.527842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Give the unit.", "text": "Give the unit.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.1311442057292, "t": 678.1034545898438, "r": 536.1382242838541, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[5 marks]", "text": "[5 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 434.92502848307294, "r": 167.86032104492188, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Gradient =", "text": "Gradient =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 407.6003824869792, "t": 434.92502848307294, "r": 430.4327392578125, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Unit", "text": "Unit", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.201700846354164, "t": 358.10947672526044, "r": 102.32291666666667, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 355.56313069661456, "r": 526.8361409505209, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "The initial temperature of the reaction mixture is where the line of best fit would meet the y-axis.", "text": "The initial temperature of the reaction mixture is where the line of best fit would meet the y-axis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 315.2455851236979, "r": 388.1505533854167, "b": 304.2113240559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Determinetheinitialtemperatureofthereactionmixture.", "text": "Determinetheinitialtemperatureofthereactionmixture.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 288.9330851236979, "r": 272.29734293619794, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "ShowyourworkingonFigure3.", "text": "ShowyourworkingonFigure3.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.1311442057292, "t": 277.0500284830729, "r": 535.7154134114584, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 196.18939208984375, "t": 236.30808512369788, "r": 535.7154134114584, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Initialtemperatureofthereactionmixture\uff1a \u00b0C", "text": "Initialtemperatureofthereactionmixture\uff1a \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.2523600260416, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 7, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.825653076171875, "t": 53.16912841796875, "r": 99.22120666503906, "b": 17.67669677734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p8.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p8.json new file mode 100644 index 0000000..6cedefc --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p8.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 90.48389689127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 87.9469706217448, "t": 771.0459899902344, "r": 98.51751708984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 506.9635416666667, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "text": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 733.69921875, "r": 521.3394775390625, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "text": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.0506591796875, "t": 707.8111063639323, "r": 534.4469401041666, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 693.3816731770834, "r": 200.8404337565104, "b": 678.1034545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 614.019775390625, "r": 219.4446004231771, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 583.4633382161458, "r": 128.53787231445312, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 507.9209798177083, "r": 401.6808675130208, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.90719604492188, "t": 411.58327229817706, "r": 219.4446004231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 381.45123291015625, "r": 128.960693359375, "b": 371.69012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 305.90887451171875, "r": 401.6808675130208, "b": 293.6014200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 222.72743733723962, "r": 219.8674112955729, "b": 162.46331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Highest temperature reached by thereaction mixture in \u00b0C", "text": "Highest temperature reached by thereaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 117.05303955078125, "r": 401.6808675130208, "b": 104.74558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Mass ofsodiumcarbonate in grams", "text": "Mass ofsodiumcarbonate in grams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 90.48389689127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 87.9469706217448, "t": 771.0459899902344, "r": 98.51751708984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 506.9635416666667, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "text": "Another student repeated the investigation but added sodium carbonate until the sodium carbonate was in excess.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 733.69921875, "r": 521.3394775390625, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "text": "Which sketch graph shows the results obtained when sodium carbonate was added until inexcess?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.0506591796875, "t": 707.8111063639323, "r": 534.4469401041666, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 693.3816731770834, "r": 200.8404337565104, "b": 678.1034545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 614.019775390625, "r": 219.4446004231771, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 583.4633382161458, "r": 128.53787231445312, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 507.9209798177083, "r": 401.6808675130208, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.90719604492188, "t": 411.58327229817706, "r": 219.4446004231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Highest temperature reached by the reaction mixture in \u00b0C", "text": "Highest temperature reached by the reaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 119.65861002604167, "t": 381.45123291015625, "r": 128.960693359375, "b": 371.69012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 305.90887451171875, "r": 401.6808675130208, "b": 293.6014200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Massofsodiumcarbonateingrams", "text": "Massofsodiumcarbonateingrams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 153.484375, "t": 222.72743733723962, "r": 219.8674112955729, "b": 162.46331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Highest temperature reached by thereaction mixture in \u00b0C", "text": "Highest temperature reached by thereaction mixture in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 226.632568359375, "t": 117.05303955078125, "r": 401.6808675130208, "b": 104.74558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Mass ofsodiumcarbonate in grams", "text": "Mass ofsodiumcarbonate in grams", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 39.997745513916016, "t": 788.6085472106934, "r": 540.5895385742188, "b": 76.569580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.730838775634766, "t": 53.16070556640625, "r": 99.11856842041016, "b": 17.56536865234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p9.json b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p9.json new file mode 100644 index 0000000..ee05acd --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-chemistry-8462-1h-2022jun/p9.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-chemistry-8462-1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 3168742338975558463, "filename": "aqa-chemistry-8462-1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/19"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 150.10179646809897, "t": 641.1810709635416, "r": 159.40387980143228, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "X", "text": "X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 175.8939412434896, "t": 615.7173665364584, "r": 227.90104166666666, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Reactants", "text": "Reactants", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 360.6671142578125, "t": 553.331278483073, "r": 406.7547200520833, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Products", "text": "Products", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 478.6344401041667, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Figure 4 shows a reaction profile for thereaction of sodium carbonate with hydrochloric acid.", "text": "Figure 4 shows a reaction profile for thereaction of sodium carbonate with hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 268.491943359375, "t": 729.4552612304688, "r": 313.73388671875, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 150.10179646809897, "t": 641.1810709635416, "r": 159.40387980143228, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "X", "text": "X", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 175.8939412434896, "t": 615.7173665364584, "r": 227.90104166666666, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Reactants", "text": "Reactants", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 360.6671142578125, "t": 553.331278483073, "r": 406.7547200520833, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Products", "text": "Products", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 249.88777669270834, "t": 502.8282470703125, "r": 349.6737467447917, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Progress of reaction", "text": "Progress of reaction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.47016906738281, "t": 436.62261962890625, "r": 101.47727457682292, "b": 421.76877848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 434.50063069661456, "r": 347.1368408203125, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "What do labelsX and Y represent on Figure 4?", "text": "What do labelsX and Y represent on Figure 4?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.976806640625, "t": 420.91998291015625, "r": 535.7154134114584, "b": 407.76373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 395.45627848307294, "r": 124.30965169270833, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "x", "text": "x", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.47016906738281, "t": 304.6357218424479, "r": 101.9000956217448, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.6", "text": "02.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 302.51373291015625, "r": 442.694580078125, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "How does the reaction profile show that the reaction is exothermic?", "text": "How does the reaction profile show that the reaction is exothermic?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 277.47442626953125, "r": 183.92755126953125, "b": 263.4693806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 4.", "text": "Use Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.0506591796875, "t": 263.8937784830729, "r": 536.1382242838541, "b": 249.46433512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 553.8967692057291, "t": 218.05910237630212, "r": 569.5411783854166, "b": 205.75164794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 553.8967692057291, "t": 218.05910237630212, "r": 569.5411783854166, "b": 205.75164794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "IB/M/Jun22/8462/1H", "text": "IB/M/Jun22/8462/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 148.96104431152344, "t": 699.4140472412109, "r": 431.3801574707031, "b": 511.32061767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.72150421142578, "t": 53.21575927734375, "r": 99.02352142333984, "b": 17.614990234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 545.0675048828125, "t": 241.86834716796875, "r": 577.0537719726562, "b": 200.44451904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/merged.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/merged.json new file mode 100644 index 0000000..ebcb87d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/merged.json @@ -0,0 +1 @@ +{"texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 36.785509745279946, "t": 789.7193756103516, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 628.8736165364584, "r": 120.08144124348958, "b": 614.4441731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 600.863525390625, "r": 155.59848022460938, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Candidatesignature", "text": "Candidatesignature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 166.16902669270834, "t": 587.2828776041666, "r": 296.82102457682294, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 545.0174967447916, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "GCSE H COMBINED SCIENCE: TRILOGY", "text": "GCSE H COMBINED SCIENCE: TRILOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 40.16808573404948, "t": 481.60850016276044, "r": 160.6723429361979, "b": 445.53489176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Higher Tier Biology Paper 1H", "text": "Higher Tier Biology Paper 1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 398.00262451171875, "r": 92.17519124348958, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 37.63115437825521, "t": 384.84637451171875, "r": 186.4644775390625, "b": 369.56817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 370.41697184244794, "r": 83.71875, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 357.68511962890625, "r": 155.1756591796875, "b": 347.07521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7a scientific calculator.", "text": "\u00b7a scientific calculator.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 331.37261962890625, "r": 108.66524251302083, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 319.06512451171875, "r": 231.28361002604166, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 293.1770222981771, "r": 241.0085245768229, "b": 278.74761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 306.7576700846354, "r": 242.6998087565104, "b": 291.4794718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "\u00b7 Pencil should only be used for drawing.", "text": "Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 278.74761962890625, "r": 269.7604166666667, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 266.0157267252604, "r": 424.0904134114583, "b": 240.12762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 239.70322672526038, "r": 430.0099283854167, "b": 215.51271565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 214.23952229817712, "r": 356.4389241536458, "b": 201.08327229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "In all calculations,show clearly howyou work out your answer.", "text": "In all calculations,show clearly howyou work out your answer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 187.50262451171875, "r": 106.12831624348958, "b": 176.04396565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 173.92197672526038, "r": 245.23673502604166, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 The maximum mark for this paper is 70.", "text": "The maximum mark for this paper is 70.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 42.282196044921875, "t": 160.34136962890625, "r": 281.59942626953125, "b": 149.30710856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Themarksforquestionsareshowninbrackets.", "text": "Themarksforquestionsareshowninbrackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 47.77887980143229, "t": 147.60951741536462, "r": 324.304443359375, "b": 135.30206298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "You are expected to use a calculator where appropriate.", "text": "You are expected to use a calculator where appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 135.30206298828125, "r": 475.6747233072917, "b": 122.14581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "\u00b7You are reminded of the need for good English and clear presentation in your answers.", "text": "\u00b7You are reminded of the need for good English and clear presentation in your answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 238.8944091796875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "JUN228464B1H01", "text": "JUN228464B1H01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 325.5729166666667, "t": 428.55910237630206, "r": 539.5208333333334, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 15 minutes", "text": "Time allowed: 1 hour 15 minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 315.42519124348956, "t": 20.71531168619788, "r": 367.4322916666667, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E14", "text": "IB/M/Jun22/E14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 447.7684733072917, "t": 33.44716389973962, "r": 545.4403076171875, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "8464/B/1H", "text": "8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 183.92755126953125, "t": 440.44215901692706, "r": 394.070068359375, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 544.171875, "t": 790.1437733968099, "r": 583.9171142578125, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 81.1818135579427, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 367.4322916666667, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Bacteria can cause avarietyof diseases in humans.", "text": "Bacteria can cause avarietyof diseases in humans.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 745.582285563151, "r": 99.78598022460938, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 745.1578877766927, "r": 451.9966634114583, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "What are two similarities between a bacterial cell and an animal cell?", "text": "What are two similarities between a bacterial cell and an animal cell?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 732.8504231770834, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 717.1478068033854, "r": 210.9881591796875, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Tick (v) two boxes.", "text": "Tick (v) two boxes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 677.6790568033854, "r": 250.7334187825521, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Both have a cell membrane.", "text": "Both have a cell membrane.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 640.332275390625, "r": 217.7533162434896, "b": 628.8736165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Bothhaveacell wall.", "text": "Bothhaveacell wall.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 603.8342895507812, "r": 217.7533162434896, "b": 590.2536417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Both have a nucleus.", "text": "Both have a nucleus.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 566.0631306966145, "r": 219.4446004231771, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Both have cytoplasm.", "text": "Both have cytoplasm.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 529.1407470703125, "r": 213.52508544921875, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Both have plasmids.", "text": "Both have plasmids.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 440.44215901692706, "r": 390.2646484375, "b": 424.73952229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "01.2 Salmonella food poisoning is caused by bacteria in food.", "text": "01.2 Salmonella food poisoning is caused by bacteria in food.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 413.70526123046875, "r": 353.0563557942708, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Give one symptom of salmonella food poisoning.", "text": "Give one symptom of salmonella food poisoning.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 387.39276123046875, "r": 370.8148600260417, "b": 373.81211344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Do not refer to vomiting or diarrhoea in your answer.", "text": "Do not refer to vomiting or diarrhoea in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 374.23651123046875, "r": 536.1382242838541, "b": 359.80706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 257.5278523763021, "r": 391.1103108723958, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question1continueson thenextpage", "text": "Question1continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 49.04734802246094, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 358.5530192057292, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "What is the name of the first antibiotic developed?", "text": "What is the name of the first antibiotic developed?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.4734700520833, "t": 761.7092946370443, "r": 534.8697916666666, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 644.1518351236979, "r": 468.0639241536458, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "A child with a severe bacterial infection was given a course of antibiotics.", "text": "A child with a severe bacterial infection was given a course of antibiotics.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 602.5611165364584, "r": 512.460205078125, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 115]}], "orig": "Figure 1 shows how the concentration of live bacteria in the child's body changed whentakingthecourseofantibiotics.", "text": "Figure 1 shows how the concentration of live bacteria in the child's body changed whentakingthecourseofantibiotics.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 4, "bbox": {"l": 301.89487711588544, "t": 565.214335123698, "r": 347.5596516927083, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 202.95454915364584, "t": 454.44720458984375, "r": 209.71968587239584, "b": 445.95928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 124.30965169270833, "t": 432.37864176432294, "r": 192.80680338541666, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Concentration", "text": "Concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 123.46400960286458, "t": 420.49558512369794, "r": 194.49810791015625, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "oflivebacteria", "text": "oflivebacteria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 122.19554646809895, "t": 408.18813069661456, "r": 190.69270833333334, "b": 395.45627848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "in the body in", "text": "in the body in", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 122.19554646809895, "t": 395.88067626953125, "r": 191.5383504231771, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "arbitrary units", "text": "arbitrary units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 202.95454915364584, "t": 397.57822672526044, "r": 209.71968587239584, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 323.88161214192706, "t": 274.92803955078125, "r": 331.06960042317706, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 379.2712809244792, "t": 275.3524373372396, "r": 387.7277425130208, "b": 264.7425740559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 493.8560384114583, "t": 274.92803955078125, "r": 500.6212158203125, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 337.41192626953125, "t": 263.4693806966146, "r": 401.258056640625, "b": 249.03993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Time in days", "text": "Time in days", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 189.00142415364584, "t": 246.49355061848962, "r": 239.74005126953125, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Course of", "text": "Course of", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 189.00142415364584, "t": 233.76169840494788, "r": 238.8944091796875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "antibiotics", "text": "antibiotics", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 195.76656087239584, "t": 221.87864176432288, "r": 231.7064412434896, "b": 209.99558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "started", "text": "started", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 524.7220458984375, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "The concentration of live bacteria in the body continued to increase after starting the courseof antibiotics.", "text": "The concentration of live bacteria in the body continued to increase after starting the courseof antibiotics.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 735.8211873372396, "r": 239.74005126953125, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Suggest one reason why.", "text": "Suggest one reason why.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 723.0893351236979, "r": 535.7154134114584, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 47.77887980143229, "t": 594.9219970703125, "r": 103.5913798014323, "b": 579.643778483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 593.6488037109375, "r": 286.25046793619794, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "After 3 days of taking the antibiotic:", "text": "After 3 days of taking the antibiotic:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 561.394775390625, "r": 216.90767415364584, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "\u00b7thechildfeltbetter", "text": "\u00b7thechildfeltbetter", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 543.1457926432292, "r": 332.76088460286456, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "\u00b7there were still bacteria in the child's body.", "text": "\u00b7there were still bacteria in the child's body.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 510.04296875, "r": 256.65293375651044, "b": 497.73549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Why did the child feel better?", "text": "Why did the child feel better?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.4734700520833, "t": 497.31109619140625, "r": 536.1382242838541, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 482.88169352213544, "r": 200.8404337565104, "b": 468.45225016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (v) one box.", "text": "Tick (v) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 441.71535237630206, "r": 339.9488525390625, "b": 430.68105061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Bacteriahadbecomeimmunetotheantibiotic.", "text": "Bacteriahadbecomeimmunetotheantibiotic.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 405.64174397786456, "r": 343.3314208984375, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "The child had becomeresistant to thebacteria.", "text": "The child had becomeresistant to thebacteria.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 368.71938069661456, "r": 356.4389241536458, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Therewerefewer toxins in the body than at day 0", "text": "Therewerefewer toxins in the body than at day 0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 279.1719767252604, "r": 486.6680908203125, "b": 263.4693806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 83]}], "orig": "01.6 Suggest why doctors do not give antibiotics to patients with minor infections.", "text": "01.6 Suggest why doctors do not give antibiotics to patients with minor infections.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 265.59136962890625, "r": 535.2926025390625, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 191.11551920572916, "t": 148.03391520182288, "r": 394.4928792317708, "b": 134.02886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question1continuesonthenextpage", "text": "Question1continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 286.67327880859375, "t": 809.6659495035807, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 212.25663248697916, "t": 644.1518351236979, "r": 219.8674112955729, "b": 636.0883382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 211.83380126953125, "t": 622.0832926432291, "r": 219.4446004231771, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 278.21685791015625, "t": 620.8100992838541, "r": 290.4786783854167, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "00", "text": "00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 556.4337158203125, "t": 275.7768351236979, "r": 563.1988525390625, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 359.398681640625, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Figure 2 shows blood viewed using a microscope.", "text": "Figure 2 shows blood viewed using a microscope.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 302.3177083333333, "t": 748.5530497233073, "r": 348.4053141276042, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 212.25663248697916, "t": 644.1518351236979, "r": 219.8674112955729, "b": 636.0883382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 211.83380126953125, "t": 622.0832926432291, "r": 219.4446004231771, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 278.21685791015625, "t": 620.8100992838541, "r": 290.4786783854167, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "00", "text": "00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.89299011230469, "t": 521.926025390625, "r": 104.85984293619792, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.7", "text": "01.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 521.5016276041667, "r": 368.2779134114583, "b": 508.3453776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "A vaccine will stimulate the production of antibodies.", "text": "A vaccine will stimulate the production of antibodies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 494.76475016276044, "r": 393.2244059244792, "b": 482.03289794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Which part of the blood in Figure 2 produces antibodies?", "text": "Which part of the blood in Figure 2 produces antibodies?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.4734700520833, "t": 482.03289794921875, "r": 536.1382242838541, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 468.02785237630206, "r": 201.26324462890625, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 6, "bbox": {"l": 204.2230021158854, "t": 429.83229573567706, "r": 213.1022745768229, "b": 419.64678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 6, "bbox": {"l": 363.6268717447917, "t": 428.55910237630206, "r": 370.3920491536458, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.201700846354164, "t": 344.95322672526044, "r": 102.32291666666667, "b": 328.82623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.8", "text": "01.8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 343.68007405598956, "r": 419.8622233072917, "b": 330.09942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Which part of the blood in Figure 2 starts the clotting process?", "text": "Which part of the blood in Figure 2 starts the clotting process?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 330.52382405598956, "r": 536.1382242838541, "b": 316.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 112.89346313476562, "t": 316.5187784830729, "r": 201.26324462890625, "b": 300.8161417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 6, "bbox": {"l": 204.2230021158854, "t": 277.8988240559896, "r": 212.679443359375, "b": 268.1377156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 556.4337158203125, "t": 275.7768351236979, "r": 563.1988525390625, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 80.75899251302083, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 283.29071044921875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "This question is about cell division.", "text": "This question is about cell division.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.89299011230469, "t": 745.582285563151, "r": 88.79261271158855, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 745.1578877766927, "r": 456.2248942057292, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Write the biological structures from the box in the correct order of size.", "text": "Write the biological structures from the box in the correct order of size.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 490.4734700520833, "t": 732.8504231770834, "r": 536.1382242838541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 157.71259562174478, "t": 695.503651936849, "r": 179.2765096028646, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "cell", "text": "cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 238.4715779622396, "t": 695.503651936849, "r": 308.23720296223956, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "chromosome", "text": "chromosome", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 362.78125, "t": 694.23046875, "r": 393.2244059244792, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "gene", "text": "gene", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 460.8759358723958, "t": 695.503651936849, "r": 504.8494059244792, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "nucleus", "text": "nucleus", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 147.98768107096353, "t": 638.2103068033854, "r": 192.38399251302084, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Smallest", "text": "Smallest", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 149.6789754231771, "t": 561.394775390625, "r": 189.8470662434896, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Largest", "text": "Largest", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 191.5383504231771, "t": 496.03794352213544, "r": 394.070068359375, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 8, "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 457.9161783854167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Figure 3 shows how a fertilised egg cell can produce specialised cells.", "text": "Figure 3 shows how a fertilised egg cell can produce specialised cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 8, "bbox": {"l": 302.3177083333333, "t": 749.4018351236979, "r": 347.9824625651042, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 372.928955078125, "t": 698.4744160970052, "r": 462.1444091796875, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Fertilised egg cell", "text": "Fertilised egg cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 373.351806640625, "t": 598.7415568033854, "r": 413.5198567708333, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Embryo", "text": "Embryo", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 286.67327880859375, "t": 546.5409545898438, "r": 342.4857991536458, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Process A", "text": "Process A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 167.86032104492188, "t": 428.55910237630206, "r": 244.81392415364584, "b": 415.82725016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Red blood cells", "text": "Red blood cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 284.1363525390625, "t": 428.55910237630206, "r": 345.445556640625, "b": 415.82725016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Muscle cells", "text": "Muscle cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 407.6003824869792, "t": 428.13470458984375, "r": 464.2585042317708, "b": 415.40285237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Nerve cells", "text": "Nerve cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 48.62452697753906, "t": 350.04600016276044, "r": 103.5913798014323, "b": 334.34336344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.16192626953125, "t": 348.34840901692706, "r": 203.8001912434896, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Name Process A.", "text": "Name Process A.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.4734700520833, "t": 336.04095458984375, "r": 536.1382242838541, "b": 321.61151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 49.47016906738281, "t": 232.06414794921875, "r": 101.47727457682292, "b": 217.21030680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 231.21535237630212, "r": 494.7017008463542, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "How many cell divisions are needed to form a 16-cell embryo from the original fertilised egg cell?", "text": "How many cell divisions are needed to form a 16-cell embryo from the original fertilised egg cell?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.0506591796875, "t": 205.75164794921875, "r": 535.2926025390625, "b": 192.59539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 261.72678629557294, "t": 128.08730061848962, "r": 384.7679850260417, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Numberofcell divisions\uff1a", "text": "Numberofcell divisions\uff1a", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.4905293782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 286.25046793619794, "t": 810.0903447469076, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 325.5729166666667, "t": 577.9461873372395, "r": 390.6875, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Startofcycle", "text": "Startofcycle", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 282.86789957682294, "t": 546.965352376302, "r": 324.304443359375, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 3", "text": "Stage 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 245.23673502604166, "t": 526.5943806966145, "r": 289.63303629557294, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Stage 2:", "text": "Stage 2:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 244.3910929361979, "t": 513.4381306966145, "r": 282.86789957682294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mitosis", "text": "mitosis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 370.8148600260417, "b": 411.58327229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 1", "text": "Stage 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 102.74573771158855, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 433.8153483072917, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "In humans a fertilised egg cell contains 23pairs of chromosomes.", "text": "In humans a fertilised egg cell contains 23pairs of chromosomes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 749.4018351236979, "r": 441.4261067708333, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "How many chromosomes will there be in each of the embryo cells?", "text": "How many chromosomes will there be in each of the embryo cells?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.4734700520833, "t": 737.5187683105469, "r": 536.1382242838541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.47016906738281, "t": 633.1175537109375, "r": 105.70548502604167, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 632.6931762695312, "r": 407.6003824869792, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Figure 4 represents a cell cycle for a human embryonic cell.", "text": "Figure 4 represents a cell cycle for a human embryonic cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 9, "bbox": {"l": 302.3177083333333, "t": 605.5318806966146, "r": 348.4053141276042, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 325.5729166666667, "t": 577.9461873372395, "r": 390.6875, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Startofcycle", "text": "Startofcycle", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 282.86789957682294, "t": 546.965352376302, "r": 324.304443359375, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 3", "text": "Stage 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 245.23673502604166, "t": 526.5943806966145, "r": 289.63303629557294, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Stage 2:", "text": "Stage 2:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 244.3910929361979, "t": 513.4381306966145, "r": 282.86789957682294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mitosis", "text": "mitosis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 370.8148600260417, "b": 411.58327229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 1", "text": "Stage 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 304.2113240559896, "r": 485.3996175130208, "b": 275.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Describe one change in the cell that occurs during each of the stages of the cell cycle.", "text": "Describe one change in the cell that occurs during each of the stages of the cell cycle.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.1311442057292, "t": 277.0500284830729, "r": 536.5610758463541, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 251.16192626953125, "r": 154.75283813476562, "b": 236.30808512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 1", "text": "Stage 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 199.38572184244788, "r": 154.33001708984375, "b": 185.80507405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 2", "text": "Stage 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 148.03391520182288, "r": 154.75283813476562, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 3", "text": "Stage 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 9, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 428.3186442057292, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "Cell division is important in the growth of multicellular organisms.", "text": "Cell division is important in the growth of multicellular organisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.47016906738281, "t": 736.6699829101562, "r": 101.47727457682292, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.6", "text": "02.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 735.8211873372396, "r": 500.1983642578125, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Figure 5 shows the mean height of boys and of girls from birth to age 18 years.", "text": "Figure 5 shows the mean height of boys and of girls from birth to age 18 years.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 10, "bbox": {"l": 285.82763671875, "t": 707.38671875, "r": 331.06960042317706, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 658.5812784830729, "r": 153.90719604492188, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 133.61173502604166, "t": 629.7223917643229, "r": 153.484375, "b": 618.2637329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "180", "text": "180", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 602.13671875, "r": 154.33001708984375, "b": 589.8292643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "160", "text": "160", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 450.3053792317708, "t": 586.8584798177084, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 573.7022298177083, "r": 154.33001708984375, "b": 561.394775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "140", "text": "140", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 449.882568359375, "t": 565.214335123698, "r": 476.0975341796875, "b": 549.51171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Boys", "text": "Boys", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 89.6382548014323, "t": 543.1457926432292, "r": 120.50426228841145, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Mean", "text": "Mean", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 545.2677612304688, "r": 154.33001708984375, "b": 532.9603068033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 449.882568359375, "t": 547.8141276041667, "r": 474.8290608723958, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Girls", "text": "Girls", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 89.6382548014323, "t": 532.1115112304688, "r": 122.61836751302083, "b": 517.2576904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "height", "text": "height", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 89.6382548014323, "t": 519.379659016927, "r": 118.39014689127605, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "in cm", "text": "in cm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 516.8332926432292, "r": 154.33001708984375, "b": 504.52581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 487.97442626953125, "r": 153.90719604492188, "b": 476.09136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 459.53993733723956, "r": 155.1756591796875, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 431.52984619140625, "r": 154.33001708984375, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 403.09539794921875, "r": 153.90719604492188, "b": 390.78794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 146.29639689127603, "t": 372.53892008463544, "r": 153.06155395507812, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 153.90719604492188, "t": 364.05104573567706, "r": 160.6723429361979, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 181.390625, "t": 364.47544352213544, "r": 189.8470662434896, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 208.45123291015625, "t": 364.47544352213544, "r": 218.1761271158854, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 238.4715779622396, "t": 364.05104573567706, "r": 245.23673502604166, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 266.8006591796875, "t": 364.05104573567706, "r": 273.98862711588544, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 292.16998291015625, "t": 364.47544352213544, "r": 306.12310791015625, "b": 354.28993733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 309.50567626953125, "t": 364.89980061848956, "r": 419.4393717447917, "b": 353.44114176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "\u00a512141618", "text": "\u00a512141618", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 253.69317626953125, "t": 352.16794840494794, "r": 315.84800211588544, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 282.445068359375, "t": 812.2123209635416, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 115.8532206217448, "t": 774.0167541503906, "r": 366.5866292317708, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Compare the growth of boys with the growth of girls", "text": "Compare the growth of boys with the growth of girls", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 308.23720296223956, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Use data from Figure 5 in your answer.", "text": "Use data from Figure 5 in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 736.2455851236979, "r": 535.7154134114584, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 48.62452697753906, "t": 218.90789794921875, "r": 103.5913798014323, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.7", "text": "02.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 218.05910237630212, "r": 491.741943359375, "b": 203.20526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Give one way that cell division by mitosis is important in fully grown animals.", "text": "Give one way that cell division by mitosis is important in fully grown animals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 489.6278483072917, "t": 204.47845458984375, "r": 536.1382242838541, "b": 190.04901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 552.6282958984375, "t": 158.21938069661462, "r": 567.8498942057291, "b": 145.48752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 79.4905293782552, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 319.6534016927083, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Amylase is an enzyme that digests starch.", "text": "Amylase is an enzyme that digests starch.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 50.31581115722656, "t": 744.7334899902344, "r": 87.52414957682292, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "03.", "text": "03.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 490.0506591796875, "t": 732.8504231770834, "r": 536.1382242838541, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 717.996592203776, "r": 201.68607584635416, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (v) one box.", "text": "Tick (v) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 677.6790568033854, "r": 308.23720296223956, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Liver, small intestine and large intestine", "text": "Liver, small intestine and large intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 640.332275390625, "r": 282.86789957682294, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Salivary glands, stomach and liver", "text": "Salivary glands, stomach and liver", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 604.6830851236979, "r": 335.72064208984375, "b": 590.2536417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Salivary glands, pancreas and small intestine", "text": "Salivary glands, pancreas and small intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 566.9119262695312, "r": 302.7405192057292, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Stomach, pancreas and large intestine", "text": "Stomach, pancreas and large intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 464.20827229817706, "r": 430.4327392578125, "b": 450.62762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "A student investigated the effect of pH on the activity of amylase.", "text": "A student investigated the effect of pH on the activity of amylase.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 437.04697672526044, "r": 235.5118408203125, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 411.58327229817706, "r": 290.4786783854167, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "1. Prepare amylase solution at pH 5", "text": "Prepare amylase solution at pH 5", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 385.69517008463544, "r": 386.0364583333333, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "2. Mix the amylase solution with starch in a boiling tube.", "text": "Mix the amylase solution with starch in a boiling tube.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 360.23146565755206, "r": 524.7220458984375, "b": 335.61655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "3. Remove a drop of the amylase-starch mixture every 30 seconds and test it for the presence of starch.", "text": "Remove a drop of the amylase-starch mixture every 30 seconds and test it for the presence of starch.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "3."}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 322.0359090169271, "r": 394.9156901041667, "b": 308.8796590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "4. Record the time when all the starch has been digested.", "text": "Record the time when all the starch has been digested.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "4."}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 295.29901123046875, "r": 509.9232991536458, "b": 268.98651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "5. Repeat steps 1 to 4 using amylase solution prepared at pH 6, then at pH 7 and then at pH 8", "text": "Repeat steps 1 to 4 using amylase solution prepared at pH 6, then at pH 7 and then at pH 8", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "5."}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 48.62452697753906, "t": 214.23952229817712, "r": 103.5913798014323, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 212.96636962890625, "r": 388.5733642578125, "b": 200.65887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "What was the independent variable in this investigation?", "text": "What was the independent variable in this investigation?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 490.4734700520833, "t": 200.23447672526038, "r": 536.1382242838541, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.47727457682292, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 490.0506591796875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Describe how the student would know when all the starch had been digested.", "text": "Describe how the student would know when all the starch had been digested.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.4734700520833, "t": 760.8605041503906, "r": 535.2926025390625, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 50.31581115722656, "t": 618.6881306966146, "r": 102.74573771158855, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 618.6881306966146, "r": 293.86126708984375, "b": 606.3806762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Figure6shows the student'sresults.", "text": "Figure6shows the student'sresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 268.06911214192706, "t": 591.5268351236979, "r": 313.3110758463542, "b": 577.097391764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 128.11505126953125, "t": 539.7506306966145, "r": 143.33663940429688, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "10-", "text": "10-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 134.03455607096353, "t": 482.45729573567706, "r": 142.49099731445312, "b": 472.27178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.69175720214844, "t": 431.95424397786456, "r": 120.92708333333333, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Time taken", "text": "Time taken", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 134.88020833333334, "t": 425.16392008463544, "r": 142.06817626953125, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 63.84611511230469, "t": 418.79799397786456, "r": 122.61836751302083, "b": 404.79294840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "to digest all", "text": "to digest all", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.26893615722656, "t": 406.91493733723956, "r": 115.007568359375, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "the starch", "text": "the starch", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.69175720214844, "t": 393.75868733723956, "r": 116.27604166666667, "b": 382.30002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "in minutes", "text": "in minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 142.913818359375, "t": 245.22039794921875, "r": 149.6789754231771, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 312.46543375651044, "t": 246.49355061848962, "r": 320.921875, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 426.6273600260417, "t": 245.64479573567712, "r": 433.8153483072917, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 321.76751708984375, "t": 232.91290283203125, "r": 339.5260416666667, "b": 219.33229573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 191.74660237630212, "r": 328.53265380859375, "b": 178.59035237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "What was the optimum pH forthe amylase?", "text": "What was the optimum pH forthe amylase?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 165.43410237630212, "r": 184.35038248697916, "b": 152.70220947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 6.", "text": "Use Figure 6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.4734700520833, "t": 153.55100504557288, "r": 535.7154134114584, "b": 138.27276611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 315.84800211588544, "t": 127.66290283203125, "r": 388.9962158203125, "b": 113.65785725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Optimum pH =", "text": "Optimum pH =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 13, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 300.62640380859375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Ascientist did a different investigation.", "text": "Ascientist did a different investigation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 234.66617838541666, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 722.2405497233073, "r": 346.7139892578125, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "1. Prepare amylase solution at the optimum pH.", "text": "Prepare amylase solution at the optimum pH.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 696.7768351236979, "r": 386.0364583333333, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "2. Mix the amylase solution with starch in a boiling tube.", "text": "Mix the amylase solution with starch in a boiling tube.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 670.4643351236979, "r": 458.3389892578125, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "3. Measure the concentration of sugar every 10 seconds for 2 minutes.", "text": "Measure the concentration of sugar every 10 seconds for 2 minutes.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "3."}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 115.43039957682292, "t": 628.8736165364584, "r": 299.3579508463542, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Figure 7 shows the scientist's results.", "text": "Figure 7 shows the scientist's results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 268.491943359375, "t": 603.8342895507812, "r": 313.73388671875, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 66.80586751302083, "t": 424.31512451171875, "r": 136.57149251302084, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Concentration", "text": "Concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 65.96022542317708, "t": 412.85646565755206, "r": 120.08144124348958, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "of sugar in", "text": "of sugar in", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 66.80586751302083, "t": 399.70021565755206, "r": 134.45738728841147, "b": 388.24155680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "arbitraryunits", "text": "arbitraryunits", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 134.03455607096353, "t": 380.60243733723956, "r": 142.49099731445312, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 195.34375, "t": 259.22540283203125, "r": 210.14251708984375, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 252.00189208984375, "t": 259.22540283203125, "r": 266.37782796223956, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 308.6600341796875, "t": 259.22540283203125, "r": 323.45880126953125, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 365.3181559244792, "t": 259.22540283203125, "r": 380.116943359375, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 419.4393717447917, "t": 259.6498006184896, "r": 440.1576741536458, "b": 246.49355061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 476.0975341796875, "t": 259.22540283203125, "r": 496.8157958984375, "b": 246.49355061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 290.0558675130208, "t": 243.94720458984375, "r": 370.3920491536458, "b": 232.48854573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Time inseconds", "text": "Time inseconds", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.31581115722656, "t": 189.62461344401038, "r": 101.47727457682292, "b": 176.04396565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.3162841796875, "t": 190.47340901692712, "r": 435.5066324869792, "b": 177.31715901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "How much time did it take for the amylase to digest all the starch?", "text": "How much time did it take for the amylase to digest all the starch?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 165.00970458984375, "r": 184.35038248697916, "b": 152.27781168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 7.", "text": "Use Figure 7.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 195.34375, "t": 129.36049397786462, "r": 340.37168375651044, "b": 116.62864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time to digest all the starch =", "text": "Time to digest all the starch =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.8962809244792, "t": 152.27781168619788, "r": 535.7154134114584, "b": 139.12156168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 488.7821858723958, "t": 128.51169840494788, "r": 532.3328450520834, "b": 117.47743733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}, {"page_no": 14, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [8, 33]}], "orig": "seconds Donotwrite outsidethe box", "text": "seconds Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 47.77887980143229, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.6", "text": "03.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 432.1240234375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Determine the rate of sugar production per minute at 40 seconds.", "text": "Determine the rate of sugar production per minute at 40 seconds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 761.7092946370443, "r": 536.1382242838541, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 227.0553995768229, "t": 558.4240112304688, "r": 263.41807047526044, "b": 544.8433634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Rate =", "text": "Rate =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 410.1372884114583, "t": 557.9996134440105, "r": 532.7556559244791, "b": 544.418965657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "arbitraryunitsper minute", "text": "arbitraryunitsper minute", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 478.63771565755206, "r": 105.2826639811198, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.7", "text": "03.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 476.94012451171875, "r": 516.265625, "b": 450.62762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Explain how the structure of enzyme molecules is related to the effect of pH on the activity of amylase.", "text": "Explain how the structure of enzyme molecules is related to the effect of pH on the activity of amylase.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 450.62762451171875, "r": 535.7154134114584, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 552.2054850260416, "t": 145.91192626953125, "r": 568.272705078125, "b": 131.90688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 552.2054850260416, "t": 145.91192626953125, "r": 568.272705078125, "b": 131.90688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 399.1439208984375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Photosynthesis is an important chemical reaction in plants.", "text": "Photosynthesis is an important chemical reaction in plants.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 745.1578877766927, "r": 88.79261271158855, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04].", "text": "04].", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 744.7334899902344, "r": 309.0828450520833, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Why is light needed for photosynthesis?", "text": "Why is light needed for photosynthesis?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.4734700520833, "t": 732.426035563151, "r": 536.1382242838541, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 603.4098917643229, "r": 313.73388671875, "b": 587.2828776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "04.2 What is the equation for photosynthesis?", "text": "04.2 What is the equation for photosynthesis?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.0506591796875, "t": 589.4048665364584, "r": 536.1382242838541, "b": 574.551025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 574.9754231770833, "r": 200.8404337565104, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 115.43039957682292, "t": 534.2334798177083, "r": 284.55918375651044, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "C6H12O6+ CO2\u2192 6O2 + 6H2O", "text": "C6H12O6+ CO2\u2192 6O2 + 6H2O", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 115.007568359375, "t": 498.15989176432294, "r": 257.92138671875, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "O+ OH\u2190O\u00b2H +\u00b2O", "text": "O+ OH\u2190O\u00b2H +\u00b2O", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 461.23752848307294, "r": 293.015625, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "6CO2 + 6H2O \u2192 CH12O6 + 6O2", "text": "6CO2 + 6H2O \u2192 CH12O6 + 6O2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 423.89072672526044, "r": 293.015625, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "6O2 + 6H2O \u2192 CH12O6 + 6CO2", "text": "6O2 + 6H2O \u2192 CH12O6 + 6CO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 284.1363525390625, "t": 810.5147399902344, "r": 295.1297200520833, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 456.2248942057292, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "A student investigated the effect of differentcoloursof light on therate of photosynthesis at room temperature.", "text": "A student investigated the effect of differentcoloursof light on therate of photosynthesis at room temperature.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 737.0943806966146, "r": 298.51230875651044, "b": 723.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "The student used pondweed in water.", "text": "The student used pondweed in water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.43039957682292, "t": 710.7818806966146, "r": 529.3730875651041, "b": 698.4744160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "A piece of pondweed was placed in red light, then in blue light and then in green light.", "text": "A piece of pondweed was placed in red light, then in blue light and then in green light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 686.5913492838541, "r": 325.5729166666667, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Eachcolour of lightwasthesame intensity.", "text": "Eachcolour of lightwasthesame intensity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 646.6982014973959, "r": 531.9100341796875, "b": 621.6588948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Describehowthestudentshouldmakeaccuratemeasurementstoobtainvalidresults for the rate of photosynthesis.", "text": "Describehowthestudentshouldmakeaccuratemeasurementstoobtainvalidresults for the rate of photosynthesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.553955078125, "t": 621.6588948567709, "r": 535.7154134114584, "b": 608.5026448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 187.73295084635416, "t": 350.47039794921875, "r": 390.6875, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 4 continues on the next page", "text": "Question 4 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 499.3527425130208, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "A scientist investigated the effect of different wavelengths of light on the rate of photosynthesis.", "text": "A scientist investigated the effect of different wavelengths of light on the rate of photosynthesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 736.6699829101562, "r": 393.6472574869792, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "The wavelength of light determines the colour of the light.", "text": "The wavelength of light determines the colour of the light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.007568359375, "t": 699.3232116699219, "r": 294.7069091796875, "b": 685.3181660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Figure8 shows thestudent'sresults.", "text": "Figure8 shows thestudent'sresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.43039957682292, "t": 673.4350992838541, "r": 298.51230875651044, "b": 660.7032470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Figure9showsthescientist'sresults.", "text": "Figure9showsthescientist'sresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 302.7405192057292, "t": 634.3907470703125, "r": 347.9824625651042, "b": 621.2344970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 241.43133544921875, "t": 583.4633382161458, "r": 255.80729166666666, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 248.19649251302084, "t": 525.3211873372395, "r": 254.9616495768229, "b": 516.8332926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 162.78645833333334, "t": 471.84739176432294, "r": 201.68607584635416, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Rate of", "text": "Rate of", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 248.19649251302084, "t": 468.87664794921875, "r": 255.38446044921875, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 162.3636271158854, "t": 459.11553955078125, "r": 238.04876708984375, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "photosynthesis", "text": "photosynthesis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 163.20927937825522, "t": 447.23248291015625, "r": 241.85416666666666, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "in arbitrary units", "text": "in arbitrary units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 249.0421346028646, "t": 354.28993733723956, "r": 253.69317626953125, "b": 347.92401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 303.58616129557294, "t": 290.63067626953125, "r": 327.2642008463542, "b": 277.8988240559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Red", "text": "Red", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 359.8214925130208, "t": 290.63067626953125, "r": 384.7679850260417, "b": 278.3232218424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Blue", "text": "Blue", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 411.8285725911458, "t": 290.63067626953125, "r": 445.6543375651042, "b": 277.47442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Green", "text": "Green", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 337.83473714192706, "t": 275.7768351236979, "r": 407.1775309244792, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Colour of light", "text": "Colour of light", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 779.5338948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Donotwrite", "text": "Donotwrite", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 547.1316324869791, "t": 780.3826853434244, "r": 583.4943033854166, "b": 771.8947804768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "outsidethe", "text": "outsidethe", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 19, "bbox": {"l": 268.491943359375, "t": 775.2899424235026, "r": 313.73388671875, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 558.9706217447916, "t": 772.3191782633463, "r": 572.078125, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "box", "text": "box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 723.9381306966146, "r": 153.484375, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.83995564778647, "t": 695.503651936849, "r": 153.484375, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 667.0691731770834, "r": 153.484375, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 56.235321044921875, "t": 639.4834798177084, "r": 94.71211751302083, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Rate of", "text": "Rate of", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.83995564778647, "t": 638.6347045898438, "r": 153.484375, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 57.080963134765625, "t": 626.3272298177084, "r": 131.49762980143228, "b": 614.8685709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "photosynthesis", "text": "photosynthesis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 54.54403177897135, "t": 619.5369262695312, "r": 153.90719604492188, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "in arbitrary units 40-", "text": "in arbitrary units 40-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 581.7657470703125, "r": 153.484375, "b": 569.4582926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 552.9068806966145, "r": 153.484375, "b": 541.0238037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 138.26277669270834, "t": 524.8967895507812, "r": 153.06155395507812, "b": 513.0137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 145.45075480143228, "t": 495.18914794921875, "r": 152.21590169270834, "b": 486.70123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 144.60511271158853, "t": 487.12563069661456, "r": 166.59184773763022, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 258.76702880859375, "t": 487.12563069661456, "r": 280.33095296223956, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "500", "text": "500", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 371.6604817708333, "t": 487.12563069661456, "r": 392.8015950520833, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.976806640625, "t": 487.12563069661456, "r": 506.1178792317708, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "700", "text": "700", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 278.63966878255206, "t": 471.42299397786456, "r": 401.258056640625, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Wavelengthoflightinnm", "text": "Wavelengthoflightinnm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.201700846354164, "t": 406.06614176432294, "r": 102.74573771158855, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 404.36855061848956, "r": 442.2717692057292, "b": 391.21230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "Why are the results for the two investigations presented differently?", "text": "Why are the results for the two investigations presented differently?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.553955078125, "t": 391.21230061848956, "r": 535.7154134114584, "b": 378.05605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 50.31581115722656, "t": 195.99053955078125, "r": 101.054443359375, "b": 182.83428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 195.99053955078125, "r": 344.1770833333333, "b": 182.83428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Suggest the range in wavelength of green light.", "text": "Suggest the range in wavelength of green light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 169.25364176432288, "r": 251.15625, "b": 156.52178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Use Figure 8 and Figure 9.", "text": "Use Figure 8 and Figure 9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.8962809244792, "t": 156.52178955078125, "r": 535.7154134114584, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 128.53787231445312, "t": 121.72141520182288, "r": 334.45216878255206, "b": 106.86757405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Range in wavelength of green light = from", "text": "Range in wavelength of green light = from", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 409.7144775390625, "t": 120.44822184244788, "r": 439.7348225911458, "b": 108.14076741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "nm to", "text": "nm to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 514.9971516927084, "t": 118.75063069661462, "r": 532.7556559244791, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "nm", "text": "nm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 556.4337158203125, "t": 125.54091389973962, "r": 564.0444742838541, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 58.34943135579427, "t": 26.23248291015625, "r": 80.75899251302083, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 184.35038248697916, "t": 440.44215901692706, "r": 394.070068359375, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 266.8006591796875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "This question is about tumours.", "text": "This question is about tumours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 50.31581115722656, "t": 744.309092203776, "r": 88.36979166666667, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 745.1578877766927, "r": 454.9564208984375, "b": 718.8453877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Describe the similarities and differences between benign tumours and malignanttumours.", "text": "Describe the similarities and differences between benign tumours and malignanttumours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 718.8453877766927, "r": 536.5610758463541, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 187.73295084635416, "t": 240.12762451171875, "r": 390.6875, "b": 226.12261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question5continuesonthenextpage", "text": "Question5continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 499.7755533854167, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 10 shows data about skin cancer in males and females for different age groups in the UK.", "text": "Figure 10 shows data about skin cancer in males and females for different age groups in the UK.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 729.8796590169271, "r": 158.9810587565104, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "It shows:", "text": "It shows:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 710.3574829101562, "r": 366.5866292317708, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "\u00b7 the number of new cases of skin cancer in 1 year", "text": "the number of new cases of skin cancer in 1 year", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 265.5321858723958, "t": 646.2738037109375, "r": 316.6936442057292, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 87.9469706217448, "t": 600.4391276041666, "r": 113.3162841796875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1200", "text": "1200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.9161783854167, "t": 600.4391276041666, "r": 477.3660074869792, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 88.36979166666667, "t": 575.82421875, "r": 112.89346313476562, "b": 565.214335123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.4933675130208, "t": 575.82421875, "r": 477.3660074869792, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 475.2518717447917, "t": 561.8191731770833, "r": 513.3058675130209, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Number", "text": "Number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.6983896891276, "t": 557.1508178710938, "r": 112.04782104492188, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Number 800", "text": "Number 800", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.4933675130208, "t": 552.4824829101562, "r": 518.3797200520834, "b": 537.628641764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "80of people", "text": "80of people", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.6983896891276, "t": 543.9945678710938, "r": 84.98721313476562, "b": 532.535909016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "ofnew", "text": "ofnew", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 475.2518717447917, "t": 539.3262329101562, "r": 515.8427734375, "b": 527.8675537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "with skin", "text": "with skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.27556864420573, "t": 532.1115112304688, "r": 81.60463968912761, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "cases", "text": "cases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 93.4436543782552, "t": 527.4431762695312, "r": 113.73910522460938, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "600-", "text": "600-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.070556640625, "t": 527.8675537109375, "r": 525.5677083333334, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "60cancerper", "text": "60cancerper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.6983896891276, "t": 521.5016276041667, "r": 84.56439208984375, "b": 510.8917643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "of skin", "text": "of skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 475.6747233072917, "t": 517.2576904296875, "r": 512.8830159505209, "b": 505.79901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "100000", "text": "100000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 54.12121073404948, "t": 508.769775390625, "r": 85.4100341796875, "b": 499.85748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "cancer", "text": "cancer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 93.4436543782552, "t": 504.1014404296875, "r": 112.89346313476562, "b": 491.79396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.070556640625, "t": 504.52581787109375, "r": 524.2992350260416, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "40population", "text": "40population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 93.86647542317708, "t": 479.06211344401044, "r": 113.3162841796875, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.4933675130208, "t": 478.63771565755206, "r": 471.4464925130208, "b": 468.02785237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 106.12831624348958, "t": 451.90081787109375, "r": 111.625, "b": 444.68609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 459.1846516927083, "t": 453.17401123046875, "r": 464.6813151041667, "b": 446.38368733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 122.61836751302083, "t": 445.53489176432294, "r": 135.30302937825522, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 145.87357584635416, "t": 445.95928955078125, "r": 160.24952189127603, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 169.97442626953125, "t": 445.95928955078125, "r": 184.35038248697916, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 194.49810791015625, "t": 445.53489176432294, "r": 207.1827596028646, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 218.59895833333334, "t": 445.53489176432294, "r": 231.7064412434896, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 243.12261962890625, "t": 445.53489176432294, "r": 256.2301025390625, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 266.8006591796875, "t": 445.95928955078125, "r": 281.1765950520833, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "45", "text": "45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 290.90150960286456, "t": 445.95928955078125, "r": 304.4318033854167, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 315.42519124348956, "t": 445.53489176432294, "r": 328.53265380859375, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "55", "text": "55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 339.5260416666667, "t": 445.53489176432294, "r": 352.6335042317708, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 364.0497233072917, "t": 445.53489176432294, "r": 377.1571858723958, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "65", "text": "65", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 387.7277425130208, "t": 445.53489176432294, "r": 400.835205078125, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 412.2514241536458, "t": 445.53489176432294, "r": 425.35888671875, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "75", "text": "75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 435.929443359375, "t": 445.11049397786456, "r": 449.4597574869792, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 122.61836751302083, "t": 434.07623291015625, "r": 134.45738728841147, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 146.7192179361979, "t": 434.50063069661456, "r": 158.9810587565104, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 170.820068359375, "t": 434.07623291015625, "r": 183.0819091796875, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 195.76656087239584, "t": 433.65183512369794, "r": 205.9142862955729, "b": 423.89072672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 219.02176920572916, "t": 434.07623291015625, "r": 230.86079915364584, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 243.54545084635416, "t": 434.07623291015625, "r": 255.38446044921875, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 268.06911214192706, "t": 434.07623291015625, "r": 279.90814208984375, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.7471516927083, "t": 434.07623291015625, "r": 303.58616129557294, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 315.84800211588544, "t": 434.07623291015625, "r": 327.2642008463542, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 339.9488525390625, "t": 434.07623291015625, "r": 351.7878824869792, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 364.4725341796875, "t": 434.50063069661456, "r": 376.3115234375, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 388.5733642578125, "t": 434.07623291015625, "r": 399.9895833333333, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 412.6742350260417, "t": 434.07623291015625, "r": 424.0904134114583, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 437.1979166666667, "t": 434.07623291015625, "r": 448.6140950520833, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 122.19554646809895, "t": 423.46636962890625, "r": 135.30302937825522, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 146.29639689127603, "t": 423.46636962890625, "r": 159.82670084635416, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 170.39724731445312, "t": 423.46636962890625, "r": 183.92755126953125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 194.07527669270834, "t": 423.04197184244794, "r": 207.6055908203125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 218.1761271158854, "t": 423.46636962890625, "r": 231.7064412434896, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 242.6998087565104, "t": 423.46636962890625, "r": 256.2301025390625, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "44", "text": "44", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 267.2234700520833, "t": 423.46636962890625, "r": 280.7537841796875, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "49", "text": "49", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.32432047526044, "t": 423.46636962890625, "r": 304.4318033854167, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "54", "text": "54", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 315.42519124348956, "t": 423.04197184244794, "r": 328.53265380859375, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "59", "text": "59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 339.5260416666667, "t": 423.46636962890625, "r": 352.6335042317708, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "64", "text": "64", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 364.0497233072917, "t": 423.04197184244794, "r": 377.1571858723958, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "69", "text": "69", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/65", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 387.7277425130208, "t": 423.04197184244794, "r": 401.258056640625, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "74", "text": "74", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/66", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 411.8285725911458, "t": 423.04197184244794, "r": 424.9360758463542, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "79", "text": "79", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/67", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 435.5066324869792, "t": 423.89072672526044, "r": 450.3053792317708, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "84", "text": "84", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/68", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 235.93465169270834, "t": 406.49053955078125, "r": 293.86126708984375, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/69", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 53.27556864420573, "t": 396.30507405598956, "r": 75.26230875651042, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/70", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 82.87310282389323, "t": 377.63169352213544, "r": 164.90056355794272, "b": 366.17299397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Newmalecases", "text": "Newmalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/71", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 82.87310282389323, "t": 361.50465901692706, "r": 174.6254679361979, "b": 350.04600016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Newfemalecases", "text": "Newfemalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/72", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 81.60463968912761, "t": 345.37762451171875, "r": 309.92848714192706, "b": 333.07017008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Number of males with skin cancer per 1oo000", "text": "Number of males with skin cancer per 1oo000", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/73", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 78.22206115722656, "t": 329.2506306966146, "r": 319.23057047526044, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Number of femaleswith skin cancer per 10o000", "text": "Number of femaleswith skin cancer per 10o000", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/74", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/75", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/76", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.16855875651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 473.5605875651042, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "There are no new cases of skin cancer diagnosed in people younger than 15 years of age.", "text": "There are no new cases of skin cancer diagnosed in people younger than 15 years of age.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 736.2455851236979, "r": 177.16239420572916, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Explain why.", "text": "Explain why.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.976806640625, "t": 721.816151936849, "r": 536.1382242838541, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.89299011230469, "t": 541.8725992838542, "r": 101.9000956217448, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 541.4482014973958, "r": 453.6879475911458, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Givetwoconclusions aboutthenumberofnewcasesofskincancer.", "text": "Givetwoconclusions aboutthenumberofnewcasesofskincancer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 515.9844970703125, "r": 189.8470662434896, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Use Figure 10.", "text": "Use Figure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.553955078125, "t": 503.2526448567708, "r": 536.1382242838541, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 423.04197184244794, "r": 121.77272542317708, "b": 415.40285237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 322.4603068033854, "r": 103.16855875651042, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 322.0359090169271, "r": 520.4938151041666, "b": 308.45526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "The data for the number of people with skin cancer is given per 100 0o0 population", "text": "The data for the number of people with skin cancer is given per 100 0o0 population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 295.7234090169271, "r": 428.741455078125, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Suggest why the data is not given as the total number of people.", "text": "Suggest why the data is not given as the total number of people.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 489.6278483072917, "t": 283.41595458984375, "r": 535.7154134114584, "b": 268.98651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 187.31011962890625, "t": 166.70729573567712, "r": 391.5331217447917, "b": 151.42901611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 5 continues on the next page", "text": "Question 5 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 23, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 255.80729166666666, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 10 is repeated below.", "text": "Figure 10 is repeated below.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 265.5321858723958, "t": 748.128651936849, "r": 316.2708333333333, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 702.7183736165365, "r": 113.73910522460938, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1200", "text": "1200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 702.7183736165365, "r": 477.3660074869792, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 678.9522399902344, "r": 113.3162841796875, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 678.9522399902344, "r": 477.788818359375, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 664.9472045898438, "r": 513.3058675130209, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Number", "text": "Number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 659.4300537109375, "r": 112.47064208984375, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Number 800", "text": "Number 800", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 654.76171875, "r": 518.3797200520834, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "80of people", "text": "80of people", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 646.6982014973959, "r": 84.56439208984375, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "ofnew", "text": "ofnew", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 642.0298665364584, "r": 516.265625, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "with skin", "text": "with skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 634.8151448567709, "r": 81.60463968912761, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "cases", "text": "cases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 629.7223917643229, "r": 113.3162841796875, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.070556640625, "t": 630.1467895507812, "r": 525.5677083333334, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "60cancerper", "text": "60cancerper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 625.0540568033854, "r": 84.56439208984375, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "of skin", "text": "of skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 476.0975341796875, "t": 619.1125284830729, "r": 512.0373942057291, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "100000", "text": "100000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 611.8978068033854, "r": 85.83285522460938, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "cancer", "text": "cancer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 605.5318806966146, "r": 113.3162841796875, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 607.2294514973959, "r": 524.7220458984375, "b": 597.4683634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "-40population", "text": "-40population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 581.3413492838542, "r": 112.89346313476562, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.4933675130208, "t": 581.3413492838542, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 105.70548502604167, "t": 555.0288492838542, "r": 112.47064208984375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 458.3389892578125, "t": 555.8776448567708, "r": 465.1041666666667, "b": 548.238525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 547.8141276041667, "r": 135.30302937825522, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 547.3897298177083, "r": 159.82670084635416, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 547.8141276041667, "r": 183.50472005208334, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 193.6524658203125, "t": 548.238525390625, "r": 208.02840169270834, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 547.8141276041667, "r": 231.7064412434896, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.12261962890625, "t": 547.8141276041667, "r": 256.2301025390625, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 266.8006591796875, "t": 548.238525390625, "r": 281.1765950520833, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "45", "text": "45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 547.8141276041667, "r": 304.4318033854167, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 547.8141276041667, "r": 328.53265380859375, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "55", "text": "55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 547.8141276041667, "r": 352.6335042317708, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 363.6268717447917, "t": 548.238525390625, "r": 377.5799967447917, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "65", "text": "65", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 547.8141276041667, "r": 400.835205078125, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.2514241536458, "t": 547.8141276041667, "r": 425.35888671875, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "75", "text": "75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.929443359375, "t": 547.3897298177083, "r": 449.4597574869792, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 536.7798665364583, "r": 134.03455607096353, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.7192179361979, "t": 536.35546875, "r": 158.55823771158853, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 171.2428995768229, "t": 536.35546875, "r": 182.6590779622396, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 195.34375, "t": 536.7798665364583, "r": 206.33711751302084, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 219.02176920572916, "t": 536.35546875, "r": 230.86079915364584, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.54545084635416, "t": 536.7798665364583, "r": 255.38446044921875, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 268.06911214192706, "t": 536.35546875, "r": 279.4853108723958, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.7471516927083, "t": 536.35546875, "r": 303.58616129557294, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 316.2708333333333, "t": 536.35546875, "r": 327.2642008463542, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.9488525390625, "t": 536.7798665364583, "r": 351.7878824869792, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.4725341796875, "t": 536.7798665364583, "r": 376.3115234375, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 388.5733642578125, "t": 536.35546875, "r": 399.9895833333333, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.6742350260417, "t": 536.35546875, "r": 424.0904134114583, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 437.1979166666667, "t": 536.35546875, "r": 448.6140950520833, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.19554646809895, "t": 525.745585123698, "r": 135.30302937825522, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 525.745585123698, "r": 159.82670084635416, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 525.745585123698, "r": 183.92755126953125, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 194.07527669270834, "t": 525.745585123698, "r": 207.1827596028646, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 525.745585123698, "r": 231.7064412434896, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 242.6998087565104, "t": 525.745585123698, "r": 256.2301025390625, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "44", "text": "44", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 267.2234700520833, "t": 525.745585123698, "r": 280.33095296223956, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "49", "text": "49", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 525.745585123698, "r": 304.4318033854167, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "54", "text": "54", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 525.745585123698, "r": 328.53265380859375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "59", "text": "59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 525.745585123698, "r": 352.6335042317708, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "64", "text": "64", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.0497233072917, "t": 525.745585123698, "r": 376.734375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "69", "text": "69", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 525.745585123698, "r": 401.258056640625, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "74", "text": "74", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 411.8285725911458, "t": 525.3211873372395, "r": 424.9360758463542, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "79", "text": "79", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/65", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.5066324869792, "t": 525.745585123698, "r": 449.4597574869792, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "84", "text": "84", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/66", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 235.93465169270834, "t": 509.1941731770833, "r": 293.86126708984375, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/67", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 497.73549397786456, "r": 73.99384053548177, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/68", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 481.18410237630206, "r": 165.3233846028646, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Newmalecases", "text": "Newmalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/69", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 465.05706787109375, "r": 174.6254679361979, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Newfemalecases", "text": "Newfemalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/70", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 63.00047302246094, "t": 448.50567626953125, "r": 309.92848714192706, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "--Number of maleswithskin cancerper 1ooo00", "text": "--Number of maleswithskin cancerper 1ooo00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/71", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 81.60463968912761, "t": 431.95424397786456, "r": 318.3849283854167, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Numberoffemaleswithskincancerper1oooo0", "text": "Numberoffemaleswithskincancerper1oooo0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/72", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/73", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 350.89479573567706, "r": 315.0023600260417, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Describe two trends shown inFigure 10.", "text": "Describe two trends shown inFigure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/74", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 325.4310506184896, "r": 535.2926025390625, "b": 299.1185506184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "text": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/75", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 207.44919840494788, "r": 121.77272542317708, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/76", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 255.80729166666666, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 10 is repeated below.", "text": "Figure 10 is repeated below.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/77", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 265.5321858723958, "t": 748.128651936849, "r": 316.2708333333333, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/78", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 702.7183736165365, "r": 113.73910522460938, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1200", "text": "1200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/79", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 702.7183736165365, "r": 477.3660074869792, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/80", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 678.9522399902344, "r": 113.3162841796875, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/81", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 678.9522399902344, "r": 477.788818359375, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/82", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 664.9472045898438, "r": 513.3058675130209, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Number", "text": "Number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/83", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 659.4300537109375, "r": 112.47064208984375, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Number 800", "text": "Number 800", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/84", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 654.76171875, "r": 518.3797200520834, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "80of people", "text": "80of people", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/85", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 646.6982014973959, "r": 84.56439208984375, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "ofnew", "text": "ofnew", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/86", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 642.0298665364584, "r": 516.265625, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "with skin", "text": "with skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/87", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 634.8151448567709, "r": 81.60463968912761, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "cases", "text": "cases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/88", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 629.7223917643229, "r": 113.3162841796875, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/89", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.070556640625, "t": 630.1467895507812, "r": 525.5677083333334, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "60cancerper", "text": "60cancerper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/90", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 625.0540568033854, "r": 84.56439208984375, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "of skin", "text": "of skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/91", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 476.0975341796875, "t": 619.1125284830729, "r": 512.0373942057291, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "100000", "text": "100000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/92", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 611.8978068033854, "r": 85.83285522460938, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "cancer", "text": "cancer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/93", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 605.5318806966146, "r": 113.3162841796875, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/94", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 607.2294514973959, "r": 524.7220458984375, "b": 597.4683634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "-40population", "text": "-40population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/95", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 581.3413492838542, "r": 112.89346313476562, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/96", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.4933675130208, "t": 581.3413492838542, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/97", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 105.70548502604167, "t": 555.0288492838542, "r": 112.47064208984375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/98", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 458.3389892578125, "t": 555.8776448567708, "r": 465.1041666666667, "b": 548.238525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/99", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 547.8141276041667, "r": 135.30302937825522, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/100", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 547.3897298177083, "r": 159.82670084635416, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/101", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 547.8141276041667, "r": 183.50472005208334, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/102", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 193.6524658203125, "t": 548.238525390625, "r": 208.02840169270834, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/103", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 547.8141276041667, "r": 231.7064412434896, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/104", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.12261962890625, "t": 547.8141276041667, "r": 256.2301025390625, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/105", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 266.8006591796875, "t": 548.238525390625, "r": 281.1765950520833, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "45", "text": "45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/106", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 547.8141276041667, "r": 304.4318033854167, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/107", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 547.8141276041667, "r": 328.53265380859375, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "55", "text": "55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/108", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 547.8141276041667, "r": 352.6335042317708, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/109", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 363.6268717447917, "t": 548.238525390625, "r": 377.5799967447917, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "65", "text": "65", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/110", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 547.8141276041667, "r": 400.835205078125, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/111", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.2514241536458, "t": 547.8141276041667, "r": 425.35888671875, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "75", "text": "75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/112", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.929443359375, "t": 547.3897298177083, "r": 449.4597574869792, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/113", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 536.7798665364583, "r": 134.03455607096353, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/114", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.7192179361979, "t": 536.35546875, "r": 158.55823771158853, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/115", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 171.2428995768229, "t": 536.35546875, "r": 182.6590779622396, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/116", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 195.34375, "t": 536.7798665364583, "r": 206.33711751302084, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/117", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 219.02176920572916, "t": 536.35546875, "r": 230.86079915364584, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/118", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.54545084635416, "t": 536.7798665364583, "r": 255.38446044921875, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/119", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 268.06911214192706, "t": 536.35546875, "r": 279.4853108723958, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/120", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.7471516927083, "t": 536.35546875, "r": 303.58616129557294, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/121", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 316.2708333333333, "t": 536.35546875, "r": 327.2642008463542, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/122", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.9488525390625, "t": 536.7798665364583, "r": 351.7878824869792, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/123", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.4725341796875, "t": 536.7798665364583, "r": 376.3115234375, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/124", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 388.5733642578125, "t": 536.35546875, "r": 399.9895833333333, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/125", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.6742350260417, "t": 536.35546875, "r": 424.0904134114583, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/126", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 437.1979166666667, "t": 536.35546875, "r": 448.6140950520833, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/127", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.19554646809895, "t": 525.745585123698, "r": 135.30302937825522, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/128", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 525.745585123698, "r": 159.82670084635416, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/129", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 525.745585123698, "r": 183.92755126953125, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/130", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 194.07527669270834, "t": 525.745585123698, "r": 207.1827596028646, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/131", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 525.745585123698, "r": 231.7064412434896, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/132", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 242.6998087565104, "t": 525.745585123698, "r": 256.2301025390625, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "44", "text": "44", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/133", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 267.2234700520833, "t": 525.745585123698, "r": 280.33095296223956, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "49", "text": "49", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/134", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 525.745585123698, "r": 304.4318033854167, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "54", "text": "54", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/135", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 525.745585123698, "r": 328.53265380859375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "59", "text": "59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/136", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 525.745585123698, "r": 352.6335042317708, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "64", "text": "64", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/137", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.0497233072917, "t": 525.745585123698, "r": 376.734375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "69", "text": "69", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/138", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 525.745585123698, "r": 401.258056640625, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "74", "text": "74", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/139", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 411.8285725911458, "t": 525.3211873372395, "r": 424.9360758463542, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "79", "text": "79", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/140", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.5066324869792, "t": 525.745585123698, "r": 449.4597574869792, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "84", "text": "84", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/141", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 235.93465169270834, "t": 509.1941731770833, "r": 293.86126708984375, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/142", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 497.73549397786456, "r": 73.99384053548177, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/143", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 481.18410237630206, "r": 165.3233846028646, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Newmalecases", "text": "Newmalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/144", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 465.05706787109375, "r": 174.6254679361979, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Newfemalecases", "text": "Newfemalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/145", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 63.00047302246094, "t": 448.50567626953125, "r": 309.92848714192706, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "--Number of maleswithskin cancerper 1ooo00", "text": "--Number of maleswithskin cancerper 1ooo00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/146", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 81.60463968912761, "t": 431.95424397786456, "r": 318.3849283854167, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Numberoffemaleswithskincancerper1oooo0", "text": "Numberoffemaleswithskincancerper1oooo0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/147", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/148", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 350.89479573567706, "r": 315.0023600260417, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Describe two trends shown inFigure 10.", "text": "Describe two trends shown inFigure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/149", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 325.4310506184896, "r": 535.2926025390625, "b": 299.1185506184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "text": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/150", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 207.44919840494788, "r": 121.77272542317708, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/151", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/152", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.6", "text": "05.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 506.1178792317708, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "Calculate the number of males aged 80 to 84 years with skin cancer in that year.", "text": "Calculate the number of males aged 80 to 84 years with skin cancer in that year.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 722.6649373372396, "r": 190.2698771158854, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Use Figure 10.", "text": "Use Figure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 682.7717997233073, "r": 312.0426025390625, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Giveyour answer to3significant figures.", "text": "Giveyour answer to3significant figures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 670.4643351236979, "r": 536.5610758463541, "b": 656.0348917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 122.19554646809895, "t": 516.8332926432292, "r": 403.3721516927083, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Number of males with skin cancer (3 significant figures) =", "text": "Number of males with skin cancer (3 significant figures) =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 210.14251708984375, "t": 451.05202229817706, "r": 374.6202392578125, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 73.57101949055989, "t": 23.26169840494788, "r": 77.79924011230469, "b": 19.01772054036462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 552.6282958984375, "t": 520.2284545898438, "r": 567.8498942057291, "b": 507.9209798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.06770833333333, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 271.02886962890625, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "This question is about the heart.", "text": "This question is about the heart.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 742.6115112304688, "r": 103.16855875651042, "b": 726.9088948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 742.1871236165365, "r": 312.46543375651044, "b": 729.0308736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Why is theheart described as an organ?", "text": "Why is theheart described as an organ?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 729.0308736165365, "r": 536.1382242838541, "b": 714.6014302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.62452697753906, "t": 612.7466023763021, "r": 103.16855875651042, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 611.4734090169271, "r": 485.3996175130208, "b": 599.1659545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Valves in the heart keep the blood flowing through the heart in one direction.", "text": "Valves in the heart keep the blood flowing through the heart in one direction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 585.5853068033855, "r": 397.45263671875, "b": 573.277852376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Figure 11 shows the heart with one of the valves labelled.", "text": "Figure 11 shows the heart with one of the valves labelled.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 26, "bbox": {"l": 298.93511962890625, "t": 560.9703776041667, "r": 350.5194091796875, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 11", "text": "Figure 11", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 386.4592692057292, "t": 487.55002848307294, "r": 415.6339925130208, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Valve", "text": "Valve", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 339.86049397786456, "r": 535.2926025390625, "b": 312.6991984049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Explain the effects on a person if the valve labelled in Figure 11 developed a leak. [4 marks]", "text": "Explain the effects on a person if the valve labelled in Figure 11 developed a leak. [4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 386.4592692057292, "t": 487.55002848307294, "r": 415.6339925130208, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Valve", "text": "Valve", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 548.4000651041666, "t": 790.5681660970052, "r": 586.8768717447916, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 349.2509358723958, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "The faulty valve is replaced during an operation.", "text": "The faulty valve is replaced during an operation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 723.0893351236979, "r": 200.8404337565104, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Biological valves:", "text": "Biological valves:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 116.27604166666667, "t": 703.1427612304688, "r": 294.7069091796875, "b": 689.9865112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7arefrom animals or human donors", "text": "\u00b7arefrom animals or human donors", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 115.8532206217448, "t": 683.6205851236979, "r": 328.53265380859375, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "\u00b7allow blood to flow through them normally", "text": "\u00b7allow blood to flow through them normally", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 117.5445048014323, "t": 663.6740112304688, "r": 415.211181640625, "b": 651.3665568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "wear out and stiffen over time, so may need to be replaced.", "text": "wear out and stiffen over time, so may need to be replaced.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 27, "bbox": {"l": 113.73910522460938, "t": 627.6004231770834, "r": 208.8740437825521, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Mechanical valves:", "text": "Mechanical valves:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 119.2357889811198, "t": 606.8050537109375, "r": 292.16998291015625, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "aremadefromsyntheticmaterials", "text": "aremadefromsyntheticmaterials", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 117.96732584635417, "t": 587.2828776041666, "r": 367.8551025390625, "b": 575.3998209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "may cause blood clots on the surface of the valve", "text": "may cause blood clots on the surface of the valve", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 117.5445048014323, "t": 567.7607014973958, "r": 455.3792317708333, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "require anti-clotting drugs to be taken for the rest of the patient's life", "text": "require anti-clotting drugs to be taken for the rest of the patient's life", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 116.27604166666667, "t": 549.0873209635417, "r": 353.9019775390625, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "\u00b7can last for a very long time in ideal conditions.", "text": "\u00b7can last for a very long time in ideal conditions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.43039957682292, "t": 503.6770426432292, "r": 457.4933675130208, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "A young woman enjoys extreme sports and would like to start a family.", "text": "A young woman enjoys extreme sports and would like to start a family.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 478.63771565755206, "r": 322.19032796223956, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "The woman needs a heart valve replacing.", "text": "The woman needs a heart valve replacing.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 439.16896565755206, "r": 496.3929850260417, "b": 413.28086344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "Describe the advantages and disadvantages for this young woman of having a biological heart valve insteadof a mechanical heartvalve.", "text": "Describe the advantages and disadvantages for this young woman of having a biological heart valve insteadof a mechanical heartvalve.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 484.553955078125, "t": 413.28086344401044, "r": 536.5610758463541, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 556.4337158203125, "t": 157.37058512369788, "r": 563.1988525390625, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 27, "bbox": {"l": 231.28361002604166, "t": 114.08225504557288, "r": 346.7139892578125, "b": 103.04799397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 556.4337158203125, "t": 157.37058512369788, "r": 563.1988525390625, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 219]}], "orig": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 245]}], "orig": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "text": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 189.42423502604166, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 350.5194091796875, "t": 40.23752848307288, "r": 520.4938151041666, "b": 30.47646077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "226G8464/B/1H", "text": "226G8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.4596252441406, "t": 396.157958984375, "r": 544.1646118164062, "b": 227.15399169921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 454.5336100260417, "t": 451.1320393880208, "r": 536.1382242838541, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 475.7469889322917, "r": 488.7821858723958, "b": 485.9324544270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 494.4203694661458, "r": 472.2921142578125, "b": 500.7862955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 467.21826171875, "t": 511.3961588541667, "r": 472.2921142578125, "b": 519.4596761067709, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 527.0987955729166, "r": 472.7149658203125, "b": 536.85986328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 544.9233805338541, "r": 472.7149658203125, "b": 553.4112955729166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 472.7149658203125, "b": 570.8114827473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 578.875, "r": 473.1377766927083, "b": 588.2117106119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.0369059244792, "t": 596.6995849609375, "r": 487.5137125651042, "b": 610.2802327473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 9, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 454.5336100260417, "t": 451.1320393880208, "r": 536.1382242838541, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 454.5336100260417, "t": 451.1320393880208, "r": 536.1382242838541, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 475.7469889322917, "r": 488.7821858723958, "b": 485.9324544270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 494.4203694661458, "r": 472.2921142578125, "b": 500.7862955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 467.21826171875, "t": 511.3961588541667, "r": 472.2921142578125, "b": 519.4596761067709, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 527.0987955729166, "r": 472.7149658203125, "b": 536.85986328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 544.9233805338541, "r": 472.7149658203125, "b": 553.4112955729166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 472.7149658203125, "b": 570.8114827473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 578.875, "r": 473.1377766927083, "b": 588.2117106119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.0369059244792, "t": 596.6995849609375, "r": 487.5137125651042, "b": 610.2802327473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.79020690917969, "t": 799.173755645752, "r": 169.33946228027344, "b": 751.7147903442383, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.60017776489258, "t": 53.42999267578125, "r": 260.07659912109375, "b": 17.52685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 499.9033508300781, "t": 546.5209045410156, "r": 543.2935180664062, "b": 492.9393005371094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.52507019042969, "t": 52.93896484375, "r": 99.53034210205078, "b": 16.421630859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.83540725708008, "t": 53.10052490234375, "r": 99.11125946044922, "b": 17.51763916015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 46.03716278076172, "t": 776.4842300415039, "r": 105.5737075805664, "b": 759.054817199707, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.68577194213867, "t": 53.19873046875, "r": 99.13436889648438, "b": 17.61859130859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 122.65338134765625, "t": 537.9430236816406, "r": 527.3243408203125, "b": 211.9937744140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/5"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.79792404174805, "t": 53.151611328125, "r": 99.16613006591797, "b": 17.473876953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 210.1001739501953, "t": 722.9609222412109, "r": 437.40350341796875, "b": 588.2078247070312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 543.9209594726562, "t": 301.45977783203125, "r": 575.7850341796875, "b": 260.12310791015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.72502517700195, "t": 53.22161865234375, "r": 99.1192626953125, "b": 17.5057373046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.864070892333984, "t": 53.17596435546875, "r": 99.15371704101562, "b": 17.64910888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 39.79059600830078, "t": 788.6095008850098, "r": 541.789794921875, "b": 75.71734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.723236083984375, "t": 53.26629638671875, "r": 99.15318298339844, "b": 17.52349853515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.75616455078125, "t": 53.192626953125, "r": 99.12259674072266, "b": 17.61572265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 211.35031127929688, "t": 577.80078125, "r": 437.13006591796875, "b": 333.9020690917969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 38.89862060546875, "t": 787.7944641113281, "r": 539.64013671875, "b": 74.93182373046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.67311096191406, "t": 53.34393310546875, "r": 99.1761245727539, "b": 17.4755859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.86758041381836, "t": 53.16552734375, "r": 99.29812622070312, "b": 17.9110107421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 543.5928955078125, "t": 182.55889892578125, "r": 575.81787109375, "b": 140.96905517578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.76656723022461, "t": 53.13525390625, "r": 99.1600341796875, "b": 17.290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 40.030799865722656, "t": 788.2958564758301, "r": 538.69287109375, "b": 76.6881103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.775657653808594, "t": 53.22589111328125, "r": 99.17627716064453, "b": 17.506103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 62.90594482421875, "t": 576.3164978027344, "r": 515.8779907226562, "b": 233.9420166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/7"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.7238655090332, "t": 53.290283203125, "r": 99.1736831665039, "b": 17.81878662109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.874149322509766, "t": 53.11767578125, "r": 99.29041290283203, "b": 17.4774169921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 543.7330932617188, "t": 168.60357666015625, "r": 575.3134765625, "b": 129.1944580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.810359954833984, "t": 53.197509765625, "r": 99.216064453125, "b": 17.51507568359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.746456146240234, "t": 53.1395263671875, "r": 99.22604370117188, "b": 17.85919189453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.6071891784668, "t": 53.246337890625, "r": 98.94551086425781, "b": 17.580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 162.3031463623047, "t": 607.6539764404297, "r": 486.8704833984375, "b": 263.14532470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 38.28224563598633, "t": 788.180477142334, "r": 583.4287109375, "b": 74.904052734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.81598663330078, "t": 53.3416748046875, "r": 99.18052673339844, "b": 17.67620849609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.47386169433594, "t": 53.084716796875, "r": 99.52220916748047, "b": 16.42510986328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.79328155517578, "t": 53.08135986328125, "r": 99.27262878417969, "b": 17.63385009765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/texts/42"}, {"$ref": "#/texts/43"}, {"$ref": "#/texts/44"}, {"$ref": "#/texts/45"}, {"$ref": "#/texts/46"}, {"$ref": "#/texts/47"}, {"$ref": "#/texts/48"}, {"$ref": "#/texts/49"}, {"$ref": "#/texts/50"}, {"$ref": "#/texts/51"}, {"$ref": "#/texts/52"}, {"$ref": "#/texts/53"}, {"$ref": "#/texts/54"}, {"$ref": "#/texts/55"}, {"$ref": "#/texts/56"}, {"$ref": "#/texts/57"}, {"$ref": "#/texts/58"}, {"$ref": "#/texts/59"}, {"$ref": "#/texts/60"}, {"$ref": "#/texts/61"}, {"$ref": "#/texts/62"}, {"$ref": "#/texts/63"}, {"$ref": "#/texts/64"}, {"$ref": "#/texts/65"}, {"$ref": "#/texts/66"}, {"$ref": "#/texts/67"}, {"$ref": "#/texts/68"}, {"$ref": "#/texts/69"}, {"$ref": "#/texts/70"}, {"$ref": "#/texts/71"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 52.177303314208984, "t": 618.5329437255859, "r": 527.7835083007812, "b": 317.54632568359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/74"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.62387466430664, "t": 53.17352294921875, "r": 99.01427459716797, "b": 17.2744140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.77910614013672, "t": 53.0966796875, "r": 99.09918975830078, "b": 17.35565185546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/76"}, {"$ref": "#/texts/77"}, {"$ref": "#/texts/78"}, {"$ref": "#/texts/79"}, {"$ref": "#/texts/80"}, {"$ref": "#/texts/81"}, {"$ref": "#/texts/82"}, {"$ref": "#/texts/83"}, {"$ref": "#/texts/84"}, {"$ref": "#/texts/85"}, {"$ref": "#/texts/86"}, {"$ref": "#/texts/87"}, {"$ref": "#/texts/88"}, {"$ref": "#/texts/89"}, {"$ref": "#/texts/90"}, {"$ref": "#/texts/91"}, {"$ref": "#/texts/92"}, {"$ref": "#/texts/93"}, {"$ref": "#/texts/94"}, {"$ref": "#/texts/95"}, {"$ref": "#/texts/96"}, {"$ref": "#/texts/97"}, {"$ref": "#/texts/98"}, {"$ref": "#/texts/99"}, {"$ref": "#/texts/100"}, {"$ref": "#/texts/101"}, {"$ref": "#/texts/102"}, {"$ref": "#/texts/103"}, {"$ref": "#/texts/104"}, {"$ref": "#/texts/105"}, {"$ref": "#/texts/106"}, {"$ref": "#/texts/107"}, {"$ref": "#/texts/108"}, {"$ref": "#/texts/109"}, {"$ref": "#/texts/110"}, {"$ref": "#/texts/111"}, {"$ref": "#/texts/112"}, {"$ref": "#/texts/113"}, {"$ref": "#/texts/114"}, {"$ref": "#/texts/115"}, {"$ref": "#/texts/116"}, {"$ref": "#/texts/117"}, {"$ref": "#/texts/118"}, {"$ref": "#/texts/119"}, {"$ref": "#/texts/120"}, {"$ref": "#/texts/121"}, {"$ref": "#/texts/122"}, {"$ref": "#/texts/123"}, {"$ref": "#/texts/124"}, {"$ref": "#/texts/125"}, {"$ref": "#/texts/126"}, {"$ref": "#/texts/127"}, {"$ref": "#/texts/128"}, {"$ref": "#/texts/129"}, {"$ref": "#/texts/130"}, {"$ref": "#/texts/131"}, {"$ref": "#/texts/132"}, {"$ref": "#/texts/133"}, {"$ref": "#/texts/134"}, {"$ref": "#/texts/135"}, {"$ref": "#/texts/136"}, {"$ref": "#/texts/137"}, {"$ref": "#/texts/138"}, {"$ref": "#/texts/139"}, {"$ref": "#/texts/140"}, {"$ref": "#/texts/141"}, {"$ref": "#/texts/142"}, {"$ref": "#/texts/143"}, {"$ref": "#/texts/144"}, {"$ref": "#/texts/145"}, {"$ref": "#/texts/146"}, {"$ref": "#/texts/147"}, {"$ref": "#/texts/148"}, {"$ref": "#/texts/149"}, {"$ref": "#/texts/150"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 39.65533447265625, "t": 788.0855979919434, "r": 539.0, "b": 75.42669677734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.760948181152344, "t": 53.21307373046875, "r": 99.20094299316406, "b": 17.48699951171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.79350280761719, "t": 53.09893798828125, "r": 99.17039489746094, "b": 17.39202880859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 543.257080078125, "t": 544.8421020507812, "r": 576.107666015625, "b": 503.1017761230469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 83.00977325439453, "t": 743.1391143798828, "r": 104.40795135498047, "b": 726.835205078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.74662780761719, "t": 53.166748046875, "r": 99.2194595336914, "b": 17.3209228515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 238.89454650878906, "t": 528.76025390625, "r": 415.30877685546875, "b": 366.0852355957031, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 45.50212860107422, "t": 776.1840591430664, "r": 105.26959991455078, "b": 758.967529296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.626678466796875, "t": 53.157470703125, "r": 99.11552429199219, "b": 17.59197998046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 543.0776977539062, "t": 182.75701904296875, "r": 575.8231201171875, "b": 141.1480712890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.510581970214844, "t": 53.04644775390625, "r": 99.4729995727539, "b": 16.531005859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.75505828857422, "t": 53.18896484375, "r": 99.31659698486328, "b": 17.0916748046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.75211715698242, "t": 53.1778564453125, "r": 99.30067443847656, "b": 17.100341796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.744197845458984, "t": 53.14459228515625, "r": 99.40373992919922, "b": 17.3238525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.74562454223633, "t": 53.2369384765625, "r": 99.2490005493164, "b": 17.05267333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 334.3735656738281, "t": 67.7763671875, "r": 539.0877685546875, "b": 32.14874267578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}, "2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}, "3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}, "4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}, "5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}, "6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}, "7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}, "8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}, "9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}, "10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}, "11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}, "12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}, "13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}, "14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}, "15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}, "16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}, "17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}, "18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}, "19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}, "20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}, "21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}, "22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}, "23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}, "24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}, "25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}, "26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}, "27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}, "28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}, "29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}, "30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}, "31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}, "32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}, "_failed_pages": []} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p1.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p1.json new file mode 100644 index 0000000..e1a81b0 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p1.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/14"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/22"}, {"$ref": "#/groups/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/28"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 36.785509745279946, "t": 789.7193756103516, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 628.8736165364584, "r": 120.08144124348958, "b": 614.4441731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 600.863525390625, "r": 155.59848022460938, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Candidatesignature", "text": "Candidatesignature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 166.16902669270834, "t": 587.2828776041666, "r": 296.82102457682294, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 545.0174967447916, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "GCSE H COMBINED SCIENCE: TRILOGY", "text": "GCSE H COMBINED SCIENCE: TRILOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 40.16808573404948, "t": 481.60850016276044, "r": 160.6723429361979, "b": 445.53489176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Higher Tier Biology Paper 1H", "text": "Higher Tier Biology Paper 1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 398.00262451171875, "r": 92.17519124348958, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 37.63115437825521, "t": 384.84637451171875, "r": 186.4644775390625, "b": 369.56817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 370.41697184244794, "r": 83.71875, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 357.68511962890625, "r": 155.1756591796875, "b": 347.07521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "\u00b7a scientific calculator.", "text": "\u00b7a scientific calculator.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 331.37261962890625, "r": 108.66524251302083, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 319.06512451171875, "r": 231.28361002604166, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 293.1770222981771, "r": 241.0085245768229, "b": 278.74761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 306.7576700846354, "r": 242.6998087565104, "b": 291.4794718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "\u00b7 Pencil should only be used for drawing.", "text": "Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 278.74761962890625, "r": 269.7604166666667, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 266.0157267252604, "r": 424.0904134114583, "b": 240.12762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 239.70322672526038, "r": 430.0099283854167, "b": 215.51271565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 214.23952229817712, "r": 356.4389241536458, "b": 201.08327229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "In all calculations,show clearly howyou work out your answer.", "text": "In all calculations,show clearly howyou work out your answer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 187.50262451171875, "r": 106.12831624348958, "b": 176.04396565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 173.92197672526038, "r": 245.23673502604166, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 The maximum mark for this paper is 70.", "text": "The maximum mark for this paper is 70.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 42.282196044921875, "t": 160.34136962890625, "r": 281.59942626953125, "b": 149.30710856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Themarksforquestionsareshowninbrackets.", "text": "Themarksforquestionsareshowninbrackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 47.77887980143229, "t": 147.60951741536462, "r": 324.304443359375, "b": 135.30206298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "You are expected to use a calculator where appropriate.", "text": "You are expected to use a calculator where appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 135.30206298828125, "r": 475.6747233072917, "b": 122.14581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "\u00b7You are reminded of the need for good English and clear presentation in your answers.", "text": "\u00b7You are reminded of the need for good English and clear presentation in your answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 238.8944091796875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "JUN228464B1H01", "text": "JUN228464B1H01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 325.5729166666667, "t": 428.55910237630206, "r": 539.5208333333334, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 15 minutes", "text": "Time allowed: 1 hour 15 minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 315.42519124348956, "t": 20.71531168619788, "r": 367.4322916666667, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E14", "text": "IB/M/Jun22/E14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 447.7684733072917, "t": 33.44716389973962, "r": 545.4403076171875, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "8464/B/1H", "text": "8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.79020690917969, "t": 799.173755645752, "r": 169.33946228027344, "b": 751.7147903442383, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.60017776489258, "t": 53.42999267578125, "r": 260.07659912109375, "b": 17.52685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 499.9033508300781, "t": 546.5209045410156, "r": 543.2935180664062, "b": 492.9393005371094, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.4596252441406, "t": 396.157958984375, "r": 544.1646118164062, "b": 227.15399169921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 454.5336100260417, "t": 451.1320393880208, "r": 536.1382242838541, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 475.7469889322917, "r": 488.7821858723958, "b": 485.9324544270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 494.4203694661458, "r": 472.2921142578125, "b": 500.7862955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 467.21826171875, "t": 511.3961588541667, "r": 472.2921142578125, "b": 519.4596761067709, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 527.0987955729166, "r": 472.7149658203125, "b": 536.85986328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 544.9233805338541, "r": 472.7149658203125, "b": 553.4112955729166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 472.7149658203125, "b": 570.8114827473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 578.875, "r": 473.1377766927083, "b": 588.2117106119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.0369059244792, "t": 596.6995849609375, "r": 487.5137125651042, "b": 610.2802327473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 9, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 454.5336100260417, "t": 451.1320393880208, "r": 536.1382242838541, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 454.5336100260417, "t": 451.1320393880208, "r": 536.1382242838541, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 475.7469889322917, "r": 488.7821858723958, "b": 485.9324544270833, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 475.3225911458333, "r": 530.6415608723959, "b": 486.3568522135417, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 494.4203694661458, "r": 472.2921142578125, "b": 500.7862955729167, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 467.21826171875, "t": 511.3961588541667, "r": 472.2921142578125, "b": 519.4596761067709, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 527.0987955729166, "r": 472.7149658203125, "b": 536.85986328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 544.9233805338541, "r": 472.7149658203125, "b": 553.4112955729166, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 561.0504150390625, "r": 472.7149658203125, "b": 570.8114827473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 578.875, "r": 473.1377766927083, "b": 588.2117106119791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.0369059244792, "t": 596.6995849609375, "r": 487.5137125651042, "b": 610.2802327473959, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p10.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p10.json new file mode 100644 index 0000000..b311f30 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p10.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 428.3186442057292, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "Cell division is important in the growth of multicellular organisms.", "text": "Cell division is important in the growth of multicellular organisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.47016906738281, "t": 736.6699829101562, "r": 101.47727457682292, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.6", "text": "02.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 735.8211873372396, "r": 500.1983642578125, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Figure 5 shows the mean height of boys and of girls from birth to age 18 years.", "text": "Figure 5 shows the mean height of boys and of girls from birth to age 18 years.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 10, "bbox": {"l": 285.82763671875, "t": 707.38671875, "r": 331.06960042317706, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 658.5812784830729, "r": 153.90719604492188, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 133.61173502604166, "t": 629.7223917643229, "r": 153.484375, "b": 618.2637329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "180", "text": "180", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 602.13671875, "r": 154.33001708984375, "b": 589.8292643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "160", "text": "160", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 450.3053792317708, "t": 586.8584798177084, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 573.7022298177083, "r": 154.33001708984375, "b": 561.394775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "140", "text": "140", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 449.882568359375, "t": 565.214335123698, "r": 476.0975341796875, "b": 549.51171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Boys", "text": "Boys", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 89.6382548014323, "t": 543.1457926432292, "r": 120.50426228841145, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Mean", "text": "Mean", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 545.2677612304688, "r": 154.33001708984375, "b": 532.9603068033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 449.882568359375, "t": 547.8141276041667, "r": 474.8290608723958, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Girls", "text": "Girls", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 89.6382548014323, "t": 532.1115112304688, "r": 122.61836751302083, "b": 517.2576904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "height", "text": "height", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 89.6382548014323, "t": 519.379659016927, "r": 118.39014689127605, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "in cm", "text": "in cm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 132.7660929361979, "t": 516.8332926432292, "r": 154.33001708984375, "b": 504.52581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 487.97442626953125, "r": 153.90719604492188, "b": 476.09136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 459.53993733723956, "r": 155.1756591796875, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 431.52984619140625, "r": 154.33001708984375, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 138.68559773763022, "t": 403.09539794921875, "r": 153.90719604492188, "b": 390.78794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 146.29639689127603, "t": 372.53892008463544, "r": 153.06155395507812, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 153.90719604492188, "t": 364.05104573567706, "r": 160.6723429361979, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 181.390625, "t": 364.47544352213544, "r": 189.8470662434896, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 208.45123291015625, "t": 364.47544352213544, "r": 218.1761271158854, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 238.4715779622396, "t": 364.05104573567706, "r": 245.23673502604166, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 266.8006591796875, "t": 364.05104573567706, "r": 273.98862711588544, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 292.16998291015625, "t": 364.47544352213544, "r": 306.12310791015625, "b": 354.28993733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 309.50567626953125, "t": 364.89980061848956, "r": 419.4393717447917, "b": 353.44114176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "\u00a512141618", "text": "\u00a512141618", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 253.69317626953125, "t": 352.16794840494794, "r": 315.84800211588544, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 38.89862060546875, "t": 787.7944641113281, "r": 539.64013671875, "b": 74.93182373046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.67311096191406, "t": 53.34393310546875, "r": 99.1761245727539, "b": 17.4755859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p11.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p11.json new file mode 100644 index 0000000..627c9e7 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p11.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 282.445068359375, "t": 812.2123209635416, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 115.8532206217448, "t": 774.0167541503906, "r": 366.5866292317708, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Compare the growth of boys with the growth of girls", "text": "Compare the growth of boys with the growth of girls", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 308.23720296223956, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Use data from Figure 5 in your answer.", "text": "Use data from Figure 5 in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 484.1311442057292, "t": 736.2455851236979, "r": 535.7154134114584, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 48.62452697753906, "t": 218.90789794921875, "r": 103.5913798014323, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.7", "text": "02.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 113.73910522460938, "t": 218.05910237630212, "r": 491.741943359375, "b": 203.20526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 79]}], "orig": "Give one way that cell division by mitosis is important in fully grown animals.", "text": "Give one way that cell division by mitosis is important in fully grown animals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 489.6278483072917, "t": 204.47845458984375, "r": 536.1382242838541, "b": 190.04901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 552.6282958984375, "t": 158.21938069661462, "r": 567.8498942057291, "b": 145.48752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.86758041381836, "t": 53.16552734375, "r": 99.29812622070312, "b": 17.9110107421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 543.5928955078125, "t": 182.55889892578125, "r": 575.81787109375, "b": 140.96905517578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p12.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p12.json new file mode 100644 index 0000000..4927e1f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p12.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 79.4905293782552, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 319.6534016927083, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Amylase is an enzyme that digests starch.", "text": "Amylase is an enzyme that digests starch.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 50.31581115722656, "t": 744.7334899902344, "r": 87.52414957682292, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "03.", "text": "03.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 490.0506591796875, "t": 732.8504231770834, "r": 536.1382242838541, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 717.996592203776, "r": 201.68607584635416, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (v) one box.", "text": "Tick (v) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 677.6790568033854, "r": 308.23720296223956, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "Liver, small intestine and large intestine", "text": "Liver, small intestine and large intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 640.332275390625, "r": 282.86789957682294, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Salivary glands, stomach and liver", "text": "Salivary glands, stomach and liver", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 604.6830851236979, "r": 335.72064208984375, "b": 590.2536417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Salivary glands, pancreas and small intestine", "text": "Salivary glands, pancreas and small intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 566.9119262695312, "r": 302.7405192057292, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Stomach, pancreas and large intestine", "text": "Stomach, pancreas and large intestine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 464.20827229817706, "r": 430.4327392578125, "b": 450.62762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "A student investigated the effect of pH on the activity of amylase.", "text": "A student investigated the effect of pH on the activity of amylase.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 437.04697672526044, "r": 235.5118408203125, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 411.58327229817706, "r": 290.4786783854167, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "1. Prepare amylase solution at pH 5", "text": "Prepare amylase solution at pH 5", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 385.69517008463544, "r": 386.0364583333333, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "2. Mix the amylase solution with starch in a boiling tube.", "text": "Mix the amylase solution with starch in a boiling tube.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 360.23146565755206, "r": 524.7220458984375, "b": 335.61655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "3. Remove a drop of the amylase-starch mixture every 30 seconds and test it for the presence of starch.", "text": "Remove a drop of the amylase-starch mixture every 30 seconds and test it for the presence of starch.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "3."}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 322.0359090169271, "r": 394.9156901041667, "b": 308.8796590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "4. Record the time when all the starch has been digested.", "text": "Record the time when all the starch has been digested.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "4."}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 295.29901123046875, "r": 509.9232991536458, "b": 268.98651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "5. Repeat steps 1 to 4 using amylase solution prepared at pH 6, then at pH 7 and then at pH 8", "text": "Repeat steps 1 to 4 using amylase solution prepared at pH 6, then at pH 7 and then at pH 8", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "5."}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 48.62452697753906, "t": 214.23952229817712, "r": 103.5913798014323, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 212.96636962890625, "r": 388.5733642578125, "b": 200.65887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "What was the independent variable in this investigation?", "text": "What was the independent variable in this investigation?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 490.4734700520833, "t": 200.23447672526038, "r": 536.1382242838541, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.76656723022461, "t": 53.13525390625, "r": 99.1600341796875, "b": 17.290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p13.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p13.json new file mode 100644 index 0000000..9b2c142 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p13.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/22"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.47727457682292, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 490.0506591796875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Describe how the student would know when all the starch had been digested.", "text": "Describe how the student would know when all the starch had been digested.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.4734700520833, "t": 760.8605041503906, "r": 535.2926025390625, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 50.31581115722656, "t": 618.6881306966146, "r": 102.74573771158855, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 618.6881306966146, "r": 293.86126708984375, "b": 606.3806762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Figure6shows the student'sresults.", "text": "Figure6shows the student'sresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 268.06911214192706, "t": 591.5268351236979, "r": 313.3110758463542, "b": 577.097391764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 128.11505126953125, "t": 539.7506306966145, "r": 143.33663940429688, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "10-", "text": "10-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 134.03455607096353, "t": 482.45729573567706, "r": 142.49099731445312, "b": 472.27178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.69175720214844, "t": 431.95424397786456, "r": 120.92708333333333, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Time taken", "text": "Time taken", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 134.88020833333334, "t": 425.16392008463544, "r": 142.06817626953125, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 63.84611511230469, "t": 418.79799397786456, "r": 122.61836751302083, "b": 404.79294840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "to digest all", "text": "to digest all", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.26893615722656, "t": 406.91493733723956, "r": 115.007568359375, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "the starch", "text": "the starch", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 64.69175720214844, "t": 393.75868733723956, "r": 116.27604166666667, "b": 382.30002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "in minutes", "text": "in minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 142.913818359375, "t": 245.22039794921875, "r": 149.6789754231771, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 312.46543375651044, "t": 246.49355061848962, "r": 320.921875, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 426.6273600260417, "t": 245.64479573567712, "r": 433.8153483072917, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 321.76751708984375, "t": 232.91290283203125, "r": 339.5260416666667, "b": 219.33229573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "pH", "text": "pH", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 191.74660237630212, "r": 328.53265380859375, "b": 178.59035237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "What was the optimum pH forthe amylase?", "text": "What was the optimum pH forthe amylase?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 165.43410237630212, "r": 184.35038248697916, "b": 152.70220947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 6.", "text": "Use Figure 6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.4734700520833, "t": 153.55100504557288, "r": 535.7154134114584, "b": 138.27276611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 315.84800211588544, "t": 127.66290283203125, "r": 388.9962158203125, "b": 113.65785725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Optimum pH =", "text": "Optimum pH =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 13, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 40.030799865722656, "t": 788.2958564758301, "r": 538.69287109375, "b": 76.6881103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.775657653808594, "t": 53.22589111328125, "r": 99.17627716064453, "b": 17.506103515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p14.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p14.json new file mode 100644 index 0000000..5a06c3c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p14.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 300.62640380859375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Ascientist did a different investigation.", "text": "Ascientist did a different investigation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 234.66617838541666, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "This is the method used.", "text": "This is the method used.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 722.2405497233073, "r": 346.7139892578125, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "1. Prepare amylase solution at the optimum pH.", "text": "Prepare amylase solution at the optimum pH.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "1."}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 696.7768351236979, "r": 386.0364583333333, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "2. Mix the amylase solution with starch in a boiling tube.", "text": "Mix the amylase solution with starch in a boiling tube.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "2."}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 670.4643351236979, "r": 458.3389892578125, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "3. Measure the concentration of sugar every 10 seconds for 2 minutes.", "text": "Measure the concentration of sugar every 10 seconds for 2 minutes.", "formatting": null, "hyperlink": null, "enumerated": true, "marker": "3."}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 115.43039957682292, "t": 628.8736165364584, "r": 299.3579508463542, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Figure 7 shows the scientist's results.", "text": "Figure 7 shows the scientist's results.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 268.491943359375, "t": 603.8342895507812, "r": 313.73388671875, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 66.80586751302083, "t": 424.31512451171875, "r": 136.57149251302084, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Concentration", "text": "Concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 65.96022542317708, "t": 412.85646565755206, "r": 120.08144124348958, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "of sugar in", "text": "of sugar in", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 66.80586751302083, "t": 399.70021565755206, "r": 134.45738728841147, "b": 388.24155680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "arbitraryunits", "text": "arbitraryunits", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 134.03455607096353, "t": 380.60243733723956, "r": 142.49099731445312, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 195.34375, "t": 259.22540283203125, "r": 210.14251708984375, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 252.00189208984375, "t": 259.22540283203125, "r": 266.37782796223956, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 308.6600341796875, "t": 259.22540283203125, "r": 323.45880126953125, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 365.3181559244792, "t": 259.22540283203125, "r": 380.116943359375, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 419.4393717447917, "t": 259.6498006184896, "r": 440.1576741536458, "b": 246.49355061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 476.0975341796875, "t": 259.22540283203125, "r": 496.8157958984375, "b": 246.49355061848962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 290.0558675130208, "t": 243.94720458984375, "r": 370.3920491536458, "b": 232.48854573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Time inseconds", "text": "Time inseconds", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.31581115722656, "t": 189.62461344401038, "r": 101.47727457682292, "b": 176.04396565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.3162841796875, "t": 190.47340901692712, "r": 435.5066324869792, "b": 177.31715901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "How much time did it take for the amylase to digest all the starch?", "text": "How much time did it take for the amylase to digest all the starch?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 165.00970458984375, "r": 184.35038248697916, "b": 152.27781168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 7.", "text": "Use Figure 7.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 195.34375, "t": 129.36049397786462, "r": 340.37168375651044, "b": 116.62864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time to digest all the starch =", "text": "Time to digest all the starch =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.8962809244792, "t": 152.27781168619788, "r": 535.7154134114584, "b": 139.12156168619788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 488.7821858723958, "t": 128.51169840494788, "r": 532.3328450520834, "b": 117.47743733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}, {"page_no": 14, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [8, 33]}], "orig": "seconds Donotwrite outsidethe box", "text": "seconds Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 62.90594482421875, "t": 576.3164978027344, "r": 515.8779907226562, "b": 233.9420166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/7"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.7238655090332, "t": 53.290283203125, "r": 99.1736831665039, "b": 17.81878662109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p15.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p15.json new file mode 100644 index 0000000..cc14ea5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p15.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/11"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 47.77887980143229, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.6", "text": "03.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 432.1240234375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Determine the rate of sugar production per minute at 40 seconds.", "text": "Determine the rate of sugar production per minute at 40 seconds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 761.7092946370443, "r": 536.1382242838541, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 227.0553995768229, "t": 558.4240112304688, "r": 263.41807047526044, "b": 544.8433634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Rate =", "text": "Rate =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 410.1372884114583, "t": 557.9996134440105, "r": 532.7556559244791, "b": 544.418965657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "arbitraryunitsper minute", "text": "arbitraryunitsper minute", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 478.63771565755206, "r": 105.2826639811198, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.7", "text": "03.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.007568359375, "t": 476.94012451171875, "r": 516.265625, "b": 450.62762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Explain how the structure of enzyme molecules is related to the effect of pH on the activity of amylase.", "text": "Explain how the structure of enzyme molecules is related to the effect of pH on the activity of amylase.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 450.62762451171875, "r": 535.7154134114584, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 552.2054850260416, "t": 145.91192626953125, "r": 568.272705078125, "b": 131.90688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 552.2054850260416, "t": 145.91192626953125, "r": 568.272705078125, "b": 131.90688069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.874149322509766, "t": 53.11767578125, "r": 99.29041290283203, "b": 17.4774169921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 543.7330932617188, "t": 168.60357666015625, "r": 575.3134765625, "b": 129.1944580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p16.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p16.json new file mode 100644 index 0000000..fbb60fb --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p16.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 399.1439208984375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Photosynthesis is an important chemical reaction in plants.", "text": "Photosynthesis is an important chemical reaction in plants.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 745.1578877766927, "r": 88.79261271158855, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04].", "text": "04].", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 744.7334899902344, "r": 309.0828450520833, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Why is light needed for photosynthesis?", "text": "Why is light needed for photosynthesis?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.4734700520833, "t": 732.426035563151, "r": 536.1382242838541, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 603.4098917643229, "r": 313.73388671875, "b": 587.2828776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "04.2 What is the equation for photosynthesis?", "text": "04.2 What is the equation for photosynthesis?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.0506591796875, "t": 589.4048665364584, "r": 536.1382242838541, "b": 574.551025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 574.9754231770833, "r": 200.8404337565104, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 115.43039957682292, "t": 534.2334798177083, "r": 284.55918375651044, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "C6H12O6+ CO2\u2192 6O2 + 6H2O", "text": "C6H12O6+ CO2\u2192 6O2 + 6H2O", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 115.007568359375, "t": 498.15989176432294, "r": 257.92138671875, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "O+ OH\u2190O\u00b2H +\u00b2O", "text": "O+ OH\u2190O\u00b2H +\u00b2O", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 461.23752848307294, "r": 293.015625, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "6CO2 + 6H2O \u2192 CH12O6 + 6O2", "text": "6CO2 + 6H2O \u2192 CH12O6 + 6O2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 16, "bbox": {"l": 114.16192626953125, "t": 423.89072672526044, "r": 293.015625, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "6O2 + 6H2O \u2192 CH12O6 + 6CO2", "text": "6O2 + 6H2O \u2192 CH12O6 + 6CO2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.810359954833984, "t": 53.197509765625, "r": 99.216064453125, "b": 17.51507568359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p17.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p17.json new file mode 100644 index 0000000..0e11278 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p17.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/9"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 284.1363525390625, "t": 810.5147399902344, "r": 295.1297200520833, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 456.2248942057292, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "A student investigated the effect of differentcoloursof light on therate of photosynthesis at room temperature.", "text": "A student investigated the effect of differentcoloursof light on therate of photosynthesis at room temperature.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 737.0943806966146, "r": 298.51230875651044, "b": 723.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "The student used pondweed in water.", "text": "The student used pondweed in water.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.43039957682292, "t": 710.7818806966146, "r": 529.3730875651041, "b": 698.4744160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "A piece of pondweed was placed in red light, then in blue light and then in green light.", "text": "A piece of pondweed was placed in red light, then in blue light and then in green light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 115.007568359375, "t": 686.5913492838541, "r": 325.5729166666667, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Eachcolour of lightwasthesame intensity.", "text": "Eachcolour of lightwasthesame intensity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 646.6982014973959, "r": 531.9100341796875, "b": 621.6588948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Describehowthestudentshouldmakeaccuratemeasurementstoobtainvalidresults for the rate of photosynthesis.", "text": "Describehowthestudentshouldmakeaccuratemeasurementstoobtainvalidresults for the rate of photosynthesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.553955078125, "t": 621.6588948567709, "r": 535.7154134114584, "b": 608.5026448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 187.73295084635416, "t": 350.47039794921875, "r": 390.6875, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 4 continues on the next page", "text": "Question 4 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.746456146240234, "t": 53.1395263671875, "r": 99.22604370117188, "b": 17.85919189453125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p18.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p18.json new file mode 100644 index 0000000..3f0c43f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p18.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 499.3527425130208, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "A scientist investigated the effect of different wavelengths of light on the rate of photosynthesis.", "text": "A scientist investigated the effect of different wavelengths of light on the rate of photosynthesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 736.6699829101562, "r": 393.6472574869792, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "The wavelength of light determines the colour of the light.", "text": "The wavelength of light determines the colour of the light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.007568359375, "t": 699.3232116699219, "r": 294.7069091796875, "b": 685.3181660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Figure8 shows thestudent'sresults.", "text": "Figure8 shows thestudent'sresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.43039957682292, "t": 673.4350992838541, "r": 298.51230875651044, "b": 660.7032470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Figure9showsthescientist'sresults.", "text": "Figure9showsthescientist'sresults.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 302.7405192057292, "t": 634.3907470703125, "r": 347.9824625651042, "b": 621.2344970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 241.43133544921875, "t": 583.4633382161458, "r": 255.80729166666666, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 248.19649251302084, "t": 525.3211873372395, "r": 254.9616495768229, "b": 516.8332926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 162.78645833333334, "t": 471.84739176432294, "r": 201.68607584635416, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Rate of", "text": "Rate of", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 248.19649251302084, "t": 468.87664794921875, "r": 255.38446044921875, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 162.3636271158854, "t": 459.11553955078125, "r": 238.04876708984375, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "photosynthesis", "text": "photosynthesis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 163.20927937825522, "t": 447.23248291015625, "r": 241.85416666666666, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "in arbitrary units", "text": "in arbitrary units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 249.0421346028646, "t": 354.28993733723956, "r": 253.69317626953125, "b": 347.92401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 303.58616129557294, "t": 290.63067626953125, "r": 327.2642008463542, "b": 277.8988240559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Red", "text": "Red", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 359.8214925130208, "t": 290.63067626953125, "r": 384.7679850260417, "b": 278.3232218424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Blue", "text": "Blue", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 411.8285725911458, "t": 290.63067626953125, "r": 445.6543375651042, "b": 277.47442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Green", "text": "Green", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 337.83473714192706, "t": 275.7768351236979, "r": 407.1775309244792, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Colour of light", "text": "Colour of light", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.6071891784668, "t": 53.246337890625, "r": 98.94551086425781, "b": 17.580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 162.3031463623047, "t": 607.6539764404297, "r": 486.8704833984375, "b": 263.14532470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p19.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p19.json new file mode 100644 index 0000000..5751252 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p19.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/32"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/33"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 779.5338948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Donotwrite", "text": "Donotwrite", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 547.1316324869791, "t": 780.3826853434244, "r": 583.4943033854166, "b": 771.8947804768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "outsidethe", "text": "outsidethe", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 19, "bbox": {"l": 268.491943359375, "t": 775.2899424235026, "r": 313.73388671875, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 558.9706217447916, "t": 772.3191782633463, "r": 572.078125, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "box", "text": "box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 723.9381306966146, "r": 153.484375, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.83995564778647, "t": 695.503651936849, "r": 153.484375, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 667.0691731770834, "r": 153.484375, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 56.235321044921875, "t": 639.4834798177084, "r": 94.71211751302083, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Rate of", "text": "Rate of", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.83995564778647, "t": 638.6347045898438, "r": 153.484375, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 57.080963134765625, "t": 626.3272298177084, "r": 131.49762980143228, "b": 614.8685709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "photosynthesis", "text": "photosynthesis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 54.54403177897135, "t": 619.5369262695312, "r": 153.90719604492188, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "in arbitrary units 40-", "text": "in arbitrary units 40-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 581.7657470703125, "r": 153.484375, "b": 569.4582926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 137.4171346028646, "t": 552.9068806966145, "r": 153.484375, "b": 541.0238037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 138.26277669270834, "t": 524.8967895507812, "r": 153.06155395507812, "b": 513.0137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 145.45075480143228, "t": 495.18914794921875, "r": 152.21590169270834, "b": 486.70123291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 144.60511271158853, "t": 487.12563069661456, "r": 166.59184773763022, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 258.76702880859375, "t": 487.12563069661456, "r": 280.33095296223956, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "500", "text": "500", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 371.6604817708333, "t": 487.12563069661456, "r": 392.8015950520833, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.976806640625, "t": 487.12563069661456, "r": 506.1178792317708, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "700", "text": "700", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 278.63966878255206, "t": 471.42299397786456, "r": 401.258056640625, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Wavelengthoflightinnm", "text": "Wavelengthoflightinnm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 48.201700846354164, "t": 406.06614176432294, "r": 102.74573771158855, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 404.36855061848956, "r": 442.2717692057292, "b": 391.21230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "Why are the results for the two investigations presented differently?", "text": "Why are the results for the two investigations presented differently?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.553955078125, "t": 391.21230061848956, "r": 535.7154134114584, "b": 378.05605061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 50.31581115722656, "t": 195.99053955078125, "r": 101.054443359375, "b": 182.83428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 195.99053955078125, "r": 344.1770833333333, "b": 182.83428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Suggest the range in wavelength of green light.", "text": "Suggest the range in wavelength of green light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 169.25364176432288, "r": 251.15625, "b": 156.52178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Use Figure 8 and Figure 9.", "text": "Use Figure 8 and Figure 9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 490.8962809244792, "t": 156.52178955078125, "r": 535.7154134114584, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 128.53787231445312, "t": 121.72141520182288, "r": 334.45216878255206, "b": 106.86757405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "Range in wavelength of green light = from", "text": "Range in wavelength of green light = from", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 409.7144775390625, "t": 120.44822184244788, "r": 439.7348225911458, "b": 108.14076741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "nm to", "text": "nm to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 514.9971516927084, "t": 118.75063069661462, "r": 532.7556559244791, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "nm", "text": "nm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 556.4337158203125, "t": 125.54091389973962, "r": 564.0444742838541, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 38.28224563598633, "t": 788.180477142334, "r": 583.4287109375, "b": 74.904052734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.81598663330078, "t": 53.3416748046875, "r": 99.18052673339844, "b": 17.67620849609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p2.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p2.json new file mode 100644 index 0000000..6f4d8e3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p2.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 183.92755126953125, "t": 440.44215901692706, "r": 394.070068359375, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 544.171875, "t": 790.1437733968099, "r": 583.9171142578125, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.52507019042969, "t": 52.93896484375, "r": 99.53034210205078, "b": 16.421630859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p20.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p20.json new file mode 100644 index 0000000..5df0d74 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p20.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 58.34943135579427, "t": 26.23248291015625, "r": 80.75899251302083, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 184.35038248697916, "t": 440.44215901692706, "r": 394.070068359375, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.47386169433594, "t": 53.084716796875, "r": 99.52220916748047, "b": 16.42510986328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p21.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p21.json new file mode 100644 index 0000000..d1a0be4 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p21.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 266.8006591796875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "This question is about tumours.", "text": "This question is about tumours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 50.31581115722656, "t": 744.309092203776, "r": 88.36979166666667, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 745.1578877766927, "r": 454.9564208984375, "b": 718.8453877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 86]}], "orig": "Describe the similarities and differences between benign tumours and malignanttumours.", "text": "Describe the similarities and differences between benign tumours and malignanttumours.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 718.8453877766927, "r": 536.5610758463541, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 187.73295084635416, "t": 240.12762451171875, "r": 390.6875, "b": 226.12261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question5continuesonthenextpage", "text": "Question5continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.79328155517578, "t": 53.08135986328125, "r": 99.27262878417969, "b": 17.63385009765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p22.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p22.json new file mode 100644 index 0000000..af24860 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p22.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/75"}, {"$ref": "#/texts/76"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/72"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/73"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 499.7755533854167, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 10 shows data about skin cancer in males and females for different age groups in the UK.", "text": "Figure 10 shows data about skin cancer in males and females for different age groups in the UK.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 729.8796590169271, "r": 158.9810587565104, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "It shows:", "text": "It shows:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 710.3574829101562, "r": 366.5866292317708, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "\u00b7 the number of new cases of skin cancer in 1 year", "text": "the number of new cases of skin cancer in 1 year", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 265.5321858723958, "t": 646.2738037109375, "r": 316.6936442057292, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 87.9469706217448, "t": 600.4391276041666, "r": 113.3162841796875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1200", "text": "1200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.9161783854167, "t": 600.4391276041666, "r": 477.3660074869792, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 88.36979166666667, "t": 575.82421875, "r": 112.89346313476562, "b": 565.214335123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.4933675130208, "t": 575.82421875, "r": 477.3660074869792, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 475.2518717447917, "t": 561.8191731770833, "r": 513.3058675130209, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Number", "text": "Number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.6983896891276, "t": 557.1508178710938, "r": 112.04782104492188, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Number 800", "text": "Number 800", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.4933675130208, "t": 552.4824829101562, "r": 518.3797200520834, "b": 537.628641764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "80of people", "text": "80of people", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.6983896891276, "t": 543.9945678710938, "r": 84.98721313476562, "b": 532.535909016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "ofnew", "text": "ofnew", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 475.2518717447917, "t": 539.3262329101562, "r": 515.8427734375, "b": 527.8675537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "with skin", "text": "with skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.27556864420573, "t": 532.1115112304688, "r": 81.60463968912761, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "cases", "text": "cases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 93.4436543782552, "t": 527.4431762695312, "r": 113.73910522460938, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "600-", "text": "600-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.070556640625, "t": 527.8675537109375, "r": 525.5677083333334, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "60cancerper", "text": "60cancerper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 53.6983896891276, "t": 521.5016276041667, "r": 84.56439208984375, "b": 510.8917643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "of skin", "text": "of skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 475.6747233072917, "t": 517.2576904296875, "r": 512.8830159505209, "b": 505.79901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "100000", "text": "100000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 54.12121073404948, "t": 508.769775390625, "r": 85.4100341796875, "b": 499.85748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "cancer", "text": "cancer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 93.4436543782552, "t": 504.1014404296875, "r": 112.89346313476562, "b": 491.79396565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.070556640625, "t": 504.52581787109375, "r": 524.2992350260416, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "40population", "text": "40population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 93.86647542317708, "t": 479.06211344401044, "r": 113.3162841796875, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 457.4933675130208, "t": 478.63771565755206, "r": 471.4464925130208, "b": 468.02785237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 106.12831624348958, "t": 451.90081787109375, "r": 111.625, "b": 444.68609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 459.1846516927083, "t": 453.17401123046875, "r": 464.6813151041667, "b": 446.38368733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 122.61836751302083, "t": 445.53489176432294, "r": 135.30302937825522, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 145.87357584635416, "t": 445.95928955078125, "r": 160.24952189127603, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 169.97442626953125, "t": 445.95928955078125, "r": 184.35038248697916, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 194.49810791015625, "t": 445.53489176432294, "r": 207.1827596028646, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 218.59895833333334, "t": 445.53489176432294, "r": 231.7064412434896, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 243.12261962890625, "t": 445.53489176432294, "r": 256.2301025390625, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 266.8006591796875, "t": 445.95928955078125, "r": 281.1765950520833, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "45", "text": "45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 290.90150960286456, "t": 445.95928955078125, "r": 304.4318033854167, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 315.42519124348956, "t": 445.53489176432294, "r": 328.53265380859375, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "55", "text": "55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 339.5260416666667, "t": 445.53489176432294, "r": 352.6335042317708, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 364.0497233072917, "t": 445.53489176432294, "r": 377.1571858723958, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "65", "text": "65", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 387.7277425130208, "t": 445.53489176432294, "r": 400.835205078125, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 412.2514241536458, "t": 445.53489176432294, "r": 425.35888671875, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "75", "text": "75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 435.929443359375, "t": 445.11049397786456, "r": 449.4597574869792, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 122.61836751302083, "t": 434.07623291015625, "r": 134.45738728841147, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 146.7192179361979, "t": 434.50063069661456, "r": 158.9810587565104, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 170.820068359375, "t": 434.07623291015625, "r": 183.0819091796875, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 195.76656087239584, "t": 433.65183512369794, "r": 205.9142862955729, "b": 423.89072672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 219.02176920572916, "t": 434.07623291015625, "r": 230.86079915364584, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 243.54545084635416, "t": 434.07623291015625, "r": 255.38446044921875, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 268.06911214192706, "t": 434.07623291015625, "r": 279.90814208984375, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.7471516927083, "t": 434.07623291015625, "r": 303.58616129557294, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 315.84800211588544, "t": 434.07623291015625, "r": 327.2642008463542, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 339.9488525390625, "t": 434.07623291015625, "r": 351.7878824869792, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 364.4725341796875, "t": 434.50063069661456, "r": 376.3115234375, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 388.5733642578125, "t": 434.07623291015625, "r": 399.9895833333333, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 412.6742350260417, "t": 434.07623291015625, "r": 424.0904134114583, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 437.1979166666667, "t": 434.07623291015625, "r": 448.6140950520833, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 122.19554646809895, "t": 423.46636962890625, "r": 135.30302937825522, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 146.29639689127603, "t": 423.46636962890625, "r": 159.82670084635416, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 170.39724731445312, "t": 423.46636962890625, "r": 183.92755126953125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 194.07527669270834, "t": 423.04197184244794, "r": 207.6055908203125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 218.1761271158854, "t": 423.46636962890625, "r": 231.7064412434896, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 242.6998087565104, "t": 423.46636962890625, "r": 256.2301025390625, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "44", "text": "44", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 267.2234700520833, "t": 423.46636962890625, "r": 280.7537841796875, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "49", "text": "49", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.32432047526044, "t": 423.46636962890625, "r": 304.4318033854167, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "54", "text": "54", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 315.42519124348956, "t": 423.04197184244794, "r": 328.53265380859375, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "59", "text": "59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 339.5260416666667, "t": 423.46636962890625, "r": 352.6335042317708, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "64", "text": "64", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 364.0497233072917, "t": 423.04197184244794, "r": 377.1571858723958, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "69", "text": "69", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/65", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 387.7277425130208, "t": 423.04197184244794, "r": 401.258056640625, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "74", "text": "74", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/66", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 411.8285725911458, "t": 423.04197184244794, "r": 424.9360758463542, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "79", "text": "79", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/67", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 435.5066324869792, "t": 423.89072672526044, "r": 450.3053792317708, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "84", "text": "84", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/68", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 235.93465169270834, "t": 406.49053955078125, "r": 293.86126708984375, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/69", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 22, "bbox": {"l": 53.27556864420573, "t": 396.30507405598956, "r": 75.26230875651042, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/70", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 82.87310282389323, "t": 377.63169352213544, "r": 164.90056355794272, "b": 366.17299397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Newmalecases", "text": "Newmalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/71", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 82.87310282389323, "t": 361.50465901692706, "r": 174.6254679361979, "b": 350.04600016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Newfemalecases", "text": "Newfemalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/72", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 81.60463968912761, "t": 345.37762451171875, "r": 309.92848714192706, "b": 333.07017008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Number of males with skin cancer per 1oo000", "text": "Number of males with skin cancer per 1oo000", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/73", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 22, "bbox": {"l": 78.22206115722656, "t": 329.2506306966146, "r": 319.23057047526044, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "Number of femaleswith skin cancer per 10o000", "text": "Number of femaleswith skin cancer per 10o000", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/74", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/75", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/76", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/texts/42"}, {"$ref": "#/texts/43"}, {"$ref": "#/texts/44"}, {"$ref": "#/texts/45"}, {"$ref": "#/texts/46"}, {"$ref": "#/texts/47"}, {"$ref": "#/texts/48"}, {"$ref": "#/texts/49"}, {"$ref": "#/texts/50"}, {"$ref": "#/texts/51"}, {"$ref": "#/texts/52"}, {"$ref": "#/texts/53"}, {"$ref": "#/texts/54"}, {"$ref": "#/texts/55"}, {"$ref": "#/texts/56"}, {"$ref": "#/texts/57"}, {"$ref": "#/texts/58"}, {"$ref": "#/texts/59"}, {"$ref": "#/texts/60"}, {"$ref": "#/texts/61"}, {"$ref": "#/texts/62"}, {"$ref": "#/texts/63"}, {"$ref": "#/texts/64"}, {"$ref": "#/texts/65"}, {"$ref": "#/texts/66"}, {"$ref": "#/texts/67"}, {"$ref": "#/texts/68"}, {"$ref": "#/texts/69"}, {"$ref": "#/texts/70"}, {"$ref": "#/texts/71"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 52.177303314208984, "t": 618.5329437255859, "r": 527.7835083007812, "b": 317.54632568359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/74"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.62387466430664, "t": 53.17352294921875, "r": 99.01427459716797, "b": 17.2744140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p23.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p23.json new file mode 100644 index 0000000..0e87163 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p23.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/15"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.16855875651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 473.5605875651042, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "There are no new cases of skin cancer diagnosed in people younger than 15 years of age.", "text": "There are no new cases of skin cancer diagnosed in people younger than 15 years of age.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 736.2455851236979, "r": 177.16239420572916, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Explain why.", "text": "Explain why.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.976806640625, "t": 721.816151936849, "r": 536.1382242838541, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.89299011230469, "t": 541.8725992838542, "r": 101.9000956217448, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 541.4482014973958, "r": 453.6879475911458, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Givetwoconclusions aboutthenumberofnewcasesofskincancer.", "text": "Givetwoconclusions aboutthenumberofnewcasesofskincancer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.16192626953125, "t": 515.9844970703125, "r": 189.8470662434896, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Use Figure 10.", "text": "Use Figure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.553955078125, "t": 503.2526448567708, "r": 536.1382242838541, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 423.04197184244794, "r": 121.77272542317708, "b": 415.40285237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.47016906738281, "t": 322.4603068033854, "r": 103.16855875651042, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 322.0359090169271, "r": 520.4938151041666, "b": 308.45526123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "The data for the number of people with skin cancer is given per 100 0o0 population", "text": "The data for the number of people with skin cancer is given per 100 0o0 population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 115.007568359375, "t": 295.7234090169271, "r": 428.741455078125, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Suggest why the data is not given as the total number of people.", "text": "Suggest why the data is not given as the total number of people.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 489.6278483072917, "t": 283.41595458984375, "r": 535.7154134114584, "b": 268.98651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 187.31011962890625, "t": 166.70729573567712, "r": 391.5331217447917, "b": 151.42901611328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 5 continues on the next page", "text": "Question 5 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 23, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.77910614013672, "t": 53.0966796875, "r": 99.09918975830078, "b": 17.35565185546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p24.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p24.json new file mode 100644 index 0000000..ba66cec --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p24.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/151"}, {"$ref": "#/texts/152"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/texts/42"}, {"$ref": "#/texts/43"}, {"$ref": "#/texts/44"}, {"$ref": "#/texts/45"}, {"$ref": "#/texts/46"}, {"$ref": "#/texts/47"}, {"$ref": "#/texts/48"}, {"$ref": "#/texts/49"}, {"$ref": "#/texts/50"}, {"$ref": "#/texts/51"}, {"$ref": "#/texts/52"}, {"$ref": "#/texts/53"}, {"$ref": "#/texts/54"}, {"$ref": "#/texts/55"}, {"$ref": "#/texts/56"}, {"$ref": "#/texts/57"}, {"$ref": "#/texts/58"}, {"$ref": "#/texts/59"}, {"$ref": "#/texts/60"}, {"$ref": "#/texts/61"}, {"$ref": "#/texts/62"}, {"$ref": "#/texts/63"}, {"$ref": "#/texts/64"}, {"$ref": "#/texts/65"}, {"$ref": "#/texts/66"}, {"$ref": "#/texts/67"}, {"$ref": "#/texts/68"}, {"$ref": "#/texts/69"}, {"$ref": "#/texts/70"}, {"$ref": "#/texts/71"}, {"$ref": "#/texts/72"}, {"$ref": "#/texts/73"}, {"$ref": "#/texts/74"}, {"$ref": "#/texts/75"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 255.80729166666666, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 10 is repeated below.", "text": "Figure 10 is repeated below.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 265.5321858723958, "t": 748.128651936849, "r": 316.2708333333333, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 702.7183736165365, "r": 113.73910522460938, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1200", "text": "1200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 702.7183736165365, "r": 477.3660074869792, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 678.9522399902344, "r": 113.3162841796875, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 678.9522399902344, "r": 477.788818359375, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 664.9472045898438, "r": 513.3058675130209, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Number", "text": "Number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 659.4300537109375, "r": 112.47064208984375, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Number 800", "text": "Number 800", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 654.76171875, "r": 518.3797200520834, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "80of people", "text": "80of people", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 646.6982014973959, "r": 84.56439208984375, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "ofnew", "text": "ofnew", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 642.0298665364584, "r": 516.265625, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "with skin", "text": "with skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 634.8151448567709, "r": 81.60463968912761, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "cases", "text": "cases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 629.7223917643229, "r": 113.3162841796875, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.070556640625, "t": 630.1467895507812, "r": 525.5677083333334, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "60cancerper", "text": "60cancerper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 625.0540568033854, "r": 84.56439208984375, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "of skin", "text": "of skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 476.0975341796875, "t": 619.1125284830729, "r": 512.0373942057291, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "100000", "text": "100000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 611.8978068033854, "r": 85.83285522460938, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "cancer", "text": "cancer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 605.5318806966146, "r": 113.3162841796875, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 607.2294514973959, "r": 524.7220458984375, "b": 597.4683634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "-40population", "text": "-40population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 581.3413492838542, "r": 112.89346313476562, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.4933675130208, "t": 581.3413492838542, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 105.70548502604167, "t": 555.0288492838542, "r": 112.47064208984375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 458.3389892578125, "t": 555.8776448567708, "r": 465.1041666666667, "b": 548.238525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 547.8141276041667, "r": 135.30302937825522, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 547.3897298177083, "r": 159.82670084635416, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 547.8141276041667, "r": 183.50472005208334, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 193.6524658203125, "t": 548.238525390625, "r": 208.02840169270834, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 547.8141276041667, "r": 231.7064412434896, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.12261962890625, "t": 547.8141276041667, "r": 256.2301025390625, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 266.8006591796875, "t": 548.238525390625, "r": 281.1765950520833, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "45", "text": "45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 547.8141276041667, "r": 304.4318033854167, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 547.8141276041667, "r": 328.53265380859375, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "55", "text": "55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 547.8141276041667, "r": 352.6335042317708, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 363.6268717447917, "t": 548.238525390625, "r": 377.5799967447917, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "65", "text": "65", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 547.8141276041667, "r": 400.835205078125, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.2514241536458, "t": 547.8141276041667, "r": 425.35888671875, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "75", "text": "75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.929443359375, "t": 547.3897298177083, "r": 449.4597574869792, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 536.7798665364583, "r": 134.03455607096353, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.7192179361979, "t": 536.35546875, "r": 158.55823771158853, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 171.2428995768229, "t": 536.35546875, "r": 182.6590779622396, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 195.34375, "t": 536.7798665364583, "r": 206.33711751302084, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 219.02176920572916, "t": 536.35546875, "r": 230.86079915364584, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.54545084635416, "t": 536.7798665364583, "r": 255.38446044921875, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 268.06911214192706, "t": 536.35546875, "r": 279.4853108723958, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.7471516927083, "t": 536.35546875, "r": 303.58616129557294, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 316.2708333333333, "t": 536.35546875, "r": 327.2642008463542, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.9488525390625, "t": 536.7798665364583, "r": 351.7878824869792, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.4725341796875, "t": 536.7798665364583, "r": 376.3115234375, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 388.5733642578125, "t": 536.35546875, "r": 399.9895833333333, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.6742350260417, "t": 536.35546875, "r": 424.0904134114583, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 437.1979166666667, "t": 536.35546875, "r": 448.6140950520833, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.19554646809895, "t": 525.745585123698, "r": 135.30302937825522, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 525.745585123698, "r": 159.82670084635416, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 525.745585123698, "r": 183.92755126953125, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 194.07527669270834, "t": 525.745585123698, "r": 207.1827596028646, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 525.745585123698, "r": 231.7064412434896, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 242.6998087565104, "t": 525.745585123698, "r": 256.2301025390625, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "44", "text": "44", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 267.2234700520833, "t": 525.745585123698, "r": 280.33095296223956, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "49", "text": "49", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 525.745585123698, "r": 304.4318033854167, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "54", "text": "54", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 525.745585123698, "r": 328.53265380859375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "59", "text": "59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 525.745585123698, "r": 352.6335042317708, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "64", "text": "64", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.0497233072917, "t": 525.745585123698, "r": 376.734375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "69", "text": "69", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 525.745585123698, "r": 401.258056640625, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "74", "text": "74", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 411.8285725911458, "t": 525.3211873372395, "r": 424.9360758463542, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "79", "text": "79", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/65", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.5066324869792, "t": 525.745585123698, "r": 449.4597574869792, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "84", "text": "84", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/66", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 235.93465169270834, "t": 509.1941731770833, "r": 293.86126708984375, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/67", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 497.73549397786456, "r": 73.99384053548177, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/68", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 481.18410237630206, "r": 165.3233846028646, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Newmalecases", "text": "Newmalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/69", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 465.05706787109375, "r": 174.6254679361979, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Newfemalecases", "text": "Newfemalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/70", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 63.00047302246094, "t": 448.50567626953125, "r": 309.92848714192706, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "--Number of maleswithskin cancerper 1ooo00", "text": "--Number of maleswithskin cancerper 1ooo00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/71", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 81.60463968912761, "t": 431.95424397786456, "r": 318.3849283854167, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Numberoffemaleswithskincancerper1oooo0", "text": "Numberoffemaleswithskincancerper1oooo0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/72", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/73", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 350.89479573567706, "r": 315.0023600260417, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Describe two trends shown inFigure 10.", "text": "Describe two trends shown inFigure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/74", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 325.4310506184896, "r": 535.2926025390625, "b": 299.1185506184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "text": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/75", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 207.44919840494788, "r": 121.77272542317708, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/76", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 255.80729166666666, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Figure 10 is repeated below.", "text": "Figure 10 is repeated below.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/77", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 24, "bbox": {"l": 265.5321858723958, "t": 748.128651936849, "r": 316.2708333333333, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/78", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 702.7183736165365, "r": 113.73910522460938, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1200", "text": "1200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/79", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 702.7183736165365, "r": 477.3660074869792, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/80", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 87.9469706217448, "t": 678.9522399902344, "r": 113.3162841796875, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "1000", "text": "1000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/81", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 678.9522399902344, "r": 477.788818359375, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/82", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 664.9472045898438, "r": 513.3058675130209, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Number", "text": "Number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/83", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 659.4300537109375, "r": 112.47064208984375, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Number 800", "text": "Number 800", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/84", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.9161783854167, "t": 654.76171875, "r": 518.3797200520834, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "80of people", "text": "80of people", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/85", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.6983896891276, "t": 646.6982014973959, "r": 84.56439208984375, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "ofnew", "text": "ofnew", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/86", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 475.2518717447917, "t": 642.0298665364584, "r": 516.265625, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "with skin", "text": "with skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/87", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 634.8151448567709, "r": 81.60463968912761, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "cases", "text": "cases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/88", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 629.7223917643229, "r": 113.3162841796875, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/89", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.070556640625, "t": 630.1467895507812, "r": 525.5677083333334, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "60cancerper", "text": "60cancerper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/90", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 625.0540568033854, "r": 84.56439208984375, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "of skin", "text": "of skin", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/91", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 476.0975341796875, "t": 619.1125284830729, "r": 512.0373942057291, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "100000", "text": "100000", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/92", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 53.27556864420573, "t": 611.8978068033854, "r": 85.83285522460938, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "cancer", "text": "cancer", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/93", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 605.5318806966146, "r": 113.3162841796875, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/94", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 456.647705078125, "t": 607.2294514973959, "r": 524.7220458984375, "b": 597.4683634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "-40population", "text": "-40population", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/95", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 93.4436543782552, "t": 581.3413492838542, "r": 112.89346313476562, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/96", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 457.4933675130208, "t": 581.3413492838542, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/97", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 105.70548502604167, "t": 555.0288492838542, "r": 112.47064208984375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/98", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 458.3389892578125, "t": 555.8776448567708, "r": 465.1041666666667, "b": 548.238525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/99", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 547.8141276041667, "r": 135.30302937825522, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/100", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 547.3897298177083, "r": 159.82670084635416, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/101", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 547.8141276041667, "r": 183.50472005208334, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/102", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 193.6524658203125, "t": 548.238525390625, "r": 208.02840169270834, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/103", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 547.8141276041667, "r": 231.7064412434896, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/104", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.12261962890625, "t": 547.8141276041667, "r": 256.2301025390625, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/105", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 266.8006591796875, "t": 548.238525390625, "r": 281.1765950520833, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "45", "text": "45", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/106", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 547.8141276041667, "r": 304.4318033854167, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/107", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 547.8141276041667, "r": 328.53265380859375, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "55", "text": "55", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/108", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 547.8141276041667, "r": 352.6335042317708, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/109", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 363.6268717447917, "t": 548.238525390625, "r": 377.5799967447917, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "65", "text": "65", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/110", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 547.8141276041667, "r": 400.835205078125, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/111", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.2514241536458, "t": 547.8141276041667, "r": 425.35888671875, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "75", "text": "75", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/112", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.929443359375, "t": 547.3897298177083, "r": 449.4597574869792, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/113", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.61836751302083, "t": 536.7798665364583, "r": 134.03455607096353, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/114", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.7192179361979, "t": 536.35546875, "r": 158.55823771158853, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/115", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 171.2428995768229, "t": 536.35546875, "r": 182.6590779622396, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/116", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 195.34375, "t": 536.7798665364583, "r": 206.33711751302084, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/117", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 219.02176920572916, "t": 536.35546875, "r": 230.86079915364584, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/118", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 243.54545084635416, "t": 536.7798665364583, "r": 255.38446044921875, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/119", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 268.06911214192706, "t": 536.35546875, "r": 279.4853108723958, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/120", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.7471516927083, "t": 536.35546875, "r": 303.58616129557294, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/121", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 316.2708333333333, "t": 536.35546875, "r": 327.2642008463542, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/122", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.9488525390625, "t": 536.7798665364583, "r": 351.7878824869792, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/123", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.4725341796875, "t": 536.7798665364583, "r": 376.3115234375, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/124", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 388.5733642578125, "t": 536.35546875, "r": 399.9895833333333, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/125", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 412.6742350260417, "t": 536.35546875, "r": 424.0904134114583, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/126", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 437.1979166666667, "t": 536.35546875, "r": 448.6140950520833, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "to", "text": "to", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/127", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 122.19554646809895, "t": 525.745585123698, "r": 135.30302937825522, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/128", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 146.29639689127603, "t": 525.745585123698, "r": 159.82670084635416, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/129", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 170.39724731445312, "t": 525.745585123698, "r": 183.92755126953125, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/130", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 194.07527669270834, "t": 525.745585123698, "r": 207.1827596028646, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/131", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 218.59895833333334, "t": 525.745585123698, "r": 231.7064412434896, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "39", "text": "39", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/132", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 242.6998087565104, "t": 525.745585123698, "r": 256.2301025390625, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "44", "text": "44", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/133", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 267.2234700520833, "t": 525.745585123698, "r": 280.33095296223956, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "49", "text": "49", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/134", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 291.32432047526044, "t": 525.745585123698, "r": 304.4318033854167, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "54", "text": "54", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/135", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 315.42519124348956, "t": 525.745585123698, "r": 328.53265380859375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "59", "text": "59", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/136", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 339.5260416666667, "t": 525.745585123698, "r": 352.6335042317708, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "64", "text": "64", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/137", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 364.0497233072917, "t": 525.745585123698, "r": 376.734375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "69", "text": "69", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/138", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 387.7277425130208, "t": 525.745585123698, "r": 401.258056640625, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "74", "text": "74", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/139", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 411.8285725911458, "t": 525.3211873372395, "r": 424.9360758463542, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "79", "text": "79", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/140", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 435.5066324869792, "t": 525.745585123698, "r": 449.4597574869792, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "84", "text": "84", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/141", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 235.93465169270834, "t": 509.1941731770833, "r": 293.86126708984375, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Age in years", "text": "Age in years", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/142", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 497.73549397786456, "r": 73.99384053548177, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Key", "text": "Key", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/143", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 481.18410237630206, "r": 165.3233846028646, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Newmalecases", "text": "Newmalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/144", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 82.45028177897136, "t": 465.05706787109375, "r": 174.6254679361979, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Newfemalecases", "text": "Newfemalecases", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/145", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 63.00047302246094, "t": 448.50567626953125, "r": 309.92848714192706, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "--Number of maleswithskin cancerper 1ooo00", "text": "--Number of maleswithskin cancerper 1ooo00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/146", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 81.60463968912761, "t": 431.95424397786456, "r": 318.3849283854167, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Numberoffemaleswithskincancerper1oooo0", "text": "Numberoffemaleswithskincancerper1oooo0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/147", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 50.31581115722656, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.5", "text": "05.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/148", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 350.89479573567706, "r": 315.0023600260417, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Describe two trends shown inFigure 10.", "text": "Describe two trends shown inFigure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/149", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 114.58474731445312, "t": 325.4310506184896, "r": 535.2926025390625, "b": 299.1185506184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "text": "Use only the data for the number of people with skin cancer per 1o0 oo0 population. [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/150", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 115.007568359375, "t": 207.44919840494788, "r": 121.77272542317708, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/151", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/152", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/76"}, {"$ref": "#/texts/77"}, {"$ref": "#/texts/78"}, {"$ref": "#/texts/79"}, {"$ref": "#/texts/80"}, {"$ref": "#/texts/81"}, {"$ref": "#/texts/82"}, {"$ref": "#/texts/83"}, {"$ref": "#/texts/84"}, {"$ref": "#/texts/85"}, {"$ref": "#/texts/86"}, {"$ref": "#/texts/87"}, {"$ref": "#/texts/88"}, {"$ref": "#/texts/89"}, {"$ref": "#/texts/90"}, {"$ref": "#/texts/91"}, {"$ref": "#/texts/92"}, {"$ref": "#/texts/93"}, {"$ref": "#/texts/94"}, {"$ref": "#/texts/95"}, {"$ref": "#/texts/96"}, {"$ref": "#/texts/97"}, {"$ref": "#/texts/98"}, {"$ref": "#/texts/99"}, {"$ref": "#/texts/100"}, {"$ref": "#/texts/101"}, {"$ref": "#/texts/102"}, {"$ref": "#/texts/103"}, {"$ref": "#/texts/104"}, {"$ref": "#/texts/105"}, {"$ref": "#/texts/106"}, {"$ref": "#/texts/107"}, {"$ref": "#/texts/108"}, {"$ref": "#/texts/109"}, {"$ref": "#/texts/110"}, {"$ref": "#/texts/111"}, {"$ref": "#/texts/112"}, {"$ref": "#/texts/113"}, {"$ref": "#/texts/114"}, {"$ref": "#/texts/115"}, {"$ref": "#/texts/116"}, {"$ref": "#/texts/117"}, {"$ref": "#/texts/118"}, {"$ref": "#/texts/119"}, {"$ref": "#/texts/120"}, {"$ref": "#/texts/121"}, {"$ref": "#/texts/122"}, {"$ref": "#/texts/123"}, {"$ref": "#/texts/124"}, {"$ref": "#/texts/125"}, {"$ref": "#/texts/126"}, {"$ref": "#/texts/127"}, {"$ref": "#/texts/128"}, {"$ref": "#/texts/129"}, {"$ref": "#/texts/130"}, {"$ref": "#/texts/131"}, {"$ref": "#/texts/132"}, {"$ref": "#/texts/133"}, {"$ref": "#/texts/134"}, {"$ref": "#/texts/135"}, {"$ref": "#/texts/136"}, {"$ref": "#/texts/137"}, {"$ref": "#/texts/138"}, {"$ref": "#/texts/139"}, {"$ref": "#/texts/140"}, {"$ref": "#/texts/141"}, {"$ref": "#/texts/142"}, {"$ref": "#/texts/143"}, {"$ref": "#/texts/144"}, {"$ref": "#/texts/145"}, {"$ref": "#/texts/146"}, {"$ref": "#/texts/147"}, {"$ref": "#/texts/148"}, {"$ref": "#/texts/149"}, {"$ref": "#/texts/150"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 39.65533447265625, "t": 788.0855979919434, "r": 539.0, "b": 75.42669677734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.760948181152344, "t": 53.21307373046875, "r": 99.20094299316406, "b": 17.48699951171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p25.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p25.json new file mode 100644 index 0000000..4c49a9a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p25.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.6", "text": "05.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 506.1178792317708, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "Calculate the number of males aged 80 to 84 years with skin cancer in that year.", "text": "Calculate the number of males aged 80 to 84 years with skin cancer in that year.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 113.73910522460938, "t": 722.6649373372396, "r": 190.2698771158854, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Use Figure 10.", "text": "Use Figure 10.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 115.007568359375, "t": 682.7717997233073, "r": 312.0426025390625, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Giveyour answer to3significant figures.", "text": "Giveyour answer to3significant figures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 484.553955078125, "t": 670.4643351236979, "r": 536.5610758463541, "b": 656.0348917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 122.19554646809895, "t": 516.8332926432292, "r": 403.3721516927083, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Number of males with skin cancer (3 significant figures) =", "text": "Number of males with skin cancer (3 significant figures) =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 210.14251708984375, "t": 451.05202229817706, "r": 374.6202392578125, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 25, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 73.57101949055989, "t": 23.26169840494788, "r": 77.79924011230469, "b": 19.01772054036462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 552.6282958984375, "t": 520.2284545898438, "r": 567.8498942057291, "b": 507.9209798177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.79350280761719, "t": 53.09893798828125, "r": 99.17039489746094, "b": 17.39202880859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 543.257080078125, "t": 544.8421020507812, "r": 576.107666015625, "b": 503.1017761230469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p26.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p26.json new file mode 100644 index 0000000..bbc8e07 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p26.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.06770833333333, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 271.02886962890625, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "This question is about the heart.", "text": "This question is about the heart.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 742.6115112304688, "r": 103.16855875651042, "b": 726.9088948567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 742.1871236165365, "r": 312.46543375651044, "b": 729.0308736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Why is theheart described as an organ?", "text": "Why is theheart described as an organ?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 729.0308736165365, "r": 536.1382242838541, "b": 714.6014302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 48.62452697753906, "t": 612.7466023763021, "r": 103.16855875651042, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 113.73910522460938, "t": 611.4734090169271, "r": 485.3996175130208, "b": 599.1659545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 78]}], "orig": "Valves in the heart keep the blood flowing through the heart in one direction.", "text": "Valves in the heart keep the blood flowing through the heart in one direction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 114.58474731445312, "t": 585.5853068033855, "r": 397.45263671875, "b": 573.277852376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Figure 11 shows the heart with one of the valves labelled.", "text": "Figure 11 shows the heart with one of the valves labelled.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 26, "bbox": {"l": 298.93511962890625, "t": 560.9703776041667, "r": 350.5194091796875, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 11", "text": "Figure 11", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 386.4592692057292, "t": 487.55002848307294, "r": 415.6339925130208, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Valve", "text": "Valve", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 115.007568359375, "t": 339.86049397786456, "r": 535.2926025390625, "b": 312.6991984049479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Explain the effects on a person if the valve labelled in Figure 11 developed a leak. [4 marks]", "text": "Explain the effects on a person if the valve labelled in Figure 11 developed a leak. [4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 386.4592692057292, "t": 487.55002848307294, "r": 415.6339925130208, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Valve", "text": "Valve", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 83.00977325439453, "t": 743.1391143798828, "r": 104.40795135498047, "b": 726.835205078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.74662780761719, "t": 53.166748046875, "r": 99.2194595336914, "b": 17.3209228515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 238.89454650878906, "t": 528.76025390625, "r": 415.30877685546875, "b": 366.0852355957031, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p27.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p27.json new file mode 100644 index 0000000..9ed1cd3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p27.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/9"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/groups/7"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 548.4000651041666, "t": 790.5681660970052, "r": 586.8768717447916, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 349.2509358723958, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "The faulty valve is replaced during an operation.", "text": "The faulty valve is replaced during an operation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 723.0893351236979, "r": 200.8404337565104, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Biological valves:", "text": "Biological valves:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 116.27604166666667, "t": 703.1427612304688, "r": 294.7069091796875, "b": 689.9865112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7arefrom animals or human donors", "text": "\u00b7arefrom animals or human donors", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 115.8532206217448, "t": 683.6205851236979, "r": 328.53265380859375, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "\u00b7allow blood to flow through them normally", "text": "\u00b7allow blood to flow through them normally", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 117.5445048014323, "t": 663.6740112304688, "r": 415.211181640625, "b": 651.3665568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "wear out and stiffen over time, so may need to be replaced.", "text": "wear out and stiffen over time, so may need to be replaced.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 27, "bbox": {"l": 113.73910522460938, "t": 627.6004231770834, "r": 208.8740437825521, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Mechanical valves:", "text": "Mechanical valves:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 119.2357889811198, "t": 606.8050537109375, "r": 292.16998291015625, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "aremadefromsyntheticmaterials", "text": "aremadefromsyntheticmaterials", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 117.96732584635417, "t": 587.2828776041666, "r": 367.8551025390625, "b": 575.3998209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "may cause blood clots on the surface of the valve", "text": "may cause blood clots on the surface of the valve", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 117.5445048014323, "t": 567.7607014973958, "r": 455.3792317708333, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "require anti-clotting drugs to be taken for the rest of the patient's life", "text": "require anti-clotting drugs to be taken for the rest of the patient's life", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 116.27604166666667, "t": 549.0873209635417, "r": 353.9019775390625, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "\u00b7can last for a very long time in ideal conditions.", "text": "\u00b7can last for a very long time in ideal conditions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.43039957682292, "t": 503.6770426432292, "r": 457.4933675130208, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 69]}], "orig": "A young woman enjoys extreme sports and would like to start a family.", "text": "A young woman enjoys extreme sports and would like to start a family.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 114.16192626953125, "t": 478.63771565755206, "r": 322.19032796223956, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "The woman needs a heart valve replacing.", "text": "The woman needs a heart valve replacing.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 115.007568359375, "t": 439.16896565755206, "r": 496.3929850260417, "b": 413.28086344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "Describe the advantages and disadvantages for this young woman of having a biological heart valve insteadof a mechanical heartvalve.", "text": "Describe the advantages and disadvantages for this young woman of having a biological heart valve insteadof a mechanical heartvalve.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 484.553955078125, "t": 413.28086344401044, "r": 536.5610758463541, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 556.4337158203125, "t": 157.37058512369788, "r": 563.1988525390625, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 27, "bbox": {"l": 231.28361002604166, "t": 114.08225504557288, "r": 346.7139892578125, "b": 103.04799397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 556.4337158203125, "t": 157.37058512369788, "r": 563.1988525390625, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 45.50212860107422, "t": 776.1840591430664, "r": 105.26959991455078, "b": 758.967529296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.626678466796875, "t": 53.157470703125, "r": 99.11552429199219, "b": 17.59197998046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 543.0776977539062, "t": 182.75701904296875, "r": 575.8231201171875, "b": 141.1480712890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p28.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p28.json new file mode 100644 index 0000000..9470a96 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p28.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.510581970214844, "t": 53.04644775390625, "r": 99.4729995727539, "b": 16.531005859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p29.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p29.json new file mode 100644 index 0000000..37b421c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p29.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.75505828857422, "t": 53.18896484375, "r": 99.31659698486328, "b": 17.0916748046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p3.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p3.json new file mode 100644 index 0000000..a2b5a4c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p3.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/17"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 81.1818135579427, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "01", "text": "01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 367.4322916666667, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "Bacteria can cause avarietyof diseases in humans.", "text": "Bacteria can cause avarietyof diseases in humans.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 745.582285563151, "r": 99.78598022460938, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 745.1578877766927, "r": 451.9966634114583, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "What are two similarities between a bacterial cell and an animal cell?", "text": "What are two similarities between a bacterial cell and an animal cell?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 732.8504231770834, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 717.1478068033854, "r": 210.9881591796875, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Tick (v) two boxes.", "text": "Tick (v) two boxes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 677.6790568033854, "r": 250.7334187825521, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Both have a cell membrane.", "text": "Both have a cell membrane.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 640.332275390625, "r": 217.7533162434896, "b": 628.8736165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Bothhaveacell wall.", "text": "Bothhaveacell wall.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 603.8342895507812, "r": 217.7533162434896, "b": 590.2536417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Both have a nucleus.", "text": "Both have a nucleus.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 566.0631306966145, "r": 219.4446004231771, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Both have cytoplasm.", "text": "Both have cytoplasm.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 529.1407470703125, "r": 213.52508544921875, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Both have plasmids.", "text": "Both have plasmids.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 440.44215901692706, "r": 390.2646484375, "b": 424.73952229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "01.2 Salmonella food poisoning is caused by bacteria in food.", "text": "01.2 Salmonella food poisoning is caused by bacteria in food.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 413.70526123046875, "r": 353.0563557942708, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Give one symptom of salmonella food poisoning.", "text": "Give one symptom of salmonella food poisoning.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 387.39276123046875, "r": 370.8148600260417, "b": 373.81211344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Do not refer to vomiting or diarrhoea in your answer.", "text": "Do not refer to vomiting or diarrhoea in your answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 374.23651123046875, "r": 536.1382242838541, "b": 359.80706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 257.5278523763021, "r": 391.1103108723958, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Question1continueson thenextpage", "text": "Question1continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.83540725708008, "t": 53.10052490234375, "r": 99.11125946044922, "b": 17.51763916015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p30.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p30.json new file mode 100644 index 0000000..9e0bdaa --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p30.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.75211715698242, "t": 53.1778564453125, "r": 99.30067443847656, "b": 17.100341796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p31.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p31.json new file mode 100644 index 0000000..8bdfe88 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p31.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.744197845458984, "t": 53.14459228515625, "r": 99.40373992919922, "b": 17.3238525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p32.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p32.json new file mode 100644 index 0000000..c0b18b7 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p32.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 219]}], "orig": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 245]}], "orig": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "text": "Copyright @ 2022 AQA and its licensors.Allrights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 32, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 189.42423502604166, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 350.5194091796875, "t": 40.23752848307288, "r": 520.4938151041666, "b": 30.47646077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "226G8464/B/1H", "text": "226G8464/B/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.74562454223633, "t": 53.2369384765625, "r": 99.2490005493164, "b": 17.05267333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 334.3735656738281, "t": 67.7763671875, "r": 539.0877685546875, "b": 32.14874267578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p4.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p4.json new file mode 100644 index 0000000..ec0df20 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p4.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 49.04734802246094, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 358.5530192057292, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "What is the name of the first antibiotic developed?", "text": "What is the name of the first antibiotic developed?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 490.4734700520833, "t": 761.7092946370443, "r": 534.8697916666666, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.58474731445312, "t": 644.1518351236979, "r": 468.0639241536458, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "A child with a severe bacterial infection was given a course of antibiotics.", "text": "A child with a severe bacterial infection was given a course of antibiotics.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 602.5611165364584, "r": 512.460205078125, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 115]}], "orig": "Figure 1 shows how the concentration of live bacteria in the child's body changed whentakingthecourseofantibiotics.", "text": "Figure 1 shows how the concentration of live bacteria in the child's body changed whentakingthecourseofantibiotics.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 4, "bbox": {"l": 301.89487711588544, "t": 565.214335123698, "r": 347.5596516927083, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 202.95454915364584, "t": 454.44720458984375, "r": 209.71968587239584, "b": 445.95928955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 124.30965169270833, "t": 432.37864176432294, "r": 192.80680338541666, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Concentration", "text": "Concentration", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 123.46400960286458, "t": 420.49558512369794, "r": 194.49810791015625, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "oflivebacteria", "text": "oflivebacteria", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 122.19554646809895, "t": 408.18813069661456, "r": 190.69270833333334, "b": 395.45627848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "in the body in", "text": "in the body in", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 122.19554646809895, "t": 395.88067626953125, "r": 191.5383504231771, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "arbitrary units", "text": "arbitrary units", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 202.95454915364584, "t": 397.57822672526044, "r": 209.71968587239584, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 323.88161214192706, "t": 274.92803955078125, "r": 331.06960042317706, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 379.2712809244792, "t": 275.3524373372396, "r": 387.7277425130208, "b": 264.7425740559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 493.8560384114583, "t": 274.92803955078125, "r": 500.6212158203125, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 337.41192626953125, "t": 263.4693806966146, "r": 401.258056640625, "b": 249.03993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Time in days", "text": "Time in days", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 189.00142415364584, "t": 246.49355061848962, "r": 239.74005126953125, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Course of", "text": "Course of", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 189.00142415364584, "t": 233.76169840494788, "r": 238.8944091796875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "antibiotics", "text": "antibiotics", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 195.76656087239584, "t": 221.87864176432288, "r": 231.7064412434896, "b": 209.99558512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "started", "text": "started", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 46.03716278076172, "t": 776.4842300415039, "r": 105.5737075805664, "b": 759.054817199707, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.68577194213867, "t": 53.19873046875, "r": 99.13436889648438, "b": 17.61859130859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 122.65338134765625, "t": 537.9430236816406, "r": 527.3243408203125, "b": 211.9937744140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/5"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p5.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p5.json new file mode 100644 index 0000000..369f56c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p5.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/18"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 524.7220458984375, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "The concentration of live bacteria in the body continued to increase after starting the courseof antibiotics.", "text": "The concentration of live bacteria in the body continued to increase after starting the courseof antibiotics.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 735.8211873372396, "r": 239.74005126953125, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Suggest one reason why.", "text": "Suggest one reason why.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 723.0893351236979, "r": 535.7154134114584, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 47.77887980143229, "t": 594.9219970703125, "r": 103.5913798014323, "b": 579.643778483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 593.6488037109375, "r": 286.25046793619794, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "After 3 days of taking the antibiotic:", "text": "After 3 days of taking the antibiotic:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 561.394775390625, "r": 216.90767415364584, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "\u00b7thechildfeltbetter", "text": "\u00b7thechildfeltbetter", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 543.1457926432292, "r": 332.76088460286456, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "\u00b7there were still bacteria in the child's body.", "text": "\u00b7there were still bacteria in the child's body.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 510.04296875, "r": 256.65293375651044, "b": 497.73549397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Why did the child feel better?", "text": "Why did the child feel better?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.4734700520833, "t": 497.31109619140625, "r": 536.1382242838541, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 482.88169352213544, "r": 200.8404337565104, "b": 468.45225016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (v) one box.", "text": "Tick (v) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 441.71535237630206, "r": 339.9488525390625, "b": 430.68105061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Bacteriahadbecomeimmunetotheantibiotic.", "text": "Bacteriahadbecomeimmunetotheantibiotic.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 5, "bbox": {"l": 115.007568359375, "t": 405.64174397786456, "r": 343.3314208984375, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "The child had becomeresistant to thebacteria.", "text": "The child had becomeresistant to thebacteria.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 368.71938069661456, "r": 356.4389241536458, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Therewerefewer toxins in the body than at day 0", "text": "Therewerefewer toxins in the body than at day 0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 279.1719767252604, "r": 486.6680908203125, "b": 263.4693806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 83]}], "orig": "01.6 Suggest why doctors do not give antibiotics to patients with minor infections.", "text": "01.6 Suggest why doctors do not give antibiotics to patients with minor infections.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 265.59136962890625, "r": 535.2926025390625, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 191.11551920572916, "t": 148.03391520182288, "r": 394.4928792317708, "b": 134.02886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question1continuesonthenextpage", "text": "Question1continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.79792404174805, "t": 53.151611328125, "r": 99.16613006591797, "b": 17.473876953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p6.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p6.json new file mode 100644 index 0000000..a399c40 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p6.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 286.67327880859375, "t": 809.6659495035807, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 212.25663248697916, "t": 644.1518351236979, "r": 219.8674112955729, "b": 636.0883382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 211.83380126953125, "t": 622.0832926432291, "r": 219.4446004231771, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 278.21685791015625, "t": 620.8100992838541, "r": 290.4786783854167, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "00", "text": "00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 556.4337158203125, "t": 275.7768351236979, "r": 563.1988525390625, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 359.398681640625, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Figure 2 shows blood viewed using a microscope.", "text": "Figure 2 shows blood viewed using a microscope.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 302.3177083333333, "t": 748.5530497233073, "r": 348.4053141276042, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 212.25663248697916, "t": 644.1518351236979, "r": 219.8674112955729, "b": 636.0883382161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 211.83380126953125, "t": 622.0832926432291, "r": 219.4446004231771, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 278.21685791015625, "t": 620.8100992838541, "r": 290.4786783854167, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "00", "text": "00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.89299011230469, "t": 521.926025390625, "r": 104.85984293619792, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.7", "text": "01.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 521.5016276041667, "r": 368.2779134114583, "b": 508.3453776041667, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "A vaccine will stimulate the production of antibodies.", "text": "A vaccine will stimulate the production of antibodies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 494.76475016276044, "r": 393.2244059244792, "b": 482.03289794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "Which part of the blood in Figure 2 produces antibodies?", "text": "Which part of the blood in Figure 2 produces antibodies?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.4734700520833, "t": 482.03289794921875, "r": 536.1382242838541, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 468.02785237630206, "r": 201.26324462890625, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 6, "bbox": {"l": 204.2230021158854, "t": 429.83229573567706, "r": 213.1022745768229, "b": 419.64678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 6, "bbox": {"l": 363.6268717447917, "t": 428.55910237630206, "r": 370.3920491536458, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.201700846354164, "t": 344.95322672526044, "r": 102.32291666666667, "b": 328.82623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.8", "text": "01.8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 343.68007405598956, "r": 419.8622233072917, "b": 330.09942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Which part of the blood in Figure 2 starts the clotting process?", "text": "Which part of the blood in Figure 2 starts the clotting process?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 330.52382405598956, "r": 536.1382242838541, "b": 316.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 112.89346313476562, "t": 316.5187784830729, "r": 201.26324462890625, "b": 300.8161417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 6, "bbox": {"l": 204.2230021158854, "t": 277.8988240559896, "r": 212.679443359375, "b": 268.1377156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 556.4337158203125, "t": 275.7768351236979, "r": 563.1988525390625, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 210.1001739501953, "t": 722.9609222412109, "r": 437.40350341796875, "b": 588.2078247070312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 543.9209594726562, "t": 301.45977783203125, "r": 575.7850341796875, "b": 260.12310791015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.72502517700195, "t": 53.22161865234375, "r": 99.1192626953125, "b": 17.5057373046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p7.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p7.json new file mode 100644 index 0000000..4f5dad8 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p7.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/texts/12"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 80.75899251302083, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 283.29071044921875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "This question is about cell division.", "text": "This question is about cell division.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 49.89299011230469, "t": 745.582285563151, "r": 88.79261271158855, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "02.", "text": "02.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 745.1578877766927, "r": 456.2248942057292, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "Write the biological structures from the box in the correct order of size.", "text": "Write the biological structures from the box in the correct order of size.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 490.4734700520833, "t": 732.8504231770834, "r": 536.1382242838541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 157.71259562174478, "t": 695.503651936849, "r": 179.2765096028646, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "cell", "text": "cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 238.4715779622396, "t": 695.503651936849, "r": 308.23720296223956, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "chromosome", "text": "chromosome", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 362.78125, "t": 694.23046875, "r": 393.2244059244792, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "gene", "text": "gene", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 460.8759358723958, "t": 695.503651936849, "r": 504.8494059244792, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "nucleus", "text": "nucleus", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 147.98768107096353, "t": 638.2103068033854, "r": 192.38399251302084, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Smallest", "text": "Smallest", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 149.6789754231771, "t": 561.394775390625, "r": 189.8470662434896, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Largest", "text": "Largest", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 191.5383504231771, "t": 496.03794352213544, "r": 394.070068359375, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.864070892333984, "t": 53.17596435546875, "r": 99.15371704101562, "b": 17.64910888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p8.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p8.json new file mode 100644 index 0000000..2bc6aac --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p8.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 8, "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 457.9161783854167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Figure 3 shows how a fertilised egg cell can produce specialised cells.", "text": "Figure 3 shows how a fertilised egg cell can produce specialised cells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 8, "bbox": {"l": 302.3177083333333, "t": 749.4018351236979, "r": 347.9824625651042, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 372.928955078125, "t": 698.4744160970052, "r": 462.1444091796875, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Fertilised egg cell", "text": "Fertilised egg cell", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 373.351806640625, "t": 598.7415568033854, "r": 413.5198567708333, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Embryo", "text": "Embryo", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 286.67327880859375, "t": 546.5409545898438, "r": 342.4857991536458, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Process A", "text": "Process A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 167.86032104492188, "t": 428.55910237630206, "r": 244.81392415364584, "b": 415.82725016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Red blood cells", "text": "Red blood cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 284.1363525390625, "t": 428.55910237630206, "r": 345.445556640625, "b": 415.82725016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Muscle cells", "text": "Muscle cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 407.6003824869792, "t": 428.13470458984375, "r": 464.2585042317708, "b": 415.40285237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Nerve cells", "text": "Nerve cells", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 48.62452697753906, "t": 350.04600016276044, "r": 103.5913798014323, "b": 334.34336344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.16192626953125, "t": 348.34840901692706, "r": 203.8001912434896, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Name Process A.", "text": "Name Process A.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.4734700520833, "t": 336.04095458984375, "r": 536.1382242838541, "b": 321.61151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 49.47016906738281, "t": 232.06414794921875, "r": 101.47727457682292, "b": 217.21030680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.3162841796875, "t": 231.21535237630212, "r": 494.7017008463542, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "How many cell divisions are needed to form a 16-cell embryo from the original fertilised egg cell?", "text": "How many cell divisions are needed to form a 16-cell embryo from the original fertilised egg cell?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.0506591796875, "t": 205.75164794921875, "r": 535.2926025390625, "b": 192.59539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 261.72678629557294, "t": 128.08730061848962, "r": 384.7679850260417, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Numberofcell divisions\uff1a", "text": "Numberofcell divisions\uff1a", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.4905293782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 39.79059600830078, "t": 788.6095008850098, "r": 541.789794921875, "b": 75.71734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.723236083984375, "t": 53.26629638671875, "r": 99.15318298339844, "b": 17.52349853515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p9.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p9.json new file mode 100644 index 0000000..4ef1f61 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-b1h-2022jun/p9.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-b1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17026492932910164838, "filename": "aqa-combined-8464-b1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 286.25046793619794, "t": 810.0903447469076, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 325.5729166666667, "t": 577.9461873372395, "r": 390.6875, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Startofcycle", "text": "Startofcycle", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 282.86789957682294, "t": 546.965352376302, "r": 324.304443359375, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 3", "text": "Stage 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 245.23673502604166, "t": 526.5943806966145, "r": 289.63303629557294, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Stage 2:", "text": "Stage 2:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 244.3910929361979, "t": 513.4381306966145, "r": 282.86789957682294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mitosis", "text": "mitosis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 370.8148600260417, "b": 411.58327229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 1", "text": "Stage 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 102.74573771158855, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 433.8153483072917, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "In humans a fertilised egg cell contains 23pairs of chromosomes.", "text": "In humans a fertilised egg cell contains 23pairs of chromosomes.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 749.4018351236979, "r": 441.4261067708333, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "How many chromosomes will there be in each of the embryo cells?", "text": "How many chromosomes will there be in each of the embryo cells?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 490.4734700520833, "t": 737.5187683105469, "r": 536.1382242838541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 49.47016906738281, "t": 633.1175537109375, "r": 105.70548502604167, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.5", "text": "02.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.3162841796875, "t": 632.6931762695312, "r": 407.6003824869792, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Figure 4 represents a cell cycle for a human embryonic cell.", "text": "Figure 4 represents a cell cycle for a human embryonic cell.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 9, "bbox": {"l": 302.3177083333333, "t": 605.5318806966146, "r": 348.4053141276042, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 325.5729166666667, "t": 577.9461873372395, "r": 390.6875, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Startofcycle", "text": "Startofcycle", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 282.86789957682294, "t": 546.965352376302, "r": 324.304443359375, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 3", "text": "Stage 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 245.23673502604166, "t": 526.5943806966145, "r": 289.63303629557294, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Stage 2:", "text": "Stage 2:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 244.3910929361979, "t": 513.4381306966145, "r": 282.86789957682294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "mitosis", "text": "mitosis", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 370.8148600260417, "b": 411.58327229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 1", "text": "Stage 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.58474731445312, "t": 304.2113240559896, "r": 485.3996175130208, "b": 275.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "Describe one change in the cell that occurs during each of the stages of the cell cycle.", "text": "Describe one change in the cell that occurs during each of the stages of the cell cycle.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.1311442057292, "t": 277.0500284830729, "r": 536.5610758463541, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 251.16192626953125, "r": 154.75283813476562, "b": 236.30808512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 1", "text": "Stage 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 199.38572184244788, "r": 154.33001708984375, "b": 185.80507405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 2", "text": "Stage 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 114.16192626953125, "t": 148.03391520182288, "r": 154.75283813476562, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Stage 3", "text": "Stage 3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 9, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/B/1H", "text": "IB/M/Jun22/8464/B/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.75616455078125, "t": 53.192626953125, "r": 99.12259674072266, "b": 17.61572265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 211.35031127929688, "t": 577.80078125, "r": 437.13006591796875, "b": 333.9020690917969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/merged.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/merged.json new file mode 100644 index 0000000..caa578e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/merged.json @@ -0,0 +1 @@ +{"texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 36.785509745279946, "t": 789.7193756103516, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 653.488525390625, "r": 102.74573771158855, "b": 640.7566731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 628.44921875, "r": 120.08144124348958, "b": 614.4441731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 600.863525390625, "r": 155.59848022460938, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 587.707275390625, "r": 296.82102457682294, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.8776448567708, "r": 546.2859700520834, "b": 492.21836344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "GCSE H COMBINED SCIENCE: TRILOGY", "text": "GCSE H COMBINED SCIENCE: TRILOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 40.59090677897135, "t": 482.45729573567706, "r": 178.0080362955729, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Higher Tier Chemistry Paper 1H", "text": "Higher Tier Chemistry Paper 1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 398.00262451171875, "r": 92.17519124348958, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 384.42197672526044, "r": 186.04166666666666, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 369.56817626953125, "r": 83.71875, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 356.41192626953125, "r": 153.484375, "b": 346.22642008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7a scientific calculator", "text": "\u00b7a scientific calculator", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 343.25567626953125, "r": 191.9611612955729, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7 the periodic table (enclosed).", "text": "the periodic table (enclosed).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 317.3675740559896, "r": 108.66524251302083, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 304.2113240559896, "r": 231.28361002604166, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 290.63067626953125, "r": 242.6998087565104, "b": 277.0500284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7Pencil should only be used for drawing.", "text": "\u00b7Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 264.7425740559896, "r": 270.60605875651044, "b": 249.88873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "\u00b7 Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 277.8988240559896, "r": 241.43133544921875, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 251.16192626953125, "r": 424.5132649739583, "b": 224.84942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 224.42502848307288, "r": 429.5871175130208, "b": 199.81011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 198.11252848307288, "r": 356.0160725911458, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "\u00b7Inall calculations,showclearlyhowyouworkoutyouranswer.", "text": "\u00b7Inall calculations,showclearlyhowyouworkoutyouranswer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 171.80002848307288, "r": 106.55113728841145, "b": 159.06817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 157.37058512369788, "r": 245.23673502604166, "b": 145.48752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 The maximum mark for this paper is 70.", "text": "The maximum mark for this paper is 70.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 42.282196044921875, "t": 143.36553955078125, "r": 281.59942626953125, "b": 132.33127848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Themarksforquestionsareshowninbrackets.", "text": "Themarksforquestionsareshowninbrackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 117.47743733723962, "r": 474.40625, "b": 104.32118733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "You are reminded of the need for good English and clear presentation in your answers.", "text": "You are reminded of the need for good English and clear presentation in your answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 237.62593587239584, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "JUN228464C1H01", "text": "JUN228464C1H01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 325.5729166666667, "t": 428.55910237630206, "r": 539.5208333333334, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 15 minutes", "text": "Time allowed: 1 hour 15 minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 367.8551025390625, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E10", "text": "IB/M/Jun22/E10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 449.4597574869792, "t": 33.87156168619788, "r": 545.4403076171875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "8464/C/1H", "text": "8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 183.92755126953125, "t": 440.44215901692706, "r": 394.070068359375, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 544.171875, "t": 788.4461924235026, "r": 583.9171142578125, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 249.0421346028646, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "01 This question is about salts.", "text": "01 This question is about salts.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 435.0837809244792, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Green copper carbonate and sulfuric acid can be used to produce bluecoppersulfatecrystals.", "text": "Green copper carbonate and sulfuric acid can be used to produce bluecoppersulfatecrystals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 711.2062683105469, "r": 101.054443359375, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 709.5086873372396, "r": 363.2040608723958, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Excess copper carbonate is added to sulfuric acid.", "text": "Excess copper carbonate is added to sulfuric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 684.8937683105469, "r": 317.53928629557294, "b": 671.7375183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Give three observations you would make.", "text": "Give three observations you would make.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.976806640625, "t": 670.8887329101562, "r": 536.1382242838541, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 591.9512329101562, "r": 121.77272542317708, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 540.175028483073, "r": 121.77272542317708, "b": 530.4139404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 451.47642008463544, "r": 106.55113728841145, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 109.51088460286458, "t": 450.62762451171875, "r": 369.54638671875, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "How can the excess copper carbonate be removed?", "text": "How can the excess copper carbonate be removed?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 437.89577229817706, "r": 536.1382242838541, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.62452697753906, "t": 320.7627156575521, "r": 107.3967793782552, "b": 305.06011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.\u2462", "text": "01.\u2462", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 107.3967793782552, "t": 319.9139200846354, "r": 362.78125, "b": 306.7576700846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "The pH of the solution changes during the reaction.", "text": "The pH of the solution changes during the reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 292.75262451171875, "r": 389.4190266927083, "b": 281.7183634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "WhatisthepHofthesolutionattheendofthereaction?", "text": "WhatisthepHofthesolutionattheendofthereaction?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 280.86956787109375, "r": 536.1382242838541, "b": 266.44012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 361.5127766927083, "t": 254.55706787109375, "r": 389.8418375651042, "b": 242.67401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "pH=", "text": "pH=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 190.47340901692712, "r": 101.9000956217448, "b": 175.61956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 189.62461344401038, "r": 442.2717692057292, "b": 176.89276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Copper carbonate and sulfuric acid react to produce copper sulfate.", "text": "Copper carbonate and sulfuric acid react to produce copper sulfate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 164.16090901692712, "r": 257.07574462890625, "b": 151.00461832682288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "What type of reaction is this?", "text": "What type of reaction is this?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 151.42901611328125, "r": 536.1382242838541, "b": 136.99965413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 103.16855875651042, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 246.50520833333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Ammoniumnitrateisasalt.", "text": "Ammoniumnitrateisasalt.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 746.4310709635416, "r": 478.6344401041667, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "Figure 1 shows the maximum mass of ammonium nitrate that can dissolve in 100 cm? of water at different temperatures.", "text": "Figure 1 shows the maximum mass of ammonium nitrate that can dissolve in 100 cm? of water at different temperatures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 4, "bbox": {"l": 268.06911214192706, "t": 708.2355041503906, "r": 313.3110758463542, "b": 693.8060709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 173.35699462890625, "t": 644.1518351236979, "r": 194.49810791015625, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 174.2026570638021, "t": 616.1417643229166, "r": 194.49810791015625, "b": 603.4098917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "110", "text": "110", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 173.77982584635416, "t": 586.8584798177084, "r": 194.49810791015625, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.2765096028646, "t": 559.2728068033855, "r": 194.07527669270834, "b": 547.3897298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "90", "text": "90", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.2765096028646, "t": 530.8383178710938, "r": 194.49810791015625, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.91997782389323, "t": 513.4381306966145, "r": 147.98768107096353, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Maximummass", "text": "Maximummass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 69.34279886881511, "t": 500.28188069661456, "r": 137.83995564778647, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "ofammonium", "text": "ofammonium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 502.4038492838542, "r": 194.49810791015625, "b": 490.52077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.91997782389323, "t": 488.39882405598956, "r": 143.75947062174478, "b": 477.36452229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "nitrate thatcan", "text": "nitrate thatcan", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.91997782389323, "t": 477.36452229817706, "r": 176.73958333333334, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "dissolve in grams per", "text": "dissolve in grams per", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 473.12058512369794, "r": 193.2296346028646, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.49715677897136, "t": 466.33026123046875, "r": 154.75283813476562, "b": 452.74961344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "100 cm3 of water", "text": "100 cm3 of water", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 445.95928955078125, "r": 194.49810791015625, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.2765096028646, "t": 417.10044352213544, "r": 194.49810791015625, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 388.66595458984375, "r": 194.49810791015625, "b": 376.78289794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 360.23146565755206, "r": 194.49810791015625, "b": 347.92401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 332.22137451171875, "r": 194.49810791015625, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 186.04166666666666, "t": 302.9381306966146, "r": 194.9209187825521, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 194.07527669270834, "t": 293.1770222981771, "r": 200.8404337565104, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 219.8674112955729, "t": 293.6014200846354, "r": 233.3977254231771, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 244.3910929361979, "t": 293.6014200846354, "r": 262.1496175130208, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 274.4114583333333, "t": 293.6014200846354, "r": 289.21022542317706, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 304.0089925130208, "t": 293.6014200846354, "r": 319.23057047526044, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 332.76088460286456, "t": 293.6014200846354, "r": 346.7139892578125, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 360.2443033854167, "t": 293.6014200846354, "r": 375.4659016927083, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 387.7277425130208, "t": 293.6014200846354, "r": 402.5264892578125, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 417.7480875651042, "t": 293.6014200846354, "r": 432.9696858723958, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 445.2315266927083, "t": 294.4502156575521, "r": 491.3191324869792, "b": 282.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "90100", "text": "90100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 308.23720296223956, "t": 278.3232218424479, "r": 398.7211100260417, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Temperature in \u00b0C", "text": "Temperature in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 480.7485758463542, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Astudentaddsammoniumnitratetowaterat80\u00b0Cuntilnomoredissolves.", "text": "Astudentaddsammoniumnitratetowaterat80\u00b0Cuntilnomoredissolves.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 748.9774373372396, "r": 533.601318359375, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "The student cools 100 cm3 of this solution of ammonium nitrate from 80 \u00b0C to 20 \u00b0C to produce crystals of ammonium nitrate.", "text": "The student cools 100 cm3 of this solution of ammonium nitrate from 80 \u00b0C to 20 \u00b0C to produce crystals of ammonium nitrate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 696.3524373372396, "r": 524.2992350260416, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Determine the mass of ammonium nitrate that crystallises on cooling 1o0 cm? of this solutionfrom80\u00b0Cto20\u00b0C", "text": "Determine the mass of ammonium nitrate that crystallises on cooling 1o0 cm? of this solutionfrom80\u00b0Cto20\u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 670.8887329101562, "r": 536.5610758463541, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 337.83473714192706, "t": 493.49155680338544, "r": 375.8887125651042, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Mass =", "text": "Mass =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 556.4337158203125, "t": 497.31109619140625, "r": 563.1988525390625, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 207.6055908203125, "t": 427.28590901692706, "r": 370.3920491536458, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 80.33617146809895, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 280.7537841796875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Thisquestionis about electrolysis.", "text": "Thisquestionis about electrolysis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 748.9774373372396, "r": 446.9228108723958, "b": 724.3625183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Figure 2 shows the apparatus used to investigate the electrolysis of potassium sulfate solution.", "text": "Figure 2 shows the apparatus used to investigate the electrolysis of potassium sulfate solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 302.3177083333333, "t": 709.0842997233073, "r": 348.4053141276042, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 268.91477457682294, "t": 681.07421875, "r": 406.3319091796875, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "50cm3measuringcylinders", "text": "50cm3measuringcylinders", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 231.7064412434896, "t": 625.4784545898438, "r": 271.4517008463542, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Oxygen", "text": "Oxygen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 396.1841634114583, "t": 625.4784545898438, "r": 447.7684733072917, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Hydrogen", "text": "Hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 183.0819091796875, "t": 563.941141764323, "r": 237.203125, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Potassium", "text": "Potassium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 183.92755126953125, "t": 551.2092895507812, "r": 258.76702880859375, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "sulfatesolution", "text": "sulfatesolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 412.6742350260417, "t": 529.1407470703125, "r": 439.7348225911458, "b": 516.8332926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Inert", "text": "Inert", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 413.9427083333333, "t": 517.2576904296875, "r": 466.3726399739583, "b": 504.52581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "electrodes", "text": "electrodes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 320.07623291015625, "t": 454.44720458984375, "r": 353.0563557942708, "b": 441.71535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Power", "text": "Power", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 319.6534016927083, "t": 442.13975016276044, "r": 353.9019775390625, "b": 428.55910237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "supply", "text": "supply", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 412.85646565755206, "r": 104.01420084635417, "b": 397.15386962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 412.00767008463544, "r": 337.83473714192706, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Potassium sulfate contains K+ and SO42- ions.", "text": "Potassium sulfate contains K+ and SO42- ions.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 386.54396565755206, "r": 316.6936442057292, "b": 374.23651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "What is the formula of potassium sulfate?", "text": "What is the formula of potassium sulfate?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.4734700520833, "t": 373.81211344401044, "r": 536.1382242838541, "b": 359.38267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 359.38267008463544, "r": 200.8404337565104, "b": 344.10447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 319.06512451171875, "r": 144.18229166666666, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "KSO4", "text": "KSO4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 282.14276123046875, "r": 147.98768107096353, "b": 268.5621134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "K2SO4", "text": "K2SO4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 246.06915283203125, "r": 155.59848022460938, "b": 229.94215901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "K(SO4)2", "text": "K(SO4)2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 209.57118733723962, "r": 158.9810587565104, "b": 192.59539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "K2(SO4)2", "text": "K2(SO4)2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 104.85984293619792, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 775.2899424235026, "r": 463.835693359375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "What are the volumes of gases collected in the electrolysis experiment?", "text": "What are the volumes of gases collected in the electrolysis experiment?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 749.4018351236979, "r": 183.92755126953125, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 2.", "text": "Use Figure 2.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 490.4734700520833, "t": 737.5187683105469, "r": 536.1382242838541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 337.41192626953125, "t": 701.0207926432291, "r": 537.4066975911459, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Volumeof hydrogen= cm3", "text": "Volumeof hydrogen= cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 346.7139892578125, "t": 662.8252156575521, "r": 537.4066975911459, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Volume of oxygen = cm3", "text": "Volume of oxygen = cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.62452697753906, "t": 584.3121134440105, "r": 101.9000956217448, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 583.887715657552, "r": 315.42519124348956, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "A student made the following hypothesis:", "text": "A student made the following hypothesis:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 545.692159016927, "r": 397.0298258463542, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "as hydrogen atoms to oxygen atoms in a water molecule.'", "text": "as hydrogen atoms to oxygen atoms in a water molecule.'", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 521.5016276041667, "r": 531.4871826171875, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Explain how the volumes of gases collected in the experiment in Figure 2 support the student's hypothesis.", "text": "Explain how the volumes of gases collected in the experiment in Figure 2 support the student's hypothesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 482.45729573567706, "r": 282.02223714192706, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Use your answer to Question 02.2", "text": "Use your answer to Question 02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 470.14980061848956, "r": 536.1382242838541, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 187.73295084635416, "t": 252.43511962890625, "r": 390.2646484375, "b": 238.43007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 2 continues on the next page", "text": "Question 2 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 7, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 289.21022542317706, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "The experiment isrepeated 4 times.", "text": "The experiment isrepeated 4 times.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 399.9895833333333, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "The volumes of oxygen collected in the 4 experiments are:", "text": "The volumes of oxygen collected in the 4 experiments are:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 243.96826171875, "t": 723.0893351236979, "r": 406.3319091796875, "b": 710.3574829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "6 cm39 cm310 cm311cm3", "text": "6 cm39 cm310 cm311cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 696.3524373372396, "r": 445.2315266927083, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "The mean volume of oxygen collected in the 4 experiments is 9 cm3", "text": "The mean volume of oxygen collected in the 4 experiments is 9 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 670.4643351236979, "r": 519.648193359375, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "The measure of uncertainty is the range of a set of measurements about the mean.", "text": "The measure of uncertainty is the range of a set of measurements about the mean.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 631.8443806966146, "r": 393.2244059244792, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "What is the measure of uncertainty in the 4 experiments?", "text": "What is the measure of uncertainty in the 4 experiments?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.4734700520833, "t": 618.6881306966146, "r": 536.1382242838541, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 604.2586873372396, "r": 200.8404337565104, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 563.941141764323, "r": 162.78645833333334, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "9 \u00b1 1cm3", "text": "9 \u00b1 1cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 527.018778483073, "r": 162.78645833333334, "b": 513.862528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "9 \u00b12cm3", "text": "9 \u00b12cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 490.09637451171875, "r": 162.78645833333334, "b": 476.94012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "9 \u00b13cm3", "text": "9 \u00b13cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 8, "bbox": {"l": 49.04734802246094, "t": 403.09539794921875, "r": 479.4801025390625, "b": 377.20729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "02.5 The potassium sulfate solution has 0.86 g of potassium sulfate dissolved in 25 cm? of water.", "text": "02.5 The potassium sulfate solution has 0.86 g of potassium sulfate dissolved in 25 cm? of water.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.16192626953125, "t": 364.05104573567706, "r": 488.359375, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Calculate the mass of potassium sulfate needed to make 1.0 dm? of solution.", "text": "Calculate the mass of potassium sulfate needed to make 1.0 dm? of solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 484.976806640625, "t": 350.47039794921875, "r": 536.1382242838541, "b": 337.31414794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 338.6803792317708, "t": 173.92197672526038, "r": 378.0028483072917, "b": 160.76572672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Mass =", "text": "Mass =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 556.0108642578125, "t": 176.46836344401038, "r": 564.4673258463541, "b": 165.43410237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 525.9905192057291, "t": 169.67803955078125, "r": 532.7556559244791, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "g", "text": "g", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 285.82763671875, "t": 810.9391352335612, "r": 292.59279378255206, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.201700846354164, "t": 774.441151936849, "r": 79.06770833333333, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 115.007568359375, "t": 774.0167541503906, "r": 432.546875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Plan an investigation to find the order of reactivity of three metals.", "text": "Plan an investigation to find the order of reactivity of three metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 748.9774373372396, "r": 451.9966634114583, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "You should use the temperature change when each metal reacts with hydrochloric acid.", "text": "You should use the temperature change when each metal reacts with hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.553955078125, "t": 722.6649373372396, "r": 534.8697916666666, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 210.14251708984375, "t": 140.81915283203125, "r": 373.351806640625, "b": 127.66290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 80.75899251302083, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "6.0.", "text": "6.0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 556.0108642578125, "t": 210.41998291015625, "r": 564.4673258463541, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 467.6410725911458, "t": 25.38368733723962, "r": 539.9436442057291, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 184.35038248697916, "t": 440.44215901692706, "r": 394.070068359375, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 199.99479166666666, "t": 455.29600016276044, "r": 270.60605875651044, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Chlorine atom", "text": "Chlorine atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 382.6538899739583, "t": 450.20322672526044, "r": 449.882568359375, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Oxygen atom", "text": "Oxygen atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 313.73388671875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "This question is about Group 7 elements.", "text": "This question is about Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 50.31581115722656, "t": 744.7334899902344, "r": 90.48389689127605, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "04.", "text": "04.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 744.7334899902344, "r": 324.7272542317708, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "What are theGroup7elementsknown as?", "text": "What are theGroup7elementsknown as?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 732.426035563151, "r": 536.1382242838541, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.04734802246094, "t": 640.7566731770834, "r": 109.93370564778645, "b": 625.0540568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 102.74573771158855, "t": 639.4834798177084, "r": 350.9422200520833, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Why do Group7elementsreact in similar ways?", "text": "Why do Group7elementsreact in similar ways?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.4734700520833, "t": 627.6004231770834, "r": 535.7154134114584, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 508.769775390625, "r": 410.1372884114583, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "04.3 Figure 3 shows the structure of a molecule of chlorine oxide.", "text": "04.3 Figure 3 shows the structure of a molecule of chlorine oxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 11, "bbox": {"l": 302.7405192057292, "t": 481.60850016276044, "r": 347.9824625651042, "b": 466.75465901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 199.99479166666666, "t": 455.29600016276044, "r": 270.60605875651044, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Chlorine atom", "text": "Chlorine atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 382.6538899739583, "t": 450.20322672526044, "r": 449.882568359375, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Oxygen atom", "text": "Oxygen atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 349.62160237630206, "r": 536.1382242838541, "b": 322.0359090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "What is the molecular formula of the chlorine oxide molecule in Figure 3? [1 mark]", "text": "What is the molecular formula of the chlorine oxide molecule in Figure 3? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 187.31011962890625, "t": 247.34234619140625, "r": 391.1103108723958, "b": 232.48854573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 4 continues on the next page", "text": "Question 4 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 50.73863728841146, "t": 259.22540283203125, "r": 101.054443359375, "b": 246.06915283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 115.43039957682292, "t": 774.441151936849, "r": 415.6339925130208, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Figure 4 shows the melting points of some Group 7 elements.", "text": "Figure 4 shows the melting points of some Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 12, "bbox": {"l": 302.3177083333333, "t": 749.4018351236979, "r": 348.4053141276042, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 697.2012329101562, "r": 215.21636962890625, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "350", "text": "350", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 669.1911417643229, "r": 215.63920084635416, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "300", "text": "300", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 641.1810709635416, "r": 215.21636962890625, "b": 628.44921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "250", "text": "250", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 612.3222045898438, "r": 215.21636962890625, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 194.07527669270834, "t": 583.4633382161458, "r": 215.21636962890625, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "150", "text": "150", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 194.07527669270834, "t": 555.8776448567708, "r": 215.63920084635416, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 199.99479166666666, "t": 527.018778483073, "r": 215.63920084635416, "b": 514.7113037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 145.45075480143228, "t": 512.589335123698, "r": 183.0819091796875, "b": 498.15989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Melting", "text": "Melting", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 144.18229166666666, "t": 498.58428955078125, "r": 173.35699462890625, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "point", "text": "point", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 206.33711751302084, "t": 497.73549397786456, "r": 215.21636962890625, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 144.60511271158853, "t": 487.55002848307294, "r": 174.2026570638021, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "in \u2103", "text": "in \u2103", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 192.38399251302084, "t": 470.57419840494794, "r": 215.63920084635416, "b": 458.26674397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "-50", "text": "-50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 226.20975748697916, "t": 347.49961344401044, "r": 267.2234700520833, "b": 335.61655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Fluorine", "text": "Fluorine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 346.65081787109375, "r": 325.9957275390625, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Chlorine", "text": "Chlorine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 338.6803792317708, "t": 347.07521565755206, "r": 381.3854166666667, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Bromine", "text": "Bromine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 399.9895833333333, "t": 347.07521565755206, "r": 432.9696858723958, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "lodine", "text": "lodine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 452.4195149739583, "t": 346.65081787109375, "r": 494.2788899739583, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Astatine", "text": "Astatine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 318.3849283854167, "t": 327.55303955078125, "r": 402.5264892578125, "b": 313.5479939778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Group 7 element", "text": "Group 7 element", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 260.0741984049479, "r": 304.85463460286456, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "The melting point of fluorine is -220 \u00b0C", "text": "The melting point of fluorine is -220 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 233.76169840494788, "r": 211.41097005208334, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Complete Figure 4.", "text": "Complete Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 209.14678955078125, "r": 174.2026570638021, "b": 195.99053955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "You should:", "text": "You should:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 116.27604166666667, "t": 188.77581787109375, "r": 284.55918375651044, "b": 176.46836344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "\u00b7complete the scale on the y-axis", "text": "\u00b7complete the scale on the y-axis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 116.27604166666667, "t": 170.52683512369788, "r": 339.9488525390625, "b": 157.37058512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "\u00b7draw the bar for the melting point of fluorine.", "text": "\u00b7draw the bar for the melting point of fluorine.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.553955078125, "t": 156.94618733723962, "r": 535.2926025390625, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 421.976318359375, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Explain the trend in the melting points of the Group 7 elements.", "text": "Explain the trend in the melting points of the Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 749.4018351236979, "r": 184.35038248697916, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 4.", "text": "Use Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.553955078125, "t": 737.5187683105469, "r": 536.5610758463541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 518.106465657552, "r": 101.9000956217448, "b": 503.2526448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.6", "text": "04.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 518.106465657552, "r": 348.828125, "b": 505.37461344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "What is the state symbol for bromine at -50 \u00b0C?", "text": "What is the state symbol for bromine at -50 \u00b0C?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 491.79396565755206, "r": 184.773193359375, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 4.", "text": "Use Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.4734700520833, "t": 478.63771565755206, "r": 536.1382242838541, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.3162841796875, "t": 464.63267008463544, "r": 200.8404337565104, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Tick () one box.", "text": "Tick () one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 126.00094604492188, "t": 428.13470458984375, "r": 149.6789754231771, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "(aq)", "text": "(aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 226.20975748697916, "t": 427.28590901692706, "r": 242.6998087565104, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "(g)", "text": "(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 324.304443359375, "t": 426.86151123046875, "r": 336.9890950520833, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "(1)", "text": "(1)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 419.0165608723958, "t": 427.28590901692706, "r": 434.6609700520833, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "(s)", "text": "(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.201700846354164, "t": 355.56313069661456, "r": 105.2826639811198, "b": 340.28489176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "0\u2463.7", "text": "0\u2463.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 354.71433512369794, "r": 474.8290608723958, "b": 341.55808512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Evaporation and boiling occur at the surface of bromine at its boiling point.", "text": "Evaporation and boiling occur at the surface of bromine at its boiling point.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 328.82623291015625, "r": 536.1382242838541, "b": 302.51373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Name one more process that happens at the surface of bromine at its boiling point. [1 mark]", "text": "Name one more process that happens at the surface of bromine at its boiling point. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 210.9881591796875, "t": 225.69822184244788, "r": 374.1974283854167, "b": 212.54197184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 551.7826741536459, "t": 295.29901123046875, "r": 567.0042317708334, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 283.29071044921875, "t": 811.7879257202148, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 332.76088460286456, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "This question is about structure and bonding.", "text": "This question is about structure and bonding.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.73863728841146, "t": 745.582285563151, "r": 88.36979166666667, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 341.2173258463542, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Figure 5 represents part of a carbon molecule.", "text": "Figure 5 represents part of a carbon molecule.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 302.3177083333333, "t": 718.4209899902344, "r": 348.4053141276042, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 522.7748209635417, "r": 341.64013671875, "b": 510.4673665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Namethetypeofcarbonmolecule inFigure5.", "text": "Namethetypeofcarbonmolecule inFigure5.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 510.4673665364583, "r": 536.1382242838541, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 418.79799397786456, "r": 101.9000956217448, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 419.22239176432294, "r": 470.600830078125, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "text": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 394.18308512369794, "r": 535.7154134114584, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 332.76088460286456, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "This question is about structure and bonding.", "text": "This question is about structure and bonding.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.73863728841146, "t": 745.582285563151, "r": 88.36979166666667, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 341.2173258463542, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Figure 5 represents part of a carbon molecule.", "text": "Figure 5 represents part of a carbon molecule.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 302.3177083333333, "t": 718.4209899902344, "r": 348.4053141276042, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 522.7748209635417, "r": 341.64013671875, "b": 510.4673665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Namethetypeofcarbonmolecule inFigure5.", "text": "Namethetypeofcarbonmolecule inFigure5.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 510.4673665364583, "r": 536.1382242838541, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 418.79799397786456, "r": 101.9000956217448, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 419.22239176432294, "r": 470.600830078125, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "text": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 394.18308512369794, "r": 535.7154134114584, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 415.211181640625, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "An alloy of aluminium contains small amounts of other metals.", "text": "An alloy of aluminium contains small amounts of other metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 748.5530497233073, "r": 356.8617350260417, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Explainwhyother metalsareaddedto aluminium.", "text": "Explainwhyother metalsareaddedto aluminium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.89299011230469, "t": 462.51072184244794, "r": 106.12831624348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 111.625, "t": 462.08632405598956, "r": 377.1571858723958, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Figure 6 represents part of the structure of a polymer.", "text": "Figure 6 represents part of the structure of a polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 301.89487711588544, "t": 435.34942626953125, "r": 348.828125, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 340.79449462890625, "t": 407.33933512369794, "r": 415.211181640625, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Polymerchain", "text": "Polymerchain", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 332.22137451171875, "r": 488.359375, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Compare the bonding within the chains with the forces between the chains in this polymer.", "text": "Compare the bonding within the chains with the forces between the chains in this polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 306.3332722981771, "r": 536.1382242838541, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 415.211181640625, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "An alloy of aluminium contains small amounts of other metals.", "text": "An alloy of aluminium contains small amounts of other metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 748.5530497233073, "r": 356.8617350260417, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Explainwhyother metalsareaddedto aluminium.", "text": "Explainwhyother metalsareaddedto aluminium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.89299011230469, "t": 462.51072184244794, "r": 106.12831624348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 111.625, "t": 462.08632405598956, "r": 377.1571858723958, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Figure 6 represents part of the structure of a polymer.", "text": "Figure 6 represents part of the structure of a polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 301.89487711588544, "t": 435.34942626953125, "r": 348.828125, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 340.79449462890625, "t": 407.33933512369794, "r": 415.211181640625, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Polymerchain", "text": "Polymerchain", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 332.22137451171875, "r": 488.359375, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Compare the bonding within the chains with the forces between the chains in this polymer.", "text": "Compare the bonding within the chains with the forces between the chains in this polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 306.3332722981771, "r": 536.1382242838541, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 15, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 556.4337158203125, "t": 153.12660725911462, "r": 563.1988525390625, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 266.8006591796875, "t": 566.0631306966145, "r": 277.37119547526044, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 336.14345296223956, "t": 566.9119262695312, "r": 351.7878824869792, "b": 551.6336873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Cl", "text": "Cl", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 421.5535074869792, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "This question is about hydrogen chloride and hydrochloric acid.", "text": "This question is about hydrogen chloride and hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 745.1578877766927, "r": 87.52414957682292, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "06.", "text": "06.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 745.582285563151, "r": 516.6884358723959, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Complete the dot and cross diagram to represent the bonding in hydrogen chloride on Figure 7.", "text": "Complete the dot and cross diagram to represent the bonding in hydrogen chloride on Figure 7.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 707.38671875, "r": 364.8953450520833, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Use dots (o) and crosses (x) to represent electrons.", "text": "Use dots (o) and crosses (x) to represent electrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 681.4986063639323, "r": 379.6941324869792, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "You should show only the electrons in the outer shells.", "text": "You should show only the electrons in the outer shells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.976806640625, "t": 668.3423665364584, "r": 536.1382242838541, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 16, "bbox": {"l": 302.3177083333333, "t": 642.8786417643229, "r": 347.9824625651042, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 266.8006591796875, "t": 566.0631306966145, "r": 277.37119547526044, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 336.14345296223956, "t": 566.9119262695312, "r": 351.7878824869792, "b": 551.6336873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Cl", "text": "Cl", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 463.35947672526044, "r": 106.97395833333333, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 112.47064208984375, "t": 462.08632405598956, "r": 437.1979166666667, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Hydrogen chloride dissolves in water to produce hydrochloric acid.", "text": "Hydrogen chloride dissolves in water to produce hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.43039957682292, "t": 437.04697672526044, "r": 278.63966878255206, "b": 424.31512451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Hydrochloric acid is a strong acid.", "text": "Hydrochloric acid is a strong acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 411.15887451171875, "r": 306.54591878255206, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "What ismeant by the termstrong acid?", "text": "What ismeant by the termstrong acid?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.0506591796875, "t": 399.70021565755206, "r": 535.7154134114584, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.201700846354164, "t": 295.7234090169271, "r": 102.32291666666667, "b": 280.4451700846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 294.8746134440104, "r": 513.3058675130209, "b": 269.4109090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "Describe how magnesium can be used to distinguish between a strong acid and a weakacidofthesameconcentration.", "text": "Describe how magnesium can be used to distinguish between a strong acid and a weakacidofthesameconcentration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 268.98651123046875, "r": 536.1382242838541, "b": 254.55706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 73.57101949055989, "t": 23.26169840494788, "r": 77.37641906738281, "b": 18.59340413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.7135416666667, "t": 811.3635304768881, "r": 295.55255126953125, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 102.32291666666667, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "06].4", "text": "06].4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 450.7281901041667, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "The concentration of hydrochloric acid is increased by a factor of 100", "text": "The concentration of hydrochloric acid is increased by a factor of 100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 243.54545084635416, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "What isthechange inpH?", "text": "What isthechange inpH?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 187.73295084635416, "t": 567.3363037109375, "r": 391.1103108723958, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question6continuesonthenextpage", "text": "Question6continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 18, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 413.5198567708333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "06.5 Ethene and hydrogen chloride react toproduce chloroethane.", "text": "06.5 Ethene and hydrogen chloride react toproduce chloroethane.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 748.5530497233073, "r": 365.7410074869792, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "The displayed formulae equation for the reaction is:", "text": "The displayed formulae equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 161.51798502604166, "t": 718.8453877766927, "r": 170.820068359375, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 425.35888671875, "t": 723.0893351236979, "r": 434.2381591796875, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 449.882568359375, "t": 722.6649373372396, "r": 458.7618408203125, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 277.7940266927083, "t": 698.4744160970052, "r": 316.6936442057292, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "H\u2014CI", "text": "H\u2014CI", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 401.6808675130208, "t": 696.7768351236979, "r": 424.5132649739583, "b": 687.8645426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "H\u4e00", "text": "H\u4e00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 422.3991292317708, "t": 696.7768351236979, "r": 434.6609700520833, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 449.4597574869792, "t": 696.7768351236979, "r": 462.1444091796875, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 459.6074625651042, "t": 697.6256306966146, "r": 486.6680908203125, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "\u4e00Cl", "text": "\u4e00Cl", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 424.5132649739583, "t": 672.5863138834635, "r": 435.5066324869792, "b": 661.1276448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 449.4597574869792, "t": 672.1619160970052, "r": 458.7618408203125, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.43039957682292, "t": 645.0006306966146, "r": 245.23673502604166, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Thereactionisexothermic", "text": "Thereactionisexothermic", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 620.3857014973959, "r": 523.03076171875, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 120]}], "orig": "In the reaction the energy released forming new bonds is 56 kJ/mol greater than the energy needed tobreak existingbonds.", "text": "In the reaction the energy released forming new bonds is 56 kJ/mol greater than the energy needed tobreak existingbonds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.3162841796875, "t": 582.6145426432292, "r": 292.59279378255206, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Table1showssomebond energies.", "text": "Table1showssomebond energies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 304.0089925130208, "t": 556.3020426432292, "r": 345.445556640625, "b": 544.418965657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 453.59840901692706, "r": 256.2301025390625, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Calculate the bond energy X.", "text": "Calculate the bond energy X.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.1311442057292, "t": 442.13975016276044, "r": 536.1382242838541, "b": 426.86151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 327.68701171875, "t": 211.69317626953125, "r": 531.4871826171875, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "X= kJ/mol", "text": "X= kJ/mol", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 552.6282958984375, "t": 215.93711344401038, "r": 567.4270833333334, "b": 203.62965901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 80.33617146809895, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 50.31581115722656, "t": 745.1578877766927, "r": 100.20880126953125, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 80.33617146809895, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 353.0563557942708, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "This question is about elements and compounds.", "text": "This question is about elements and compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 50.31581115722656, "t": 745.1578877766927, "r": 100.20880126953125, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 744.7334899902344, "r": 282.445068359375, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Figure8showsareactivityseries.", "text": "Figure8showsareactivityseries.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 303.16335042317706, "t": 716.7234090169271, "r": 347.9824625651042, "b": 703.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 327.2642008463542, "t": 682.7717997233073, "r": 397.8754475911458, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Most reactive", "text": "Most reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 653.9129231770834, "r": 304.0089925130208, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Potassium", "text": "Potassium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.15625, "t": 625.0540568033854, "r": 309.0828450520833, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Magnesium", "text": "Magnesium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 595.7707926432291, "r": 290.4786783854167, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Metal Y", "text": "Metal Y", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 567.3363037109375, "r": 289.21022542317706, "b": 554.1800537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Carbon", "text": "Carbon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 538.0530395507812, "r": 271.87451171875, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Iron", "text": "Iron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 510.04296875, "r": 299.78076171875, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Hydrogen", "text": "Hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 480.75970458984375, "r": 289.63303629557294, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Copper", "text": "Copper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 324.304443359375, "t": 451.47642008463544, "r": 399.9895833333333, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Least reactive", "text": "Least reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 416.67604573567706, "r": 535.7154134114584, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "Give the method and conditions used to extract metal Y from a compound of metal Y. [2 marks]", "text": "Give the method and conditions used to extract metal Y from a compound of metal Y. [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 191.11551920572916, "t": 235.03489176432288, "r": 394.4928792317708, "b": 221.02984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question7continuesonthenextpage", "text": "Question7continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 327.2642008463542, "t": 682.7717997233073, "r": 397.8754475911458, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Most reactive", "text": "Most reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 653.9129231770834, "r": 304.0089925130208, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Potassium", "text": "Potassium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.15625, "t": 625.0540568033854, "r": 309.0828450520833, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Magnesium", "text": "Magnesium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 595.7707926432291, "r": 290.4786783854167, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Metal Y", "text": "Metal Y", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 567.3363037109375, "r": 289.21022542317706, "b": 554.1800537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Carbon", "text": "Carbon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 538.0530395507812, "r": 271.87451171875, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Iron", "text": "Iron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 510.04296875, "r": 299.78076171875, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Hydrogen", "text": "Hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 480.75970458984375, "r": 289.63303629557294, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Copper", "text": "Copper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 324.304443359375, "t": 451.47642008463544, "r": 399.9895833333333, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Least reactive", "text": "Least reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 424.0904134114583, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Sodium reacts with titanium chloride (TiCl4) to produce titanium.", "text": "Sodium reacts with titanium chloride (TiCl4) to produce titanium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 737.0943806966146, "r": 105.2826639811198, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.2", "text": "07.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 734.972401936849, "r": 227.47821044921875, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Complete the equation.", "text": "Complete the equation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.3162841796875, "t": 709.9330851236979, "r": 278.21685791015625, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "You should balance the equation.", "text": "You should balance the equation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 696.7768351236979, "r": 535.7154134114584, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 148.83333333333334, "t": 663.2496134440104, "r": 260.03550211588544, "b": 646.6982014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na + TiCl4 \u2192", "text": "Na + TiCl4 \u2192", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 50.31581115722656, "t": 593.6488037109375, "r": 103.16855875651042, "b": 579.2193806966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 112.89346313476562, "t": 593.6488037109375, "r": 458.3389892578125, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "The reaction between sodium and titanium chloride is a redox reaction.", "text": "The reaction between sodium and titanium chloride is a redox reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 568.1850992838542, "r": 448.1912841796875, "b": 555.4532470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Write a half-equation to show that sodium is oxidised in this reaction.", "text": "Write a half-equation to show that sodium is oxidised in this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 555.0288492838542, "r": 535.7154134114584, "b": 541.8725992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 296.82102457682294, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 103.16855875651042, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.4", "text": "07.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 484.976806640625, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "108 g of aluminum reacts with 1.21 kg of copper chloride to produce copper.", "text": "108 g of aluminum reacts with 1.21 kg of copper chloride to produce copper.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 749.4018351236979, "r": 270.60605875651044, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 21, "bbox": {"l": 238.04876708984375, "t": 723.9381306966146, "r": 410.9829508463542, "b": 712.0550638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "2Al+3CuCl2\u21923Cu+2AlCl3", "text": "2Al+3CuCl2\u21923Cu+2AlCl3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 687.8645426432291, "r": 421.5535074869792, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Calculate the maximum mass of copper produced in grams (g).", "text": "Calculate the maximum mass of copper produced in grams (g).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 661.5520426432291, "r": 323.0359700520833, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "You should determine the limiting reactant.", "text": "You should determine the limiting reactant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 636.0883382161459, "r": 354.3247884114583, "b": 622.0832926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Relative atomic masses (Ar): Al = 27 Cu = 63.5", "text": "Relative atomic masses (Ar): Al = 27 Cu = 63.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 610.6246134440104, "r": 410.9829508463542, "b": 597.8927612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Relative formula masses (Mr): CuCl2 = 134.5 AlCl3 = 133.5", "text": "Relative formula masses (Mr): CuCl2 = 134.5 AlCl3 = 133.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 597.0439656575521, "r": 536.5610758463541, "b": 582.6145426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 240.585693359375, "t": 258.8010457356771, "r": 332.76088460286456, "b": 247.34234619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Limiting reactant is", "text": "Limiting reactant is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 238.8944091796875, "t": 237.15688069661462, "r": 326.41855875651044, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Mass of copper =", "text": "Mass of copper =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 187.73295084635416, "t": 170.95123291015625, "r": 390.6875, "b": 156.94618733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Question7 continueson the nextpage", "text": "Question7 continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 775.7143351236979, "r": 456.2248942057292, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Sodium metal and sodium chloride are both able to conduct electricity.", "text": "Sodium metal and sodium chloride are both able to conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 47.77887980143229, "t": 736.2455851236979, "r": 101.9000956217448, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.5", "text": "07.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 735.8211873372396, "r": 349.2509358723958, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Describe how sodium metal conducts electricity.", "text": "Describe how sodium metal conducts electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.976806640625, "t": 722.2405497233073, "r": 535.7154134114584, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.89299011230469, "t": 556.3020426432292, "r": 101.9000956217448, "b": 541.4482014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "07].6", "text": "07].6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 556.7264404296875, "r": 368.7007649739583, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Explain how sodium chloride can conduct electricity.", "text": "Explain how sodium chloride can conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.553955078125, "t": 543.9945678710938, "r": 535.2926025390625, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 230.86079915364584, "t": 325.4310506184896, "r": 346.2911783854167, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "ENDOF QUESTIONS", "text": "ENDOF QUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 552.6282958984375, "t": 394.18308512369794, "r": 567.8498942057291, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 183.0819091796875, "t": 440.44215901692706, "r": 392.3787841796875, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 66.38304646809895, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 65.11458333333333, "t": 25.80808512369788, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 66.38304646809895, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 63.42329406738281, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 219]}], "orig": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 245]}], "orig": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Copyright @ 2022 AQA and its licensors. All rights reserved.", "text": "Copyright @ 2022 AQA and its licensors. All rights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 183.0819091796875, "t": 441.29095458984375, "r": 392.3787841796875, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 350.5194091796875, "t": 40.66192626953125, "r": 520.0710042317709, "b": 30.90085856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "226G8464/C/1H", "text": "226G8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.6445007324219, "t": 395.4227294921875, "r": 544.02490234375, "b": 214.38214111328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.26513671875, "t": 451.1320393880208, "r": 535.2926025390625, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 470.2298583984375, "r": 489.6278483072917, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 470.2298583984375, "r": 531.0643717447916, "b": 482.5373128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 488.9032389322917, "r": 473.5605875651042, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 505.8790283203125, "r": 473.5605875651042, "b": 515.64013671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 522.8548583984375, "r": 473.1377766927083, "b": 532.1915283203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 539.8306477864584, "r": 473.5605875651042, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 556.8064371744791, "r": 473.5605875651042, "b": 566.991943359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 573.7822672526041, "r": 473.5605875651042, "b": 583.5433349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 591.1824544270834, "r": 473.5605875651042, "b": 599.6703694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.882568359375, "t": 609.4314371744791, "r": 487.9365234375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.26513671875, "t": 451.1320393880208, "r": 535.2926025390625, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.26513671875, "t": 451.1320393880208, "r": 535.2926025390625, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 470.2298583984375, "r": 489.6278483072917, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 470.2298583984375, "r": 531.0643717447916, "b": 482.5373128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 488.9032389322917, "r": 473.5605875651042, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 505.8790283203125, "r": 473.5605875651042, "b": 515.64013671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 522.8548583984375, "r": 473.1377766927083, "b": 532.1915283203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 539.8306477864584, "r": 473.5605875651042, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 556.8064371744791, "r": 473.5605875651042, "b": 566.991943359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 573.7822672526041, "r": 473.5605875651042, "b": 583.5433349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 591.1824544270834, "r": 473.5605875651042, "b": 599.6703694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.882568359375, "t": 609.4314371744791, "r": 487.9365234375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 18, "bbox": {"l": 177.91253662109375, "t": 532.1428527832031, "r": 471.9355773925781, "b": 467.1118469238281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 182.23626708984375, "t": 317.023193359375, "r": 213.1022745768229, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bond", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 267.2234700520833, "t": 316.5987955729167, "r": 292.59279378255206, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "H-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 309.92848714192706, "t": 317.023193359375, "r": 335.72064208984375, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "C=C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.9422200520833, "t": 317.023193359375, "r": 379.6941324869792, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "H-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 395.3385416666667, "t": 316.5987955729167, "r": 420.7078450520833, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "C-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 317.023193359375, "r": 464.6813151041667, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "C-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 182.23626708984375, "t": 342.4868977864583, "r": 250.7334187825521, "b": 368.7993977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bondenergy inkJ/mol", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 269.33758544921875, "t": 348.4284261067708, "r": 290.4786783854167, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "413", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 349.2772216796875, "r": 328.10984293619794, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "x", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 354.3247884114583, "t": 349.2772216796875, "r": 375.0430908203125, "b": 362.0090738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "431", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 397.0298258463542, "t": 349.2772216796875, "r": 418.59375, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "346", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 439.7348225911458, "t": 349.7016194661458, "r": 461.2987467447917, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "339", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 2, "num_cols": 6, "orientation": "rot_0", "grid": [[{"bbox": {"l": 182.23626708984375, "t": 317.023193359375, "r": 213.1022745768229, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bond", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 267.2234700520833, "t": 316.5987955729167, "r": 292.59279378255206, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "H-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 309.92848714192706, "t": 317.023193359375, "r": 335.72064208984375, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "C=C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.9422200520833, "t": 317.023193359375, "r": 379.6941324869792, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "H-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 395.3385416666667, "t": 316.5987955729167, "r": 420.7078450520833, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "C-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 317.023193359375, "r": 464.6813151041667, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "C-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 182.23626708984375, "t": 342.4868977864583, "r": 250.7334187825521, "b": 368.7993977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bondenergy inkJ/mol", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 269.33758544921875, "t": 348.4284261067708, "r": 290.4786783854167, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "413", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 349.2772216796875, "r": 328.10984293619794, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "x", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 354.3247884114583, "t": 349.2772216796875, "r": 375.0430908203125, "b": 362.0090738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "431", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 397.0298258463542, "t": 349.2772216796875, "r": 418.59375, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "346", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 439.7348225911458, "t": 349.7016194661458, "r": 461.2987467447917, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "339", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.79048156738281, "t": 799.1484489440918, "r": 169.33349609375, "b": 751.7754821777344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.5687370300293, "t": 53.447021484375, "r": 260.0397644042969, "b": 17.4593505859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 499.9075622558594, "t": 546.5237731933594, "r": 543.283203125, "b": 492.9493408203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.48795700073242, "t": 53.01129150390625, "r": 99.5518798828125, "b": 16.3326416015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.731075286865234, "t": 53.1234130859375, "r": 99.06757354736328, "b": 17.42724609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 39.90925979614258, "t": 788.3383407592773, "r": 539.5222778320312, "b": 75.62664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.61348342895508, "t": 53.30914306640625, "r": 99.17985534667969, "b": 17.54168701171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.736167907714844, "t": 53.16796875, "r": 99.1783447265625, "b": 17.5302734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 39.979766845703125, "t": 787.9906692504883, "r": 565.450927734375, "b": 75.2119140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.70774841308594, "t": 53.13519287109375, "r": 99.08021545410156, "b": 17.54150390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.82590103149414, "t": 53.19244384765625, "r": 99.24347686767578, "b": 17.65533447265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.71919631958008, "t": 53.1612548828125, "r": 99.12417602539062, "b": 17.5555419921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.74698257446289, "t": 53.18414306640625, "r": 99.09233856201172, "b": 17.62640380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 543.3880004882812, "t": 235.318603515625, "r": 575.90380859375, "b": 193.9166259765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.471134185791016, "t": 53.17144775390625, "r": 99.5299301147461, "b": 16.9287109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.7734489440918, "t": 53.146484375, "r": 99.2735366821289, "b": 17.89306640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 199.81361389160156, "t": 454.4280700683594, "r": 448.8752136230469, "b": 363.1585693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.62034606933594, "t": 53.29388427734375, "r": 99.07697296142578, "b": 17.30511474609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/2"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 145.95323181152344, "t": 722.9683380126953, "r": 502.8610534667969, "b": 313.97369384765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.79945373535156, "t": 53.1492919921875, "r": 99.1850814819336, "b": 17.49383544921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 39.65153884887695, "t": 787.9851226806641, "r": 539.361572265625, "b": 75.42340087890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.73477554321289, "t": 53.20611572265625, "r": 99.19538879394531, "b": 17.77740478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 40.30547332763672, "t": 787.8382034301758, "r": 538.6801147460938, "b": 75.74310302734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.73532485961914, "t": 53.18359375, "r": 99.1739273071289, "b": 17.454833984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 543.523193359375, "t": 178.8212890625, "r": 575.2889404296875, "b": 137.7919921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 248.36061096191406, "t": 619.3990631103516, "r": 400.34326171875, "b": 502.91015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.68505859375, "t": 53.21319580078125, "r": 99.13385772705078, "b": 17.48260498046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.8148193359375, "t": 53.18902587890625, "r": 99.27465057373047, "b": 17.84124755859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 160.50936889648438, "t": 723.0121917724609, "r": 486.46734619140625, "b": 662.5936126708984, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.630977630615234, "t": 53.2061767578125, "r": 99.01527404785156, "b": 17.714599609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 543.5875244140625, "t": 240.2454833984375, "r": 575.9736938476562, "b": 199.5877685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 46.48485565185547, "t": 776.6813812255859, "r": 81.98703002929688, "b": 759.3180694580078, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 46.999271392822266, "t": 746.6977081298828, "r": 104.37225341796875, "b": 730.5146484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.84652328491211, "t": 53.1729736328125, "r": 99.21656799316406, "b": 17.734130859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 250.1741180419922, "t": 683.5161590576172, "r": 398.9270324707031, "b": 440.20361328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.68428039550781, "t": 53.1865234375, "r": 99.17168426513672, "b": 17.3621826171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.703269958496094, "t": 53.1361083984375, "r": 99.26348114013672, "b": 17.64483642578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.818931579589844, "t": 53.05535888671875, "r": 99.13025665283203, "b": 17.30499267578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 543.1671142578125, "t": 418.2695007324219, "r": 575.9228515625, "b": 377.17498779296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.45603561401367, "t": 52.97747802734375, "r": 99.51256561279297, "b": 16.436767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.730472564697266, "t": 53.16552734375, "r": 99.35018920898438, "b": 17.1514892578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.69895553588867, "t": 53.1668701171875, "r": 99.3472671508789, "b": 16.82537841796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.691429138183594, "t": 53.14117431640625, "r": 99.34754180908203, "b": 16.77655029296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.77190017700195, "t": 53.216064453125, "r": 99.36135864257812, "b": 17.26806640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.7439079284668, "t": 53.30078125, "r": 99.22008514404297, "b": 17.2099609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 334.399169921875, "t": 67.79498291015625, "r": 539.0598754882812, "b": 32.12347412109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}, "2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}, "3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}, "4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}, "5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}, "6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}, "7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}, "8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}, "9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}, "10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}, "11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}, "12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}, "13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}, "14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}, "15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}, "16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}, "17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}, "18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}, "19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}, "20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}, "21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}, "22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}, "23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}, "24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}, "25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}, "26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}, "27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}, "28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}, "_failed_pages": []} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p1.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p1.json new file mode 100644 index 0000000..233b9c3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p1.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/15"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/23"}, {"$ref": "#/groups/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/28"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 36.785509745279946, "t": 789.7193756103516, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 653.488525390625, "r": 102.74573771158855, "b": 640.7566731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 628.44921875, "r": 120.08144124348958, "b": 614.4441731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 600.863525390625, "r": 155.59848022460938, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 587.707275390625, "r": 296.82102457682294, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 555.8776448567708, "r": 546.2859700520834, "b": 492.21836344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "GCSE H COMBINED SCIENCE: TRILOGY", "text": "GCSE H COMBINED SCIENCE: TRILOGY", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 40.59090677897135, "t": 482.45729573567706, "r": 178.0080362955729, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Higher Tier Chemistry Paper 1H", "text": "Higher Tier Chemistry Paper 1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 398.00262451171875, "r": 92.17519124348958, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 384.42197672526044, "r": 186.04166666666666, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 369.56817626953125, "r": 83.71875, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "\u00b7a ruler", "text": "\u00b7a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 356.41192626953125, "r": 153.484375, "b": 346.22642008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7a scientific calculator", "text": "\u00b7a scientific calculator", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 343.25567626953125, "r": 191.9611612955729, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "\u00b7 the periodic table (enclosed).", "text": "the periodic table (enclosed).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 317.3675740559896, "r": 108.66524251302083, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 304.2113240559896, "r": 231.28361002604166, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 290.63067626953125, "r": 242.6998087565104, "b": 277.0500284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7Pencil should only be used for drawing.", "text": "\u00b7Pencil should only be used for drawing.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 264.7425740559896, "r": 270.60605875651044, "b": 249.88873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "\u00b7 Answer all questions in the spaces provided.", "text": "Answer all questions in the spaces provided.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.43655141194662, "t": 277.8988240559896, "r": 241.43133544921875, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "\u00b7Fill in the boxes at the top of this page.", "text": "\u00b7Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 251.16192626953125, "r": 424.5132649739583, "b": 224.84942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 224.42502848307288, "r": 429.5871175130208, "b": 199.81011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 198.11252848307288, "r": 356.0160725911458, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "\u00b7Inall calculations,showclearlyhowyouworkoutyouranswer.", "text": "\u00b7Inall calculations,showclearlyhowyouworkoutyouranswer.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 171.80002848307288, "r": 106.55113728841145, "b": 159.06817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 157.37058512369788, "r": 245.23673502604166, "b": 145.48752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 The maximum mark for this paper is 70.", "text": "The maximum mark for this paper is 70.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 42.282196044921875, "t": 143.36553955078125, "r": 281.59942626953125, "b": 132.33127848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Themarksforquestionsareshowninbrackets.", "text": "Themarksforquestionsareshowninbrackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 117.47743733723962, "r": 474.40625, "b": 104.32118733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 85]}], "orig": "You are reminded of the need for good English and clear presentation in your answers.", "text": "You are reminded of the need for good English and clear presentation in your answers.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 237.62593587239584, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "JUN228464C1H01", "text": "JUN228464C1H01", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 325.5729166666667, "t": 428.55910237630206, "r": 539.5208333333334, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Time allowed: 1 hour 15 minutes", "text": "Time allowed: 1 hour 15 minutes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 367.8551025390625, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E10", "text": "IB/M/Jun22/E10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 449.4597574869792, "t": 33.87156168619788, "r": 545.4403076171875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "8464/C/1H", "text": "8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.79048156738281, "t": 799.1484489440918, "r": 169.33349609375, "b": 751.7754821777344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.5687370300293, "t": 53.447021484375, "r": 260.0397644042969, "b": 17.4593505859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 499.9075622558594, "t": 546.5237731933594, "r": 543.283203125, "b": 492.9493408203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.6445007324219, "t": 395.4227294921875, "r": 544.02490234375, "b": 214.38214111328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.26513671875, "t": 451.1320393880208, "r": 535.2926025390625, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.7281901041667, "t": 470.2298583984375, "r": 489.6278483072917, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 470.2298583984375, "r": 531.0643717447916, "b": 482.5373128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.3726399739583, "t": 488.9032389322917, "r": 473.5605875651042, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 505.8790283203125, "r": 473.5605875651042, "b": 515.64013671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 522.8548583984375, "r": 473.1377766927083, "b": 532.1915283203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 539.8306477864584, "r": 473.5605875651042, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 556.8064371744791, "r": 473.5605875651042, "b": 566.991943359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 573.7822672526041, "r": 473.5605875651042, "b": 583.5433349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 466.7954508463542, "t": 591.1824544270834, "r": 473.5605875651042, "b": 599.6703694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 449.882568359375, "t": 609.4314371744791, "r": 487.9365234375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.26513671875, "t": 451.1320393880208, "r": 535.2926025390625, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.26513671875, "t": 451.1320393880208, "r": 535.2926025390625, "b": 463.4395345052083, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.7281901041667, "t": 470.2298583984375, "r": 489.6278483072917, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 507.3863525390625, "t": 470.2298583984375, "r": 531.0643717447916, "b": 482.5373128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.3726399739583, "t": 488.9032389322917, "r": 473.5605875651042, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 505.8790283203125, "r": 473.5605875651042, "b": 515.64013671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 522.8548583984375, "r": 473.1377766927083, "b": 532.1915283203125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 539.8306477864584, "r": 473.5605875651042, "b": 549.1673583984375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 556.8064371744791, "r": 473.5605875651042, "b": 566.991943359375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 573.7822672526041, "r": 473.5605875651042, "b": 583.5433349609375, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 466.7954508463542, "t": 591.1824544270834, "r": 473.5605875651042, "b": 599.6703694661459, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 449.882568359375, "t": 609.4314371744791, "r": 487.9365234375, "b": 622.5876871744791, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p10.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p10.json new file mode 100644 index 0000000..0253dff --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p10.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 184.35038248697916, "t": 440.44215901692706, "r": 394.070068359375, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.471134185791016, "t": 53.17144775390625, "r": 99.5299301147461, "b": 16.9287109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p11.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p11.json new file mode 100644 index 0000000..cbf0e17 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p11.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 199.99479166666666, "t": 455.29600016276044, "r": 270.60605875651044, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Chlorine atom", "text": "Chlorine atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 382.6538899739583, "t": 450.20322672526044, "r": 449.882568359375, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Oxygen atom", "text": "Oxygen atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 313.73388671875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "This question is about Group 7 elements.", "text": "This question is about Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 50.31581115722656, "t": 744.7334899902344, "r": 90.48389689127605, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "04.", "text": "04.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 744.7334899902344, "r": 324.7272542317708, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "What are theGroup7elementsknown as?", "text": "What are theGroup7elementsknown as?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.0506591796875, "t": 732.426035563151, "r": 536.1382242838541, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.04734802246094, "t": 640.7566731770834, "r": 109.93370564778645, "b": 625.0540568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 102.74573771158855, "t": 639.4834798177084, "r": 350.9422200520833, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Why do Group7elementsreact in similar ways?", "text": "Why do Group7elementsreact in similar ways?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 490.4734700520833, "t": 627.6004231770834, "r": 535.7154134114584, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 49.47016906738281, "t": 508.769775390625, "r": 410.1372884114583, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "04.3 Figure 3 shows the structure of a molecule of chlorine oxide.", "text": "04.3 Figure 3 shows the structure of a molecule of chlorine oxide.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 11, "bbox": {"l": 302.7405192057292, "t": 481.60850016276044, "r": 347.9824625651042, "b": 466.75465901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 199.99479166666666, "t": 455.29600016276044, "r": 270.60605875651044, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Chlorine atom", "text": "Chlorine atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 382.6538899739583, "t": 450.20322672526044, "r": 449.882568359375, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Oxygen atom", "text": "Oxygen atom", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 114.16192626953125, "t": 349.62160237630206, "r": 536.1382242838541, "b": 322.0359090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "What is the molecular formula of the chlorine oxide molecule in Figure 3? [1 mark]", "text": "What is the molecular formula of the chlorine oxide molecule in Figure 3? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 187.31011962890625, "t": 247.34234619140625, "r": 391.1103108723958, "b": 232.48854573567712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 4 continues on the next page", "text": "Question 4 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 11, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.7734489440918, "t": 53.146484375, "r": 99.2735366821289, "b": 17.89306640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 199.81361389160156, "t": 454.4280700683594, "r": 448.8752136230469, "b": 363.1585693359375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p12.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p12.json new file mode 100644 index 0000000..4c98b15 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p12.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 50.73863728841146, "t": 259.22540283203125, "r": 101.054443359375, "b": 246.06915283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.4", "text": "04.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 115.43039957682292, "t": 774.441151936849, "r": 415.6339925130208, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Figure 4 shows the melting points of some Group 7 elements.", "text": "Figure 4 shows the melting points of some Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 12, "bbox": {"l": 302.3177083333333, "t": 749.4018351236979, "r": 348.4053141276042, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 697.2012329101562, "r": 215.21636962890625, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "350", "text": "350", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 669.1911417643229, "r": 215.63920084635416, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "300", "text": "300", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 641.1810709635416, "r": 215.21636962890625, "b": 628.44921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "250", "text": "250", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 193.6524658203125, "t": 612.3222045898438, "r": 215.21636962890625, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "200", "text": "200", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 194.07527669270834, "t": 583.4633382161458, "r": 215.21636962890625, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "150", "text": "150", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 194.07527669270834, "t": 555.8776448567708, "r": 215.63920084635416, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 199.99479166666666, "t": 527.018778483073, "r": 215.63920084635416, "b": 514.7113037109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 145.45075480143228, "t": 512.589335123698, "r": 183.0819091796875, "b": 498.15989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Melting", "text": "Melting", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 144.18229166666666, "t": 498.58428955078125, "r": 173.35699462890625, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "point", "text": "point", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 206.33711751302084, "t": 497.73549397786456, "r": 215.21636962890625, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 144.60511271158853, "t": 487.55002848307294, "r": 174.2026570638021, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "in \u2103", "text": "in \u2103", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 192.38399251302084, "t": 470.57419840494794, "r": 215.63920084635416, "b": 458.26674397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "-50", "text": "-50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 226.20975748697916, "t": 347.49961344401044, "r": 267.2234700520833, "b": 335.61655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Fluorine", "text": "Fluorine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 346.65081787109375, "r": 325.9957275390625, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Chlorine", "text": "Chlorine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 338.6803792317708, "t": 347.07521565755206, "r": 381.3854166666667, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Bromine", "text": "Bromine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 399.9895833333333, "t": 347.07521565755206, "r": 432.9696858723958, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "lodine", "text": "lodine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 452.4195149739583, "t": 346.65081787109375, "r": 494.2788899739583, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Astatine", "text": "Astatine", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 318.3849283854167, "t": 327.55303955078125, "r": 402.5264892578125, "b": 313.5479939778646, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Group 7 element", "text": "Group 7 element", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 260.0741984049479, "r": 304.85463460286456, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "The melting point of fluorine is -220 \u00b0C", "text": "The melting point of fluorine is -220 \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.58474731445312, "t": 233.76169840494788, "r": 211.41097005208334, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "Complete Figure 4.", "text": "Complete Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 209.14678955078125, "r": 174.2026570638021, "b": 195.99053955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "You should:", "text": "You should:", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 116.27604166666667, "t": 188.77581787109375, "r": 284.55918375651044, "b": 176.46836344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "\u00b7complete the scale on the y-axis", "text": "\u00b7complete the scale on the y-axis", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 12, "bbox": {"l": 116.27604166666667, "t": 170.52683512369788, "r": 339.9488525390625, "b": 157.37058512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "\u00b7draw the bar for the melting point of fluorine.", "text": "\u00b7draw the bar for the melting point of fluorine.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.553955078125, "t": 156.94618733723962, "r": 535.2926025390625, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.62034606933594, "t": 53.29388427734375, "r": 99.07697296142578, "b": 17.30511474609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/2"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 145.95323181152344, "t": 722.9683380126953, "r": 502.8610534667969, "b": 313.97369384765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p13.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p13.json new file mode 100644 index 0000000..e70675e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p13.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/18"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 421.976318359375, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "Explain the trend in the melting points of the Group 7 elements.", "text": "Explain the trend in the melting points of the Group 7 elements.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 749.4018351236979, "r": 184.35038248697916, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 4.", "text": "Use Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.553955078125, "t": 737.5187683105469, "r": 536.5610758463541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 49.47016906738281, "t": 518.106465657552, "r": 101.9000956217448, "b": 503.2526448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.6", "text": "04.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 518.106465657552, "r": 348.828125, "b": 505.37461344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "What is the state symbol for bromine at -50 \u00b0C?", "text": "What is the state symbol for bromine at -50 \u00b0C?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 491.79396565755206, "r": 184.773193359375, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 4.", "text": "Use Figure 4.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 490.4734700520833, "t": 478.63771565755206, "r": 536.1382242838541, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.3162841796875, "t": 464.63267008463544, "r": 200.8404337565104, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Tick () one box.", "text": "Tick () one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 126.00094604492188, "t": 428.13470458984375, "r": 149.6789754231771, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "(aq)", "text": "(aq)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 226.20975748697916, "t": 427.28590901692706, "r": 242.6998087565104, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "(g)", "text": "(g)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 324.304443359375, "t": 426.86151123046875, "r": 336.9890950520833, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "(1)", "text": "(1)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 13, "bbox": {"l": 419.0165608723958, "t": 427.28590901692706, "r": 434.6609700520833, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "(s)", "text": "(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.201700846354164, "t": 355.56313069661456, "r": 105.2826639811198, "b": 340.28489176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "0\u2463.7", "text": "0\u2463.7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 354.71433512369794, "r": 474.8290608723958, "b": 341.55808512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Evaporation and boiling occur at the surface of bromine at its boiling point.", "text": "Evaporation and boiling occur at the surface of bromine at its boiling point.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 113.73910522460938, "t": 328.82623291015625, "r": 536.1382242838541, "b": 302.51373291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 91]}], "orig": "Name one more process that happens at the surface of bromine at its boiling point. [1 mark]", "text": "Name one more process that happens at the surface of bromine at its boiling point. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 210.9881591796875, "t": 225.69822184244788, "r": 374.1974283854167, "b": 212.54197184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "Turnoverforthenextquestion", "text": "Turnoverforthenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 13, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 551.7826741536459, "t": 295.29901123046875, "r": 567.0042317708334, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.79945373535156, "t": 53.1492919921875, "r": 99.1850814819336, "b": 17.49383544921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p14.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p14.json new file mode 100644 index 0000000..be0e368 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p14.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 283.29071044921875, "t": 811.7879257202148, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 332.76088460286456, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "This question is about structure and bonding.", "text": "This question is about structure and bonding.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.73863728841146, "t": 745.582285563151, "r": 88.36979166666667, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 341.2173258463542, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Figure 5 represents part of a carbon molecule.", "text": "Figure 5 represents part of a carbon molecule.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 302.3177083333333, "t": 718.4209899902344, "r": 348.4053141276042, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 522.7748209635417, "r": 341.64013671875, "b": 510.4673665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Namethetypeofcarbonmolecule inFigure5.", "text": "Namethetypeofcarbonmolecule inFigure5.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 510.4673665364583, "r": 536.1382242838541, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 418.79799397786456, "r": 101.9000956217448, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 419.22239176432294, "r": 470.600830078125, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "text": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 394.18308512369794, "r": 535.7154134114584, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 332.76088460286456, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "This question is about structure and bonding.", "text": "This question is about structure and bonding.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.73863728841146, "t": 745.582285563151, "r": 88.36979166666667, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "05.", "text": "05.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 341.2173258463542, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Figure 5 represents part of a carbon molecule.", "text": "Figure 5 represents part of a carbon molecule.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 14, "bbox": {"l": 302.3177083333333, "t": 718.4209899902344, "r": 348.4053141276042, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 115.007568359375, "t": 522.7748209635417, "r": 341.64013671875, "b": 510.4673665364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "Namethetypeofcarbonmolecule inFigure5.", "text": "Namethetypeofcarbonmolecule inFigure5.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 510.4673665364583, "r": 536.1382242838541, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 418.79799397786456, "r": 101.9000956217448, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 419.22239176432294, "r": 470.600830078125, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "text": "Suggest one property that makes the carbon molecule in Figure 5 useful in nanotechnology.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.4734700520833, "t": 394.18308512369794, "r": 535.7154134114584, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 39.65153884887695, "t": 787.9851226806641, "r": 539.361572265625, "b": 75.42340087890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.73477554321289, "t": 53.20611572265625, "r": 99.19538879394531, "b": 17.77740478515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p15.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p15.json new file mode 100644 index 0000000..5375060 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p15.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/21"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 415.211181640625, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "An alloy of aluminium contains small amounts of other metals.", "text": "An alloy of aluminium contains small amounts of other metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 748.5530497233073, "r": 356.8617350260417, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Explainwhyother metalsareaddedto aluminium.", "text": "Explainwhyother metalsareaddedto aluminium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.89299011230469, "t": 462.51072184244794, "r": 106.12831624348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 111.625, "t": 462.08632405598956, "r": 377.1571858723958, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Figure 6 represents part of the structure of a polymer.", "text": "Figure 6 represents part of the structure of a polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 301.89487711588544, "t": 435.34942626953125, "r": 348.828125, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 340.79449462890625, "t": 407.33933512369794, "r": 415.211181640625, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Polymerchain", "text": "Polymerchain", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 332.22137451171875, "r": 488.359375, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Compare the bonding within the chains with the forces between the chains in this polymer.", "text": "Compare the bonding within the chains with the forces between the chains in this polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 306.3332722981771, "r": 536.1382242838541, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 415.211181640625, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "An alloy of aluminium contains small amounts of other metals.", "text": "An alloy of aluminium contains small amounts of other metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 115.43039957682292, "t": 748.5530497233073, "r": 356.8617350260417, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "Explainwhyother metalsareaddedto aluminium.", "text": "Explainwhyother metalsareaddedto aluminium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 49.89299011230469, "t": 462.51072184244794, "r": 106.12831624348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 111.625, "t": 462.08632405598956, "r": 377.1571858723958, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Figure 6 represents part of the structure of a polymer.", "text": "Figure 6 represents part of the structure of a polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 301.89487711588544, "t": 435.34942626953125, "r": 348.828125, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 340.79449462890625, "t": 407.33933512369794, "r": 415.211181640625, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Polymerchain", "text": "Polymerchain", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 332.22137451171875, "r": 488.359375, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 89]}], "orig": "Compare the bonding within the chains with the forces between the chains in this polymer.", "text": "Compare the bonding within the chains with the forces between the chains in this polymer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.976806640625, "t": 306.3332722981771, "r": 536.1382242838541, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 15, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 556.4337158203125, "t": 153.12660725911462, "r": 563.1988525390625, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 40.30547332763672, "t": 787.8382034301758, "r": 538.6801147460938, "b": 75.74310302734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.73532485961914, "t": 53.18359375, "r": 99.1739273071289, "b": 17.454833984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 543.523193359375, "t": 178.8212890625, "r": 575.2889404296875, "b": 137.7919921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p16.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p16.json new file mode 100644 index 0000000..2bd0ad1 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p16.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 266.8006591796875, "t": 566.0631306966145, "r": 277.37119547526044, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 336.14345296223956, "t": 566.9119262695312, "r": 351.7878824869792, "b": 551.6336873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Cl", "text": "Cl", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 421.5535074869792, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "This question is about hydrogen chloride and hydrochloric acid.", "text": "This question is about hydrogen chloride and hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.89299011230469, "t": 745.1578877766927, "r": 87.52414957682292, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "06.", "text": "06.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 745.582285563151, "r": 516.6884358723959, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 93]}], "orig": "Complete the dot and cross diagram to represent the bonding in hydrogen chloride on Figure 7.", "text": "Complete the dot and cross diagram to represent the bonding in hydrogen chloride on Figure 7.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 707.38671875, "r": 364.8953450520833, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Use dots (o) and crosses (x) to represent electrons.", "text": "Use dots (o) and crosses (x) to represent electrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 681.4986063639323, "r": 379.6941324869792, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "You should show only the electrons in the outer shells.", "text": "You should show only the electrons in the outer shells.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.976806640625, "t": 668.3423665364584, "r": 536.1382242838541, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 16, "bbox": {"l": 302.3177083333333, "t": 642.8786417643229, "r": 347.9824625651042, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 266.8006591796875, "t": 566.0631306966145, "r": 277.37119547526044, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 336.14345296223956, "t": 566.9119262695312, "r": 351.7878824869792, "b": 551.6336873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "Cl", "text": "Cl", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 463.35947672526044, "r": 106.97395833333333, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 112.47064208984375, "t": 462.08632405598956, "r": 437.1979166666667, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 66]}], "orig": "Hydrogen chloride dissolves in water to produce hydrochloric acid.", "text": "Hydrogen chloride dissolves in water to produce hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.43039957682292, "t": 437.04697672526044, "r": 278.63966878255206, "b": 424.31512451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "Hydrochloric acid is a strong acid.", "text": "Hydrochloric acid is a strong acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 114.58474731445312, "t": 411.15887451171875, "r": 306.54591878255206, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "What ismeant by the termstrong acid?", "text": "What ismeant by the termstrong acid?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 490.0506591796875, "t": 399.70021565755206, "r": 535.7154134114584, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 48.201700846354164, "t": 295.7234090169271, "r": 102.32291666666667, "b": 280.4451700846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 294.8746134440104, "r": 513.3058675130209, "b": 269.4109090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "Describe how magnesium can be used to distinguish between a strong acid and a weakacidofthesameconcentration.", "text": "Describe how magnesium can be used to distinguish between a strong acid and a weakacidofthesameconcentration.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.1311442057292, "t": 268.98651123046875, "r": 536.1382242838541, "b": 254.55706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 73.57101949055989, "t": 23.26169840494788, "r": 77.37641906738281, "b": 18.59340413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 248.36061096191406, "t": 619.3990631103516, "r": 400.34326171875, "b": 502.91015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.68505859375, "t": 53.21319580078125, "r": 99.13385772705078, "b": 17.48260498046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p17.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p17.json new file mode 100644 index 0000000..df0ce38 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p17.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.7135416666667, "t": 811.3635304768881, "r": 295.55255126953125, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 102.32291666666667, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "06].4", "text": "06].4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 450.7281901041667, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "The concentration of hydrochloric acid is increased by a factor of 100", "text": "The concentration of hydrochloric acid is increased by a factor of 100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 243.54545084635416, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "What isthechange inpH?", "text": "What isthechange inpH?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 187.73295084635416, "t": 567.3363037109375, "r": 391.1103108723958, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question6continuesonthenextpage", "text": "Question6continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.8148193359375, "t": 53.18902587890625, "r": 99.27465057373047, "b": 17.84124755859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p18.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p18.json new file mode 100644 index 0000000..ef053cb --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p18.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/16"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/17"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/20"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 18, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 413.5198567708333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "06.5 Ethene and hydrogen chloride react toproduce chloroethane.", "text": "06.5 Ethene and hydrogen chloride react toproduce chloroethane.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 748.5530497233073, "r": 365.7410074869792, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "The displayed formulae equation for the reaction is:", "text": "The displayed formulae equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 161.51798502604166, "t": 718.8453877766927, "r": 170.820068359375, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 425.35888671875, "t": 723.0893351236979, "r": 434.2381591796875, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 449.882568359375, "t": 722.6649373372396, "r": 458.7618408203125, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 277.7940266927083, "t": 698.4744160970052, "r": 316.6936442057292, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "H\u2014CI", "text": "H\u2014CI", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 401.6808675130208, "t": 696.7768351236979, "r": 424.5132649739583, "b": 687.8645426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "H\u4e00", "text": "H\u4e00", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 422.3991292317708, "t": 696.7768351236979, "r": 434.6609700520833, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 449.4597574869792, "t": 696.7768351236979, "r": 462.1444091796875, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 459.6074625651042, "t": 697.6256306966146, "r": 486.6680908203125, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "\u4e00Cl", "text": "\u4e00Cl", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 424.5132649739583, "t": 672.5863138834635, "r": 435.5066324869792, "b": 661.1276448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 449.4597574869792, "t": 672.1619160970052, "r": 458.7618408203125, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "H", "text": "H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 115.43039957682292, "t": 645.0006306966146, "r": 245.23673502604166, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Thereactionisexothermic", "text": "Thereactionisexothermic", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 620.3857014973959, "r": 523.03076171875, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 120]}], "orig": "In the reaction the energy released forming new bonds is 56 kJ/mol greater than the energy needed tobreak existingbonds.", "text": "In the reaction the energy released forming new bonds is 56 kJ/mol greater than the energy needed tobreak existingbonds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.3162841796875, "t": 582.6145426432292, "r": 292.59279378255206, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "Table1showssomebond energies.", "text": "Table1showssomebond energies.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 304.0089925130208, "t": 556.3020426432292, "r": 345.445556640625, "b": 544.418965657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 453.59840901692706, "r": 256.2301025390625, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Calculate the bond energy X.", "text": "Calculate the bond energy X.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.1311442057292, "t": 442.13975016276044, "r": 536.1382242838541, "b": 426.86151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 327.68701171875, "t": 211.69317626953125, "r": 531.4871826171875, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "X= kJ/mol", "text": "X= kJ/mol", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 552.6282958984375, "t": 215.93711344401038, "r": 567.4270833333334, "b": 203.62965901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 160.50936889648438, "t": 723.0121917724609, "r": 486.46734619140625, "b": 662.5936126708984, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.630977630615234, "t": 53.2061767578125, "r": 99.01527404785156, "b": 17.714599609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 543.5875244140625, "t": 240.2454833984375, "r": 575.9736938476562, "b": 199.5877685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 18, "bbox": {"l": 177.91253662109375, "t": 532.1428527832031, "r": 471.9355773925781, "b": 467.1118469238281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 182.23626708984375, "t": 317.023193359375, "r": 213.1022745768229, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bond", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 267.2234700520833, "t": 316.5987955729167, "r": 292.59279378255206, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "H-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 309.92848714192706, "t": 317.023193359375, "r": 335.72064208984375, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "C=C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.9422200520833, "t": 317.023193359375, "r": 379.6941324869792, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "H-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 395.3385416666667, "t": 316.5987955729167, "r": 420.7078450520833, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "C-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 317.023193359375, "r": 464.6813151041667, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "C-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 182.23626708984375, "t": 342.4868977864583, "r": 250.7334187825521, "b": 368.7993977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bondenergy inkJ/mol", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 269.33758544921875, "t": 348.4284261067708, "r": 290.4786783854167, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "413", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 349.2772216796875, "r": 328.10984293619794, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "x", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 354.3247884114583, "t": 349.2772216796875, "r": 375.0430908203125, "b": 362.0090738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "431", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 397.0298258463542, "t": 349.2772216796875, "r": 418.59375, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "346", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 439.7348225911458, "t": 349.7016194661458, "r": 461.2987467447917, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "339", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 2, "num_cols": 6, "orientation": "rot_0", "grid": [[{"bbox": {"l": 182.23626708984375, "t": 317.023193359375, "r": 213.1022745768229, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bond", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 267.2234700520833, "t": 316.5987955729167, "r": 292.59279378255206, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "H-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 309.92848714192706, "t": 317.023193359375, "r": 335.72064208984375, "b": 331.02821858723956, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "C=C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 350.9422200520833, "t": 317.023193359375, "r": 379.6941324869792, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "H-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 395.3385416666667, "t": 316.5987955729167, "r": 420.7078450520833, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "C-C", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 435.929443359375, "t": 317.023193359375, "r": 464.6813151041667, "b": 330.6038411458333, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "C-CI", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 182.23626708984375, "t": 342.4868977864583, "r": 250.7334187825521, "b": 368.7993977864583, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Bondenergy inkJ/mol", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 269.33758544921875, "t": 348.4284261067708, "r": 290.4786783854167, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "413", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 317.11647542317706, "t": 349.2772216796875, "r": 328.10984293619794, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "x", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 354.3247884114583, "t": 349.2772216796875, "r": 375.0430908203125, "b": 362.0090738932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "431", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 397.0298258463542, "t": 349.2772216796875, "r": 418.59375, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "346", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 439.7348225911458, "t": 349.7016194661458, "r": 461.2987467447917, "b": 362.4334716796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "339", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p19.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p19.json new file mode 100644 index 0000000..72b865d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p19.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/pictures/3"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 80.33617146809895, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 50.31581115722656, "t": 745.1578877766927, "r": 100.20880126953125, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 80.33617146809895, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "07", "text": "07", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 353.0563557942708, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "This question is about elements and compounds.", "text": "This question is about elements and compounds.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 50.31581115722656, "t": 745.1578877766927, "r": 100.20880126953125, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.1", "text": "07.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 744.7334899902344, "r": 282.445068359375, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "Figure8showsareactivityseries.", "text": "Figure8showsareactivityseries.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 303.16335042317706, "t": 716.7234090169271, "r": 347.9824625651042, "b": 703.5671590169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 327.2642008463542, "t": 682.7717997233073, "r": 397.8754475911458, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Most reactive", "text": "Most reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 653.9129231770834, "r": 304.0089925130208, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Potassium", "text": "Potassium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.15625, "t": 625.0540568033854, "r": 309.0828450520833, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Magnesium", "text": "Magnesium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 595.7707926432291, "r": 290.4786783854167, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Metal Y", "text": "Metal Y", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 567.3363037109375, "r": 289.21022542317706, "b": 554.1800537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Carbon", "text": "Carbon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 538.0530395507812, "r": 271.87451171875, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Iron", "text": "Iron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 510.04296875, "r": 299.78076171875, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Hydrogen", "text": "Hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 480.75970458984375, "r": 289.63303629557294, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Copper", "text": "Copper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 324.304443359375, "t": 451.47642008463544, "r": 399.9895833333333, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Least reactive", "text": "Least reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 115.007568359375, "t": 416.67604573567706, "r": 535.7154134114584, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "Give the method and conditions used to extract metal Y from a compound of metal Y. [2 marks]", "text": "Give the method and conditions used to extract metal Y from a compound of metal Y. [2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 191.11551920572916, "t": 235.03489176432288, "r": 394.4928792317708, "b": 221.02984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question7continuesonthenextpage", "text": "Question7continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 327.2642008463542, "t": 682.7717997233073, "r": 397.8754475911458, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Most reactive", "text": "Most reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 653.9129231770834, "r": 304.0089925130208, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Potassium", "text": "Potassium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.15625, "t": 625.0540568033854, "r": 309.0828450520833, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Magnesium", "text": "Magnesium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 595.7707926432291, "r": 290.4786783854167, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Metal Y", "text": "Metal Y", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 567.3363037109375, "r": 289.21022542317706, "b": 554.1800537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Carbon", "text": "Carbon", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.7334187825521, "t": 538.0530395507812, "r": 271.87451171875, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Iron", "text": "Iron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 251.57906087239584, "t": 510.04296875, "r": 299.78076171875, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Hydrogen", "text": "Hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 250.31060791015625, "t": 480.75970458984375, "r": 289.63303629557294, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Copper", "text": "Copper", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/3"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 324.304443359375, "t": 451.47642008463544, "r": 399.9895833333333, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "Least reactive", "text": "Least reactive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 46.48485565185547, "t": 776.6813812255859, "r": 81.98703002929688, "b": 759.3180694580078, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 46.999271392822266, "t": 746.6977081298828, "r": 104.37225341796875, "b": 730.5146484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.84652328491211, "t": 53.1729736328125, "r": 99.21656799316406, "b": 17.734130859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 250.1741180419922, "t": 683.5161590576172, "r": 398.9270324707031, "b": 440.20361328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p2.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p2.json new file mode 100644 index 0000000..b462cde --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p2.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 183.92755126953125, "t": 440.44215901692706, "r": 394.070068359375, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 544.171875, "t": 788.4461924235026, "r": 583.9171142578125, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.48795700073242, "t": 53.01129150390625, "r": 99.5518798828125, "b": 16.3326416015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p20.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p20.json new file mode 100644 index 0000000..0bb6ab4 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p20.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 424.0904134114583, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Sodium reacts with titanium chloride (TiCl4) to produce titanium.", "text": "Sodium reacts with titanium chloride (TiCl4) to produce titanium.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 737.0943806966146, "r": 105.2826639811198, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.2", "text": "07.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.58474731445312, "t": 734.972401936849, "r": 227.47821044921875, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Complete the equation.", "text": "Complete the equation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.3162841796875, "t": 709.9330851236979, "r": 278.21685791015625, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "You should balance the equation.", "text": "You should balance the equation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 696.7768351236979, "r": 535.7154134114584, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 148.83333333333334, "t": 663.2496134440104, "r": 260.03550211588544, "b": 646.6982014973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Na + TiCl4 \u2192", "text": "Na + TiCl4 \u2192", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 50.31581115722656, "t": 593.6488037109375, "r": 103.16855875651042, "b": 579.2193806966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.3", "text": "07.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 112.89346313476562, "t": 593.6488037109375, "r": 458.3389892578125, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "The reaction between sodium and titanium chloride is a redox reaction.", "text": "The reaction between sodium and titanium chloride is a redox reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 568.1850992838542, "r": 448.1912841796875, "b": 555.4532470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "Write a half-equation to show that sodium is oxidised in this reaction.", "text": "Write a half-equation to show that sodium is oxidised in this reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.553955078125, "t": 555.0288492838542, "r": 535.7154134114584, "b": 541.8725992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.68428039550781, "t": 53.1865234375, "r": 99.17168426513672, "b": 17.3621826171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p21.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p21.json new file mode 100644 index 0000000..0869916 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p21.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 296.82102457682294, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 103.16855875651042, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.4", "text": "07.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 484.976806640625, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "108 g of aluminum reacts with 1.21 kg of copper chloride to produce copper.", "text": "108 g of aluminum reacts with 1.21 kg of copper chloride to produce copper.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 749.4018351236979, "r": 270.60605875651044, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The equation for the reaction is:", "text": "The equation for the reaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 21, "bbox": {"l": 238.04876708984375, "t": 723.9381306966146, "r": 410.9829508463542, "b": 712.0550638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "2Al+3CuCl2\u21923Cu+2AlCl3", "text": "2Al+3CuCl2\u21923Cu+2AlCl3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 687.8645426432291, "r": 421.5535074869792, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Calculate the maximum mass of copper produced in grams (g).", "text": "Calculate the maximum mass of copper produced in grams (g).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 661.5520426432291, "r": 323.0359700520833, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "You should determine the limiting reactant.", "text": "You should determine the limiting reactant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 636.0883382161459, "r": 354.3247884114583, "b": 622.0832926432291, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "Relative atomic masses (Ar): Al = 27 Cu = 63.5", "text": "Relative atomic masses (Ar): Al = 27 Cu = 63.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 610.6246134440104, "r": 410.9829508463542, "b": 597.8927612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "Relative formula masses (Mr): CuCl2 = 134.5 AlCl3 = 133.5", "text": "Relative formula masses (Mr): CuCl2 = 134.5 AlCl3 = 133.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 597.0439656575521, "r": 536.5610758463541, "b": 582.6145426432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 240.585693359375, "t": 258.8010457356771, "r": 332.76088460286456, "b": 247.34234619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Limiting reactant is", "text": "Limiting reactant is", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 238.8944091796875, "t": 237.15688069661462, "r": 326.41855875651044, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "Mass of copper =", "text": "Mass of copper =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 187.73295084635416, "t": 170.95123291015625, "r": 390.6875, "b": 156.94618733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Question7 continueson the nextpage", "text": "Question7 continueson the nextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.703269958496094, "t": 53.1361083984375, "r": 99.26348114013672, "b": 17.64483642578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p22.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p22.json new file mode 100644 index 0000000..4d5734c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p22.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 775.7143351236979, "r": 456.2248942057292, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Sodium metal and sodium chloride are both able to conduct electricity.", "text": "Sodium metal and sodium chloride are both able to conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 47.77887980143229, "t": 736.2455851236979, "r": 101.9000956217448, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "07.5", "text": "07.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 735.8211873372396, "r": 349.2509358723958, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "Describe how sodium metal conducts electricity.", "text": "Describe how sodium metal conducts electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.976806640625, "t": 722.2405497233073, "r": 535.7154134114584, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.89299011230469, "t": 556.3020426432292, "r": 101.9000956217448, "b": 541.4482014973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "07].6", "text": "07].6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.16192626953125, "t": 556.7264404296875, "r": 368.7007649739583, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Explain how sodium chloride can conduct electricity.", "text": "Explain how sodium chloride can conduct electricity.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 484.553955078125, "t": 543.9945678710938, "r": 535.2926025390625, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 230.86079915364584, "t": 325.4310506184896, "r": 346.2911783854167, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "ENDOF QUESTIONS", "text": "ENDOF QUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 552.6282958984375, "t": 394.18308512369794, "r": 567.8498942057291, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.818931579589844, "t": 53.05535888671875, "r": 99.13025665283203, "b": 17.30499267578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 543.1671142578125, "t": 418.2695007324219, "r": 575.9228515625, "b": 377.17498779296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p23.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p23.json new file mode 100644 index 0000000..5a26e92 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p23.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 183.0819091796875, "t": 440.44215901692706, "r": 392.3787841796875, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.45603561401367, "t": 52.97747802734375, "r": 99.51256561279297, "b": 16.436767578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p24.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p24.json new file mode 100644 index 0000000..ae43c7e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p24.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 66.38304646809895, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 65.11458333333333, "t": 25.80808512369788, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.730472564697266, "t": 53.16552734375, "r": 99.35018920898438, "b": 17.1514892578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p25.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p25.json new file mode 100644 index 0000000..dc8350e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p25.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 66.38304646809895, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.69895553588867, "t": 53.1668701171875, "r": 99.3472671508789, "b": 16.82537841796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p26.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p26.json new file mode 100644 index 0000000..6712d2c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p26.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 63.42329406738281, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.691429138183594, "t": 53.14117431640625, "r": 99.34754180908203, "b": 16.77655029296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p27.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p27.json new file mode 100644 index 0000000..9db4d88 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p27.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Question number", "text": "Question number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.77190017700195, "t": 53.216064453125, "r": 99.36135864257812, "b": 17.26806640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p28.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p28.json new file mode 100644 index 0000000..635aca0 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p28.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 219]}], "orig": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgements of third-party copyright material arepublished in aseparatebooklet.Thisbooklet is published after eachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 245]}], "orig": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "text": "Permissiontoreproduce all copyright material hasbeen applied for.Insomecases,efforts to contactcopyright-holdersmayhavebeen unsuccessful andAQAwillbehappytorectifyanyomissionsofacknowledgements.If youhaveanyqueriespleasecontact theCopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Copyright @ 2022 AQA and its licensors. All rights reserved.", "text": "Copyright @ 2022 AQA and its licensors. All rights reserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 28, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 183.0819091796875, "t": 441.29095458984375, "r": 392.3787841796875, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 350.5194091796875, "t": 40.66192626953125, "r": 520.0710042317709, "b": 30.90085856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "226G8464/C/1H", "text": "226G8464/C/1H", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.7439079284668, "t": 53.30078125, "r": 99.22008514404297, "b": 17.2099609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 334.399169921875, "t": 67.79498291015625, "r": 539.0598754882812, "b": 32.12347412109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p3.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p3.json new file mode 100644 index 0000000..afd0b76 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p3.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/21"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 249.0421346028646, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "01 This question is about salts.", "text": "01 This question is about salts.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 435.0837809244792, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Green copper carbonate and sulfuric acid can be used to produce bluecoppersulfatecrystals.", "text": "Green copper carbonate and sulfuric acid can be used to produce bluecoppersulfatecrystals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 711.2062683105469, "r": 101.054443359375, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.1", "text": "01.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 709.5086873372396, "r": 363.2040608723958, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Excess copper carbonate is added to sulfuric acid.", "text": "Excess copper carbonate is added to sulfuric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 684.8937683105469, "r": 317.53928629557294, "b": 671.7375183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Give three observations you would make.", "text": "Give three observations you would make.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.976806640625, "t": 670.8887329101562, "r": 536.1382242838541, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 591.9512329101562, "r": 121.77272542317708, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 540.175028483073, "r": 121.77272542317708, "b": 530.4139404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 451.47642008463544, "r": 106.55113728841145, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.2", "text": "01.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 109.51088460286458, "t": 450.62762451171875, "r": 369.54638671875, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "How can the excess copper carbonate be removed?", "text": "How can the excess copper carbonate be removed?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 437.89577229817706, "r": 536.1382242838541, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.62452697753906, "t": 320.7627156575521, "r": 107.3967793782552, "b": 305.06011962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.\u2462", "text": "01.\u2462", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 107.3967793782552, "t": 319.9139200846354, "r": 362.78125, "b": 306.7576700846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "The pH of the solution changes during the reaction.", "text": "The pH of the solution changes during the reaction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 115.007568359375, "t": 292.75262451171875, "r": 389.4190266927083, "b": 281.7183634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "WhatisthepHofthesolutionattheendofthereaction?", "text": "WhatisthepHofthesolutionattheendofthereaction?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 280.86956787109375, "r": 536.1382242838541, "b": 266.44012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 361.5127766927083, "t": 254.55706787109375, "r": 389.8418375651042, "b": 242.67401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "pH=", "text": "pH=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 49.04734802246094, "t": 190.47340901692712, "r": 101.9000956217448, "b": 175.61956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 189.62461344401038, "r": 442.2717692057292, "b": 176.89276123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 67]}], "orig": "Copper carbonate and sulfuric acid react to produce copper sulfate.", "text": "Copper carbonate and sulfuric acid react to produce copper sulfate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.16192626953125, "t": 164.16090901692712, "r": 257.07574462890625, "b": 151.00461832682288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "What type of reaction is this?", "text": "What type of reaction is this?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 490.4734700520833, "t": 151.42901611328125, "r": 536.1382242838541, "b": 136.99965413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.731075286865234, "t": 53.1234130859375, "r": 99.06757354736328, "b": 17.42724609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p4.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p4.json new file mode 100644 index 0000000..c86c0d9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p4.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 103.16855875651042, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 246.50520833333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Ammoniumnitrateisasalt.", "text": "Ammoniumnitrateisasalt.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.73910522460938, "t": 746.4310709635416, "r": 478.6344401041667, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 116]}], "orig": "Figure 1 shows the maximum mass of ammonium nitrate that can dissolve in 100 cm? of water at different temperatures.", "text": "Figure 1 shows the maximum mass of ammonium nitrate that can dissolve in 100 cm? of water at different temperatures.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 4, "bbox": {"l": 268.06911214192706, "t": 708.2355041503906, "r": 313.3110758463542, "b": 693.8060709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 173.35699462890625, "t": 644.1518351236979, "r": 194.49810791015625, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "120", "text": "120", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 174.2026570638021, "t": 616.1417643229166, "r": 194.49810791015625, "b": 603.4098917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "110", "text": "110", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 173.77982584635416, "t": 586.8584798177084, "r": 194.49810791015625, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "100", "text": "100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.2765096028646, "t": 559.2728068033855, "r": 194.07527669270834, "b": 547.3897298177083, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "90", "text": "90", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.2765096028646, "t": 530.8383178710938, "r": 194.49810791015625, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.91997782389323, "t": 513.4381306966145, "r": 147.98768107096353, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Maximummass", "text": "Maximummass", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 69.34279886881511, "t": 500.28188069661456, "r": 137.83995564778647, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "ofammonium", "text": "ofammonium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 502.4038492838542, "r": 194.49810791015625, "b": 490.52077229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.91997782389323, "t": 488.39882405598956, "r": 143.75947062174478, "b": 477.36452229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "nitrate thatcan", "text": "nitrate thatcan", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.91997782389323, "t": 477.36452229817706, "r": 176.73958333333334, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "dissolve in grams per", "text": "dissolve in grams per", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 473.12058512369794, "r": 193.2296346028646, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 68.49715677897136, "t": 466.33026123046875, "r": 154.75283813476562, "b": 452.74961344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "100 cm3 of water", "text": "100 cm3 of water", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 445.95928955078125, "r": 194.49810791015625, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.2765096028646, "t": 417.10044352213544, "r": 194.49810791015625, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 388.66595458984375, "r": 194.49810791015625, "b": 376.78289794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 360.23146565755206, "r": 194.49810791015625, "b": 347.92401123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 179.6993408203125, "t": 332.22137451171875, "r": 194.49810791015625, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 186.04166666666666, "t": 302.9381306966146, "r": 194.9209187825521, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 194.07527669270834, "t": 293.1770222981771, "r": 200.8404337565104, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "0", "text": "0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 219.8674112955729, "t": 293.6014200846354, "r": 233.3977254231771, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 244.3910929361979, "t": 293.6014200846354, "r": 262.1496175130208, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 274.4114583333333, "t": 293.6014200846354, "r": 289.21022542317706, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 304.0089925130208, "t": 293.6014200846354, "r": 319.23057047526044, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "40", "text": "40", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 332.76088460286456, "t": 293.6014200846354, "r": 346.7139892578125, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "50", "text": "50", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 360.2443033854167, "t": 293.6014200846354, "r": 375.4659016927083, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "60", "text": "60", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 387.7277425130208, "t": 293.6014200846354, "r": 402.5264892578125, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "70", "text": "70", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 417.7480875651042, "t": 293.6014200846354, "r": 432.9696858723958, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "80", "text": "80", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 445.2315266927083, "t": 294.4502156575521, "r": 491.3191324869792, "b": 282.9915568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "90100", "text": "90100", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 308.23720296223956, "t": 278.3232218424479, "r": 398.7211100260417, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Temperature in \u00b0C", "text": "Temperature in \u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 39.90925979614258, "t": 788.3383407592773, "r": 539.5222778320312, "b": 75.62664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.61348342895508, "t": 53.30914306640625, "r": 99.17985534667969, "b": 17.54168701171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p5.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p5.json new file mode 100644 index 0000000..9b1c6a4 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p5.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 480.7485758463542, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "Astudentaddsammoniumnitratetowaterat80\u00b0Cuntilnomoredissolves.", "text": "Astudentaddsammoniumnitratetowaterat80\u00b0Cuntilnomoredissolves.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 748.9774373372396, "r": 533.601318359375, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "The student cools 100 cm3 of this solution of ammonium nitrate from 80 \u00b0C to 20 \u00b0C to produce crystals of ammonium nitrate.", "text": "The student cools 100 cm3 of this solution of ammonium nitrate from 80 \u00b0C to 20 \u00b0C to produce crystals of ammonium nitrate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.58474731445312, "t": 696.3524373372396, "r": 524.2992350260416, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Determine the mass of ammonium nitrate that crystallises on cooling 1o0 cm? of this solutionfrom80\u00b0Cto20\u00b0C", "text": "Determine the mass of ammonium nitrate that crystallises on cooling 1o0 cm? of this solutionfrom80\u00b0Cto20\u00b0C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 670.8887329101562, "r": 536.5610758463541, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 337.83473714192706, "t": 493.49155680338544, "r": 375.8887125651042, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Mass =", "text": "Mass =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 556.4337158203125, "t": 497.31109619140625, "r": 563.1988525390625, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 207.6055908203125, "t": 427.28590901692706, "r": 370.3920491536458, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.736167907714844, "t": 53.16796875, "r": 99.1783447265625, "b": 17.5302734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p6.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p6.json new file mode 100644 index 0000000..3f6ee00 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p6.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 80.33617146809895, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 280.7537841796875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Thisquestionis about electrolysis.", "text": "Thisquestionis about electrolysis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 748.9774373372396, "r": 446.9228108723958, "b": 724.3625183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 96]}], "orig": "Figure 2 shows the apparatus used to investigate the electrolysis of potassium sulfate solution.", "text": "Figure 2 shows the apparatus used to investigate the electrolysis of potassium sulfate solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 6, "bbox": {"l": 302.3177083333333, "t": 709.0842997233073, "r": 348.4053141276042, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 268.91477457682294, "t": 681.07421875, "r": 406.3319091796875, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "50cm3measuringcylinders", "text": "50cm3measuringcylinders", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 231.7064412434896, "t": 625.4784545898438, "r": 271.4517008463542, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Oxygen", "text": "Oxygen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 396.1841634114583, "t": 625.4784545898438, "r": 447.7684733072917, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Hydrogen", "text": "Hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 183.0819091796875, "t": 563.941141764323, "r": 237.203125, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Potassium", "text": "Potassium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 183.92755126953125, "t": 551.2092895507812, "r": 258.76702880859375, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "sulfatesolution", "text": "sulfatesolution", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 412.6742350260417, "t": 529.1407470703125, "r": 439.7348225911458, "b": 516.8332926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Inert", "text": "Inert", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 413.9427083333333, "t": 517.2576904296875, "r": 466.3726399739583, "b": 504.52581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "electrodes", "text": "electrodes", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 320.07623291015625, "t": 454.44720458984375, "r": 353.0563557942708, "b": 441.71535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "Power", "text": "Power", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 319.6534016927083, "t": 442.13975016276044, "r": 353.9019775390625, "b": 428.55910237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "supply", "text": "supply", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 412.85646565755206, "r": 104.01420084635417, "b": 397.15386962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 412.00767008463544, "r": 337.83473714192706, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Potassium sulfate contains K+ and SO42- ions.", "text": "Potassium sulfate contains K+ and SO42- ions.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 386.54396565755206, "r": 316.6936442057292, "b": 374.23651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 41]}], "orig": "What is the formula of potassium sulfate?", "text": "What is the formula of potassium sulfate?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.4734700520833, "t": 373.81211344401044, "r": 536.1382242838541, "b": 359.38267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 359.38267008463544, "r": 200.8404337565104, "b": 344.10447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 319.06512451171875, "r": 144.18229166666666, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "KSO4", "text": "KSO4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 282.14276123046875, "r": 147.98768107096353, "b": 268.5621134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "K2SO4", "text": "K2SO4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 246.06915283203125, "r": 155.59848022460938, "b": 229.94215901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "K(SO4)2", "text": "K(SO4)2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 209.57118733723962, "r": 158.9810587565104, "b": 192.59539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "K2(SO4)2", "text": "K2(SO4)2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 39.979766845703125, "t": 787.9906692504883, "r": 565.450927734375, "b": 75.2119140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.70774841308594, "t": 53.13519287109375, "r": 99.08021545410156, "b": 17.54150390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p7.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p7.json new file mode 100644 index 0000000..a4ed5e7 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p7.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 104.85984293619792, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.3162841796875, "t": 775.2899424235026, "r": 463.835693359375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 71]}], "orig": "What are the volumes of gases collected in the electrolysis experiment?", "text": "What are the volumes of gases collected in the electrolysis experiment?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 113.73910522460938, "t": 749.4018351236979, "r": 183.92755126953125, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Use Figure 2.", "text": "Use Figure 2.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 490.4734700520833, "t": 737.5187683105469, "r": 536.1382242838541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 337.41192626953125, "t": 701.0207926432291, "r": 537.4066975911459, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Volumeof hydrogen= cm3", "text": "Volumeof hydrogen= cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 346.7139892578125, "t": 662.8252156575521, "r": 537.4066975911459, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "Volume of oxygen = cm3", "text": "Volume of oxygen = cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 48.62452697753906, "t": 584.3121134440105, "r": 101.9000956217448, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.16192626953125, "t": 583.887715657552, "r": 315.42519124348956, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "A student made the following hypothesis:", "text": "A student made the following hypothesis:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 545.692159016927, "r": 397.0298258463542, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "as hydrogen atoms to oxygen atoms in a water molecule.'", "text": "as hydrogen atoms to oxygen atoms in a water molecule.'", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 114.58474731445312, "t": 521.5016276041667, "r": 531.4871826171875, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Explain how the volumes of gases collected in the experiment in Figure 2 support the student's hypothesis.", "text": "Explain how the volumes of gases collected in the experiment in Figure 2 support the student's hypothesis.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 115.007568359375, "t": 482.45729573567706, "r": 282.02223714192706, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "Use your answer to Question 02.2", "text": "Use your answer to Question 02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 484.553955078125, "t": 470.14980061848956, "r": 536.1382242838541, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 187.73295084635416, "t": 252.43511962890625, "r": 390.2646484375, "b": 238.43007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 2 continues on the next page", "text": "Question 2 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 7, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.82590103149414, "t": 53.19244384765625, "r": 99.24347686767578, "b": 17.65533447265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p8.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p8.json new file mode 100644 index 0000000..5f92cf9 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p8.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 289.21022542317706, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "The experiment isrepeated 4 times.", "text": "The experiment isrepeated 4 times.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 399.9895833333333, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 57]}], "orig": "The volumes of oxygen collected in the 4 experiments are:", "text": "The volumes of oxygen collected in the 4 experiments are:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 243.96826171875, "t": 723.0893351236979, "r": 406.3319091796875, "b": 710.3574829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "6 cm39 cm310 cm311cm3", "text": "6 cm39 cm310 cm311cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 696.3524373372396, "r": 445.2315266927083, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "The mean volume of oxygen collected in the 4 experiments is 9 cm3", "text": "The mean volume of oxygen collected in the 4 experiments is 9 cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 670.4643351236979, "r": 519.648193359375, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "The measure of uncertainty is the range of a set of measurements about the mean.", "text": "The measure of uncertainty is the range of a set of measurements about the mean.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 631.8443806966146, "r": 393.2244059244792, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 56]}], "orig": "What is the measure of uncertainty in the 4 experiments?", "text": "What is the measure of uncertainty in the 4 experiments?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 490.4734700520833, "t": 618.6881306966146, "r": 536.1382242838541, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 604.2586873372396, "r": 200.8404337565104, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "Tick (V) one box.", "text": "Tick (V) one box.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 563.941141764323, "r": 162.78645833333334, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "9 \u00b1 1cm3", "text": "9 \u00b1 1cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 527.018778483073, "r": 162.78645833333334, "b": 513.862528483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "9 \u00b12cm3", "text": "9 \u00b12cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 490.09637451171875, "r": 162.78645833333334, "b": 476.94012451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "9 \u00b13cm3", "text": "9 \u00b13cm3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 8, "bbox": {"l": 49.04734802246094, "t": 403.09539794921875, "r": 479.4801025390625, "b": 377.20729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "02.5 The potassium sulfate solution has 0.86 g of potassium sulfate dissolved in 25 cm? of water.", "text": "02.5 The potassium sulfate solution has 0.86 g of potassium sulfate dissolved in 25 cm? of water.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.16192626953125, "t": 364.05104573567706, "r": 488.359375, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Calculate the mass of potassium sulfate needed to make 1.0 dm? of solution.", "text": "Calculate the mass of potassium sulfate needed to make 1.0 dm? of solution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 484.976806640625, "t": 350.47039794921875, "r": 536.1382242838541, "b": 337.31414794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 338.6803792317708, "t": 173.92197672526038, "r": 378.0028483072917, "b": 160.76572672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "Mass =", "text": "Mass =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 556.0108642578125, "t": 176.46836344401038, "r": 564.4673258463541, "b": 165.43410237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 525.9905192057291, "t": 169.67803955078125, "r": 532.7556559244791, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "g", "text": "g", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.71919631958008, "t": 53.1612548828125, "r": 99.12417602539062, "b": 17.5555419921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p9.json b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p9.json new file mode 100644 index 0000000..525a6a5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-combined-8464-c1h-2022jun/p9.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-combined-8464-c1h-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 9992888417955624269, "filename": "aqa-combined-8464-c1h-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 285.82763671875, "t": 810.9391352335612, "r": 292.59279378255206, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.201700846354164, "t": 774.441151936849, "r": 79.06770833333333, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 115.007568359375, "t": 774.0167541503906, "r": 432.546875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Plan an investigation to find the order of reactivity of three metals.", "text": "Plan an investigation to find the order of reactivity of three metals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 748.9774373372396, "r": 451.9966634114583, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "You should use the temperature change when each metal reacts with hydrochloric acid.", "text": "You should use the temperature change when each metal reacts with hydrochloric acid.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.553955078125, "t": 722.6649373372396, "r": 534.8697916666666, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[6 marks]", "text": "[6 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 210.14251708984375, "t": 140.81915283203125, "r": 373.351806640625, "b": 127.66290283203125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Turnover", "text": "Turnover", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 80.75899251302083, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "6.0.", "text": "6.0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 556.0108642578125, "t": 210.41998291015625, "r": 564.4673258463541, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 467.6410725911458, "t": 25.38368733723962, "r": 539.9436442057291, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "IB/M/Jun22/8464/C/1H", "text": "IB/M/Jun22/8464/C/1H", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.74698257446289, "t": 53.18414306640625, "r": 99.09233856201172, "b": 17.62640380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 543.3880004882812, "t": 235.318603515625, "r": 575.90380859375, "b": 193.9166259765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/merged.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/merged.json new file mode 100644 index 0000000..ed23edf --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/merged.json @@ -0,0 +1 @@ +{"texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 724.7869160970052, "r": 234.66617838541666, "b": 712.0550638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 689.1377258300781, "r": 131.0748087565104, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 689.1377258300781, "r": 403.7949625651042, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 654.76171875, "r": 101.9000956217448, "b": 641.60546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 629.2980143229166, "r": 120.50426228841145, "b": 615.7173665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 602.13671875, "r": 155.59848022460938, "b": 590.6780395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 588.98046875, "r": 309.92848714192706, "b": 576.6730143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 40.59090677897135, "t": 555.8776448567708, "r": 146.7192179361979, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "A-level PHYSICS", "text": "A-level PHYSICS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 483.73044840494794, "r": 96.82623291015625, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Paper 1", "text": "Paper 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 396.30507405598956, "r": 92.59801228841145, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 382.30002848307294, "r": 186.04166666666666, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 367.87058512369794, "r": 145.87357584635416, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7 a pencil and a ruler", "text": "a pencil and a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 355.56313069661456, "r": 153.90719604492188, "b": 343.68007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7a scientific calculator", "text": "\u00b7a scientific calculator", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 341.98248291015625, "r": 195.76656087239584, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "\u00b7a Data and Formulae Booklet", "text": "\u00b7a Data and Formulae Booklet", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 327.9774373372396, "r": 111.20217895507812, "b": 316.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "\u00b7a protractor.", "text": "\u00b7a protractor.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 305.90887451171875, "r": 108.66524251302083, "b": 294.4502156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 292.3282267252604, "r": 230.86079915364584, "b": 279.1719767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 279.59637451171875, "r": 239.31722005208334, "b": 264.7425740559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "\u00b7 Fill in the boxes at the top of this page.", "text": "Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 264.31817626953125, "r": 157.71259562174478, "b": 252.85947672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7Answer all questions.", "text": "\u00b7Answer all questions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 251.58632405598962, "r": 386.0364583333333, "b": 225.27382405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 118]}], "orig": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 225.27382405598962, "r": 424.5132649739583, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 402.1036783854167, "t": 427.28590901692706, "r": 545.0174967447916, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Time allowed: 2 hours", "text": "Time allowed: 2 hours", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 198.53692626953125, "r": 402.9493408203125, "b": 173.92197672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 171.80002848307288, "r": 161.51798502604166, "b": 159.06817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7 Show all your working.", "text": "Show all your working.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 151.00461832682288, "r": 106.12831624348958, "b": 136.99965413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 135.72646077473962, "r": 282.02223714192706, "b": 123.41900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "\u00b7 The marks for questions are shown in brackets.", "text": "The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 122.14581298828125, "r": 245.23673502604166, "b": 109.83835856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 The maximum mark for this paper is 85.", "text": "The maximum mark for this paper is 85.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 108.56516520182288, "r": 369.54638671875, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "You are expected touse a scientificcalculatorwhere appropriate.", "text": "You are expected touse a scientificcalculatorwhere appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 94.98451741536462, "r": 337.41192626953125, "b": 83.95025634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "\u00b7ADataandFormulaeBookletisprovidedasalooseinsert.", "text": "\u00b7ADataandFormulaeBookletisprovidedasalooseinsert.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 211.83380126953125, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "JUN227408101", "text": "JUN227408101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 22.83730061848962, "r": 367.8551025390625, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E12", "text": "IB/M/Jun22/E12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 480.7485758463542, "t": 34.72035725911462, "r": 545.8631591796875, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "7408/1", "text": "7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.4384358723958, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 2, "bbox": {"l": 263.41807047526044, "t": 776.5631256103516, "r": 316.2708333333333, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Section A", "text": "Section A", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 201.68607584635416, "t": 749.8262329101562, "r": 376.734375, "b": 737.5187683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Answer all questions in this section.", "text": "Answer all questions in this section.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.47016906738281, "t": 709.9330851236979, "r": 346.7139892578125, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "01 Twostableisotopesofheliumare He andH He 2 2", "text": "01 Twostableisotopesofheliumare He andH He 2 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 2, "bbox": {"l": 49.04734802246094, "t": 673.0107116699219, "r": 524.7220458984375, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "01.1 An atom of fHe is produced in a rock that contains uranium. It is produced following 92", "text": "01.1 An atom of fHe is produced in a rock that contains uranium. It is produced following 92", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 629.2980143229166, "r": 178.85369873046875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "thorium (Th).", "text": "thorium (Th).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 287.94175211588544, "t": 590.6780395507812, "r": 301.89487711588544, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "92", "text": "92", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.553955078125, "t": 581.3413492838542, "r": 536.1382242838541, "b": 566.9119262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 558.4240112304688, "r": 138.26277669270834, "b": 532.1115112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "2381 92", "text": "2381 92", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.47016906738281, "t": 495.61354573567706, "r": 432.9696858723958, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "01.2 A 3He nucleus can be produced by the decay of a tritium nucleus", "text": "01.2 A 3He nucleus can be produced by the decay of a tritium nucleus", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 462.08632405598956, "r": 462.9900309244792, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "State and explain which exchange particle is responsible for this decay.", "text": "State and explain which exchange particle is responsible for this decay.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.1311442057292, "t": 449.77886962890625, "r": 536.1382242838541, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 544.171875, "t": 788.8705851236979, "r": 583.0714925130209, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.015625, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 144.18229166666666, "t": 664.5228068033854, "r": 154.75283813476562, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 204.2230021158854, "t": 664.9472045898438, "r": 214.7935587565104, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 261.30397542317706, "t": 665.7959798177084, "r": 287.0961100260417, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "CD", "text": "CD", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 381.3854166666667, "t": 664.9472045898438, "r": 391.9559733072917, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "E", "text": "E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.1377766927083, "t": 664.0984090169271, "r": 481.5941975911458, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "F", "text": "F", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 91.75236002604167, "t": 640.7566731770834, "r": 127.69223022460938, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "helium", "text": "helium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 594.4975992838541, "r": 131.49762980143228, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 550.784891764323, "r": 141.64535522460938, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "hydrogen", "text": "hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 147.56486002604166, "t": 515.1357014973958, "r": 168.70596313476562, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 207.6055908203125, "t": 515.1357014973958, "r": 228.7466837565104, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "450", "text": "450", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 268.91477457682294, "t": 515.1357014973958, "r": 289.63303629557294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "500", "text": "500", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 328.53265380859375, "t": 515.1357014973958, "r": 349.6737467447917, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "550", "text": "550", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 388.9962158203125, "t": 515.1357014973958, "r": 410.5601399739583, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 449.0369059244792, "t": 515.1357014973958, "r": 470.600830078125, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "650", "text": "650", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 406.3319091796875, "t": 498.15989176432294, "r": 487.9365234375, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "wavelength / nm", "text": "wavelength / nm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 529.3730875651041, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 83]}], "orig": "Helium was discovered by analysing the light in the absorption spectrum of the Sun.", "text": "Helium was discovered by analysing the light in the absorption spectrum of the Sun.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 746.4310709635416, "r": 519.2253824869791, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 186]}], "orig": "Figure 1 shows the positions of the brightest lines, labelled A to F, in the emission spectrum of helium. The brightest lines in the emission spectra of sodium and hydrogen arealsoshown.", "text": "Figure 1 shows the positions of the brightest lines, labelled A to F, in the emission spectrum of helium. The brightest lines in the emission spectra of sodium and hydrogen arealsoshown.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 267.64630126953125, "t": 692.5328877766927, "r": 314.15671793619794, "b": 676.4058736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 144.18229166666666, "t": 664.5228068033854, "r": 154.75283813476562, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 204.2230021158854, "t": 664.9472045898438, "r": 214.7935587565104, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 261.30397542317706, "t": 665.7959798177084, "r": 287.0961100260417, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "CD", "text": "CD", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 381.3854166666667, "t": 664.9472045898438, "r": 391.9559733072917, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "E", "text": "E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.1377766927083, "t": 664.0984090169271, "r": 481.5941975911458, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "F", "text": "F", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 91.75236002604167, "t": 640.7566731770834, "r": 127.69223022460938, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "helium", "text": "helium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 594.4975992838541, "r": 131.49762980143228, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 550.784891764323, "r": 141.64535522460938, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "hydrogen", "text": "hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 147.56486002604166, "t": 515.1357014973958, "r": 168.70596313476562, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 207.6055908203125, "t": 515.1357014973958, "r": 228.7466837565104, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "450", "text": "450", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 268.91477457682294, "t": 515.1357014973958, "r": 289.63303629557294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "500", "text": "500", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 328.53265380859375, "t": 515.1357014973958, "r": 349.6737467447917, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "550", "text": "550", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 388.9962158203125, "t": 515.1357014973958, "r": 410.5601399739583, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 449.0369059244792, "t": 515.1357014973958, "r": 470.600830078125, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "650", "text": "650", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 406.3319091796875, "t": 498.15989176432294, "r": 487.9365234375, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "wavelength / nm", "text": "wavelength / nm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.201700846354164, "t": 471.42299397786456, "r": 102.32291666666667, "b": 455.29600016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 469.30104573567706, "r": 519.648193359375, "b": 428.55910237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 185]}], "orig": "Before helium was identified, some scientists suggested that the lines of the helium spectrum seen in the absorption spectrum of the Sun were due to the presence of sodium and hydrogen.", "text": "Before helium was identified, some scientists suggested that the lines of the helium spectrum seen in the absorption spectrum of the Sun were due to the presence of sodium and hydrogen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 414.97845458984375, "r": 520.4938151041666, "b": 389.51475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 101]}], "orig": "Discuss, with reference to the lines A to F in Figure 1, the evidence for and against thissuggestion.", "text": "Discuss, with reference to the lines A to F in Figure 1, the evidence for and against thissuggestion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 389.51475016276044, "r": 535.7154134114584, "b": 375.08530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 117.90183512369788, "r": 390.6875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question1continuesonthenextpage", "text": "Question1continuesonthenextpage", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.3162841796875, "t": 772.7435709635416, "r": 535.2926025390625, "b": 744.7334899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Calculate, in eV, the change in energy level responsible for the spectral line labelled E in Figure 1.", "text": "Calculate, in eV, the change in energy level responsible for the spectral line labelled E in Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 483.7083333333333, "t": 746.0066731770834, "r": 536.1382242838541, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 241.85416666666666, "t": 518.5308634440105, "r": 529.3730875651041, "b": 505.79901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "change in energylevel = eV", "text": "change in energylevel = eV", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 478.63771565755206, "r": 101.9000956217448, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 475.24257405598956, "r": 516.6884358723959, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 126]}], "orig": "Explain, with reference to the processes within an atom, the difference between an emissionspectrum and an absorptionspectrum.", "text": "Explain, with reference to the processes within an atom, the difference between an emissionspectrum and an absorptionspectrum.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.1311442057292, "t": 448.93007405598956, "r": 535.2926025390625, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 551.3598225911459, "t": 118.75063069661462, "r": 568.272705078125, "b": 105.16998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 79.91335042317708, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 506.9635416666667, "b": 743.0359090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "text": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 729.0308736165365, "r": 103.5913798014323, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 726.4844970703125, "r": 350.9422200520833, "b": 711.2062683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "State the change of quark character in \u03b2 decay.", "text": "State the change of quark character in \u03b2 decay.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 712.9038492838541, "r": 535.7154134114584, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 622.9320882161459, "r": 105.2826639811198, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 619.1125284830729, "r": 517.5340576171875, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "text": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 268.06911214192706, "t": 574.9754231770833, "r": 314.15671793619794, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.30302937825522, "t": 499.43308512369794, "r": 176.73958333333334, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 487.97442626953125, "r": 162.78645833333334, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "of \u03b2-", "text": "of \u03b2-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 475.66697184244794, "r": 180.12215169270834, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "particles", "text": "particles", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 280.33095296223956, "t": 410.31011962890625, "r": 349.6737467447917, "b": 395.88067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "kinetic energy", "text": "kinetic energy", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.8532206217448, "t": 377.20729573567706, "r": 427.4729817708333, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Explain howFigure 2 supports the existence of the antineutrino.", "text": "Explain howFigure 2 supports the existence of the antineutrino.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 364.47544352213544, "r": 536.1382242838541, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.73295084635416, "t": 154.39980061848962, "r": 391.1103108723958, "b": 139.54595947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 79.91335042317708, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 506.9635416666667, "b": 743.0359090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "text": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 729.0308736165365, "r": 103.5913798014323, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 726.4844970703125, "r": 350.9422200520833, "b": 711.2062683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "State the change of quark character in \u03b2 decay.", "text": "State the change of quark character in \u03b2 decay.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 712.9038492838541, "r": 535.7154134114584, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 622.9320882161459, "r": 105.2826639811198, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 619.1125284830729, "r": 517.5340576171875, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "text": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 268.06911214192706, "t": 574.9754231770833, "r": 314.15671793619794, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.30302937825522, "t": 499.43308512369794, "r": 176.73958333333334, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 487.97442626953125, "r": 162.78645833333334, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "of \u03b2-", "text": "of \u03b2-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 475.66697184244794, "r": 180.12215169270834, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "particles", "text": "particles", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 280.33095296223956, "t": 410.31011962890625, "r": 349.6737467447917, "b": 395.88067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "kinetic energy", "text": "kinetic energy", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.8532206217448, "t": 377.20729573567706, "r": 427.4729817708333, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Explain howFigure 2 supports the existence of the antineutrino.", "text": "Explain howFigure 2 supports the existence of the antineutrino.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 364.47544352213544, "r": 536.1382242838541, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.73295084635416, "t": 154.39980061848962, "r": 391.1103108723958, "b": 139.54595947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 702.2939758300781, "r": 102.32291666666667, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.201700846354164, "t": 623.3564656575521, "r": 104.01420084635417, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 469.3323567708333, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 146]}], "orig": "The existence of the antineutrino was confirmed by experiments in which antineutrinos interact with protons. The equation for this interaction is:", "text": "The existence of the antineutrino was confirmed by experiments in which antineutrinos interact with protons. The equation for this interaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 6, "bbox": {"l": 246.0823771158854, "t": 732.426035563151, "r": 342.9086100260417, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "v+ p\u2192e++ x", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 699.7475992838541, "r": 202.10888671875, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Identify particle X.", "text": "Identify particle X.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 687.0157470703125, "r": 535.7154134114584, "b": 672.5863138834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 620.3857014973959, "r": 529.3730875651041, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 130]}], "orig": "The positron released in this interaction is annihilated when it encounters an electron. A pair of gamma photons is then produced.", "text": "The positron released in this interaction is annihilated when it encounters an electron. A pair of gamma photons is then produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 568.6094970703125, "r": 324.304443359375, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "antineutrino-proton interaction experiment.", "text": "antineutrino-proton interaction experiment.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 595.3463948567709, "r": 492.5875651041667, "b": 568.1850992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 138]}], "orig": "Particle X can be absorbed by a nucleus. This produces another gamma ray. Table 1 contains data for three gamma photons detected during an", "text": "Particle X can be absorbed by a nucleus. This produces another gamma ray. Table 1 contains data for three gamma photons detected during an", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 270.1832275390625, "t": 543.1457926432292, "r": 310.77414957682294, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.58474731445312, "t": 388.66595458984375, "r": 514.1514892578125, "b": 363.20225016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Deduce which of the three gamma photons could have been produced by positron annihilation.", "text": "Deduce which of the three gamma photons could have been produced by positron annihilation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.1311442057292, "t": 362.35345458984375, "r": 535.2926025390625, "b": 349.19720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 556.8565266927084, "t": 105.59438069661462, "r": 563.1988525390625, "b": 96.68210856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "7", "text": "7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 207.6055908203125, "t": 774.441151936849, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 189.00142415364584, "t": 447.23248291015625, "r": 398.2982991536458, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 78.64488220214844, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 498.929931640625, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Figure 3 shows a garden gate with a pulley system designed to close the gate.", "text": "Figure 3 shows a garden gate with a pulley system designed to close the gate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 8, "bbox": {"l": 267.64630126953125, "t": 747.2798563639323, "r": 314.15671793619794, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 305.7002766927083, "t": 598.3171590169271, "r": 316.2708333333333, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "R", "text": "R", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 508.769775390625, "r": 497.6614583333333, "b": 470.99859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 186]}], "orig": "The pulley system raises weight A when the gate is opened. When the gate is released, A falls. The horizontal cable C passes over pulley R. The tension in cableC causes the gateto close.", "text": "The pulley system raises weight A when the gate is opened. When the gate is released, A falls. The horizontal cable C passes over pulley R. The tension in cableC causes the gateto close.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.16192626953125, "t": 458.69114176432294, "r": 388.9962158203125, "b": 445.11049397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Weight A is a solid cylinder with the following properties:", "text": "Weight A is a solid cylinder with the following properties:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 8, "bbox": {"l": 139.95407104492188, "t": 431.95424397786456, "r": 268.491943359375, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "diameter = 4.8 \u00d7 10-2 m length = 0.23 m weight = 35N", "text": "diameter = 4.8 \u00d7 10-2 m length = 0.23 m weight = 35N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 369.14377848307294, "r": 375.0430908203125, "b": 356.41192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Table 2 gives the density of three availablematerials.", "text": "Table 2 gives the density of three availablematerials.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 8, "bbox": {"l": 270.60605875651044, "t": 340.28489176432294, "r": 311.19696044921875, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 105.2826639811198, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 380.5397542317708, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Deduce which one of the three materials is used for A.", "text": "Deduce which one of the three materials is used for A.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.553955078125, "t": 760.01171875, "r": 536.1382242838541, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 187.31011962890625, "t": 418.37359619140625, "r": 391.5331217447917, "b": 403.09539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 3 continues on the next page", "text": "Question 3 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 9, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 315.0023600260417, "t": 662.4008382161459, "r": 320.921875, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 245.6595662434896, "t": 647.1225992838541, "r": 254.538818359375, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 292.59279378255206, "t": 641.60546875, "r": 300.62640380859375, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "M", "text": "M", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 307.81439208984375, "t": 644.1518351236979, "r": 328.10984293619794, "b": 635.6639404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "55\u00b0", "text": "55\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 228.7466837565104, "t": 598.3171590169271, "r": 253.69317626953125, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "rope", "text": "rope", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 10, "bbox": {"l": 115.43039957682292, "t": 772.3191782633463, "r": 427.8958333333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Figure 4 shows the pulley arrangement when the gate is closed.", "text": "Figure 4 shows the pulley arrangement when the gate is closed.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 10, "bbox": {"l": 267.64630126953125, "t": 748.128651936849, "r": 314.57952880859375, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 315.0023600260417, "t": 662.4008382161459, "r": 320.921875, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 245.6595662434896, "t": 647.1225992838541, "r": 254.538818359375, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 292.59279378255206, "t": 641.60546875, "r": 300.62640380859375, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "M", "text": "M", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 307.81439208984375, "t": 644.1518351236979, "r": 328.10984293619794, "b": 635.6639404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "55\u00b0", "text": "55\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 228.7466837565104, "t": 598.3171590169271, "r": 253.69317626953125, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "rope", "text": "rope", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 563.0923665364583, "r": 526.413330078125, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Pulleys P and M are frictionless so that the tension in the rope attached to A is equal totheweightofA.", "text": "Pulleys P and M are frictionless so that the tension in the rope attached to A is equal totheweightofA.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.3162841796875, "t": 536.35546875, "r": 430.8555908203125, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "A weighs 35 N and the weight of moveable pulley M is negligible.", "text": "A weighs 35 N and the weight of moveable pulley M is negligible.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 48.62452697753906, "t": 510.8917643229167, "r": 102.32291666666667, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 508.3453776041667, "r": 459.6074625651042, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Calculate the tension in the horizontal cable C when the gate is closed.", "text": "Calculate the tension in the horizontal cable C when the gate is closed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.976806640625, "t": 494.34035237630206, "r": 536.1382242838541, "b": 481.18410237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[2marks]", "text": "[2marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 313.73388671875, "t": 304.6357218424479, "r": 362.3583984375, "b": 292.3282267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "tension =", "text": "tension =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.89299011230469, "t": 263.4693806966146, "r": 101.9000956217448, "b": 249.03993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 261.77178955078125, "r": 359.8214925130208, "b": 248.19114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Pulley M is pulled to the left as the gate is opened.", "text": "Pulley M is pulled to the left as the gate is opened.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.43039957682292, "t": 234.61049397786462, "r": 424.5132649739583, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Explain why this increases the tension in the horizontal cable C.", "text": "Explain why this increases the tension in the horizontal cable C.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 483.7083333333333, "t": 222.30303955078125, "r": 535.7154134114584, "b": 207.87359619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 282.86789957682294, "t": 813.0611114501953, "r": 294.7069091796875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 188.15576171875, "t": 775.7143351236979, "r": 390.6875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 3 continues on the next page", "text": "Question 3 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 189.00142415364584, "t": 446.38368733723956, "r": 398.2982991536458, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 11, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 501.0440266927083, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Figure 5 shows a plan view with the gate open.The horizontal cable C passes over pulley R and is attached to the door at D.", "text": "Figure 5 shows a plan view with the gate open.The horizontal cable C passes over pulley R and is attached to the door at D.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 747.2798563639323, "r": 417.3252766927083, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "The angle between the door and the horizontal cable C is 12\u00b0.", "text": "The angle between the door and the horizontal cable C is 12\u00b0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 720.1185709635416, "r": 403.3721516927083, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "The horizontal distance between the hinge and D is 0.95 m.", "text": "The horizontal distance between the hinge and D is 0.95 m.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 268.06911214192706, "t": 693.3816731770834, "r": 314.15671793619794, "b": 678.527842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 367.4322916666667, "t": 643.7274373372396, "r": 419.8622233072917, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Plan view", "text": "Plan view", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 278.21685791015625, "t": 621.6588948567709, "r": 314.57952880859375, "b": 607.6538492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "0.95 m", "text": "0.95 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 358.1302083333333, "t": 568.6094970703125, "r": 387.304931640625, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "hinge", "text": "hinge", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 342.9086100260417, "t": 499.85748291015625, "r": 352.210693359375, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "R", "text": "R", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 470.57419840494794, "r": 356.8617350260417, "b": 458.26674397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "The tension in the horizontal cable C is now 41 N.", "text": "The tension in the horizontal cable C is now 41 N.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 445.11049397786456, "r": 372.928955078125, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Calculate the moment of the tension about the hinge.", "text": "Calculate the moment of the tension about the hinge.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 305.27744547526044, "t": 266.44012451171875, "r": 357.7073974609375, "b": 255.40586344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "moment=", "text": "moment=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.553955078125, "t": 432.37864176432294, "r": 536.1382242838541, "b": 417.94919840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 504.0037841796875, "t": 267.71331787109375, "r": 529.3730875651041, "b": 254.98146565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}, {"page_no": 12, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [3, 28]}], "orig": "Nm Donotwrite outsidethe box", "text": "Nm Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 759.1629282633463, "r": 414.3655192057292, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "does not supply a sufficiently large moment to close the gate.", "text": "does not supply a sufficiently large moment to close the gate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 734.1236063639323, "r": 517.1112467447916, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "Discuss two independent changes to the design to increase the moment about the hinges due to horizontal cable C.", "text": "Discuss two independent changes to the design to increase the moment about the hinges due to horizontal cable C.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.1311442057292, "t": 709.5086873372396, "r": 536.1382242838541, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 207.6055908203125, "t": 372.11452229817706, "r": 370.8148600260417, "b": 358.53387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turnoverfor thenextquestion", "text": "Turnoverfor thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 13, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 552.6282958984375, "t": 455.29600016276044, "r": 567.8498942057291, "b": 442.56414794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 277.7940266927083, "t": 643.3030395507812, "r": 304.85463460286456, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "12Q", "text": "12Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 276.5255533854167, "t": 582.6145426432292, "r": 306.12310791015625, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "6.2V", "text": "6.2V", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 274.4114583333333, "t": 569.0338948567708, "r": 306.54591878255206, "b": 557.575215657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "4.5W", "text": "4.5W", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 774.0167541503906, "r": 78.22206115722656, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 771.8947804768881, "r": 327.68701171875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "A student assembles the circuit in Figure 6.", "text": "A student assembles the circuit in Figure 6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 14, "bbox": {"l": 267.64630126953125, "t": 747.7042541503906, "r": 314.57952880859375, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 277.7940266927083, "t": 643.3030395507812, "r": 304.85463460286456, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "12Q", "text": "12Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 276.5255533854167, "t": 582.6145426432292, "r": 306.12310791015625, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "6.2V", "text": "6.2V", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 274.4114583333333, "t": 569.0338948567708, "r": 306.54591878255206, "b": 557.575215657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "4.5W", "text": "4.5W", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 507.9209798177083, "r": 344.1770833333333, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "The battery has an internal resistance of 2.5 Q.", "text": "The battery has an internal resistance of 2.5 Q.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.73863728841146, "t": 479.91090901692706, "r": 87.9469706217448, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "04.", "text": "04.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 478.63771565755206, "r": 521.7622884114584, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Show that the resistance of the 6.2 V, 4.5 W lamp at its working potential difference (pd) is about 9 \u03a9.", "text": "Show that the resistance of the 6.2 V, 4.5 W lamp at its working potential difference (pd) is about 9 \u03a9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.0506591796875, "t": 450.62762451171875, "r": 535.7154134114584, "b": 436.19822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 387.39276123046875, "r": 104.43702189127605, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.3162841796875, "t": 384.42197672526044, "r": 326.41855875651044, "b": 370.84136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "The terminal pd across the battery is 6.2 V.", "text": "The terminal pd across the battery is 6.2 V.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 358.95827229817706, "r": 271.4517008463542, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Calculate the emf of the battery.", "text": "Calculate the emf of the battery.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.1311442057292, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 327.2642008463542, "t": 102.62359619140625, "r": 357.7073974609375, "b": 90.31614176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "emf =", "text": "emf =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 15, "bbox": {"l": 267.64630126953125, "t": 737.0943806966146, "r": 314.15671793619794, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 478.2116292317708, "b": 750.2506306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "The student makes a variable resistor to control the brightness of the lamp. Figure 7 shows her circuit.", "text": "The student makes a variable resistor to control the brightness of the lamp. Figure 7 shows her circuit.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 15, "bbox": {"l": 267.64630126953125, "t": 737.0943806966146, "r": 314.15671793619794, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 50.31581115722656, "t": 487.55002848307294, "r": 100.63162231445312, "b": 474.39377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 485.42803955078125, "r": 525.5677083333334, "b": 460.38873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 124]}], "orig": "Sheusesaresistancewirewithadiameterof0.19mmtomakethevariableresistor. A 5.0 m length of this wire has a resistance of 9.0 Q.", "text": "Sheusesaresistancewirewithadiameterof0.19mmtomakethevariableresistor. A 5.0 m length of this wire has a resistance of 9.0 Q.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 447.23248291015625, "r": 283.7135416666667, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Calculatetheresistivityof thewire.", "text": "Calculatetheresistivityof thewire.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 433.65183512369794, "r": 535.2926025390625, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 299.3579508463542, "t": 122.99460856119788, "r": 529.3730875651041, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "resistivity = \u03a9m", "text": "resistivity = \u03a9m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 188.15576171875, "t": 94.56011962890625, "r": 390.2646484375, "b": 80.55507405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question4continuesonthenextpage", "text": "Question4continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 15, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "04].4", "text": "04].4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 771.4703877766927, "r": 528.5274658203125, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "Figure 8 shows the 5.0 m length of wire wrapped around a tube to make the variable resistor.", "text": "Figure 8 shows the 5.0 m length of wire wrapped around a tube to make the variable resistor.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 16, "bbox": {"l": 267.64630126953125, "t": 734.5480041503906, "r": 314.57952880859375, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 292.59279378255206, "t": 706.5379231770834, "r": 367.0094401041667, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "copper contact", "text": "copper contact", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 178.43086751302084, "t": 620.3857014973959, "r": 205.4914754231771, "b": 608.0782470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "plugs", "text": "plugs", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 553.331278483073, "r": 530.6415608723959, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 143]}], "orig": "Two plugs connect the variable resistor into the circuit. A moveable copper contact is used to vary the length of wire in series with the lamp.", "text": "Two plugs connect the variable resistor into the circuit. A moveable copper contact is used to vary the length of wire in series with the lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 527.8675537109375, "r": 510.7689208984375, "b": 501.5550537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 151]}], "orig": "When the contact is placed on the tube at one particular position, the lamp is dim. The contact is then moved slowly to the right as shown in Figure 8.", "text": "When the contact is placed on the tube at one particular position, the lamp is dim. The contact is then moved slowly to the right as shown in Figure 8.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.007568359375, "t": 488.39882405598956, "r": 496.3929850260417, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "text": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.976806640625, "t": 462.51072184244794, "r": 535.7154134114584, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.7135416666667, "t": 811.3635304768881, "r": 295.55255126953125, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 486.2452392578125, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "The student now makes a different circuit by connecting the variable resistor in parallel with the lamp.", "text": "The student now makes a different circuit by connecting the variable resistor in parallel with the lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 734.5480041503906, "r": 520.0710042317709, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 150]}], "orig": "The contact is returned to its original position on the tube as shown in Figure 8 and the lamp is dim. The contact is again slowly moved to the right.", "text": "The contact is returned to its original position on the tube as shown in Figure 8 and the lamp is dim. The contact is again slowly moved to the right.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 697.6256306966146, "r": 496.8157958984375, "b": 671.7375183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "text": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.1311442057292, "t": 671.7375183105469, "r": 535.7154134114584, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 207.1827596028646, "t": 451.47642008463544, "r": 370.3920491536458, "b": 438.32017008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 553.0511067708334, "t": 519.8040568033855, "r": 567.4270833333334, "b": 507.49660237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 520.4938151041666, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "text": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 488.359375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "text": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 313.73388671875, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 282.02223714192706, "t": 683.1961873372396, "r": 317.53928629557294, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "0.25 m", "text": "0.25 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 353.4791666666667, "t": 661.1276448567709, "r": 384.3451741536458, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 407.6003824869792, "t": 640.332275390625, "r": 453.6879475911458, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "turntable", "text": "turntable", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 584.3121134440105, "r": 527.6818033854166, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "text": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.31581115722656, "t": 558.4240112304688, "r": 100.63162231445312, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 556.3020426432292, "r": 447.7684733072917, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Calculate the time taken for the turntable to complete one revolution.", "text": "Calculate the time taken for the turntable to complete one revolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.1311442057292, "t": 543.9945678710938, "r": 536.1382242838541, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 340.79449462890625, "t": 378.90484619140625, "r": 373.351806640625, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "time =", "text": "time =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 520.4938151041666, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "text": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 488.359375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "text": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 313.73388671875, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 282.02223714192706, "t": 683.1961873372396, "r": 317.53928629557294, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "0.25 m", "text": "0.25 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 353.4791666666667, "t": 661.1276448567709, "r": 384.3451741536458, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 407.6003824869792, "t": 640.332275390625, "r": 453.6879475911458, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "turntable", "text": "turntable", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 584.3121134440105, "r": 527.6818033854166, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "text": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.31581115722656, "t": 558.4240112304688, "r": 100.63162231445312, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 556.3020426432292, "r": 447.7684733072917, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Calculate the time taken for the turntable to complete one revolution.", "text": "Calculate the time taken for the turntable to complete one revolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.1311442057292, "t": 543.9945678710938, "r": 536.1382242838541, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 340.79449462890625, "t": 378.90484619140625, "r": 373.351806640625, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "time =", "text": "time =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 384.7679850260417, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "text": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "text": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 265.109375, "t": 692.5328877766927, "r": 315.84800211588544, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 354.3247884114583, "t": 617.8393351236979, "r": 385.1907958984375, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 47.77887980143229, "t": 507.49660237630206, "r": 103.16855875651042, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 504.52581787109375, "r": 274.8342692057292, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The mass of the block is 0.12 kg.", "text": "The mass of the block is 0.12 kg.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 476.94012451171875, "r": 401.6808675130208, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Calculate the magnitude of the resultant force on the block.", "text": "Calculate the magnitude of the resultant force on the block.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.1311442057292, "t": 464.63267008463544, "r": 536.1382242838541, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 266.8006591796875, "t": 299.1185506184896, "r": 365.3181559244792, "b": 287.6598917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "magnitudeofforce=", "text": "magnitudeofforce=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 517.5340576171875, "t": 297.84539794921875, "r": 525.9905192057291, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 230.36655680338538, "r": 390.6875, "b": 216.36151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question5 continueson thenextpage", "text": "Question5 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 384.7679850260417, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "text": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "text": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 265.109375, "t": 692.5328877766927, "r": 315.84800211588544, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 354.3247884114583, "t": 617.8393351236979, "r": 385.1907958984375, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 47.77887980143229, "t": 507.49660237630206, "r": 103.16855875651042, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 504.52581787109375, "r": 274.8342692057292, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The mass of the block is 0.12 kg.", "text": "The mass of the block is 0.12 kg.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 476.94012451171875, "r": 401.6808675130208, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Calculate the magnitude of the resultant force on the block.", "text": "Calculate the magnitude of the resultant force on the block.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.1311442057292, "t": 464.63267008463544, "r": 536.1382242838541, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 266.8006591796875, "t": 299.1185506184896, "r": 365.3181559244792, "b": 287.6598917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "magnitudeofforce=", "text": "magnitudeofforce=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 517.5340576171875, "t": 297.84539794921875, "r": 525.9905192057291, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 230.36655680338538, "r": 390.6875, "b": 216.36151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question5 continueson thenextpage", "text": "Question5 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 501.0440266927083, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 117]}], "orig": "Describe, with reference to one of Newton's laws of motion, the evidence that a resultant force is actingon theblock.", "text": "Describe, with reference to one of Newton's laws of motion, the evidence that a resultant force is actingon theblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.976806640625, "t": 746.0066731770834, "r": 535.7154134114584, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 574.1266276041667, "r": 515.8427734375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "05.5 The teacher adjusts the angular speed of the turntable so that the block completes onerotationevery2.50s.", "text": "05.5 The teacher adjusts the angular speed of the turntable so that the block completes onerotationevery2.50s.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 545.2677612304688, "r": 523.03076171875, "b": 520.2284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 119]}], "orig": "She sets up a simple pendulum above the centre of the turntable so that it swings in phasewith themovement of theblock.", "text": "She sets up a simple pendulum above the centre of the turntable so that it swings in phasewith themovement of theblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.007568359375, "t": 506.22340901692706, "r": 331.49241129557294, "b": 493.91595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Calculatethelengthof thesimplependulum.", "text": "Calculatethelengthof thesimplependulum.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.1311442057292, "t": 493.91595458984375, "r": 536.5610758463541, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 326.41855875651044, "t": 330.52382405598956, "r": 527.6818033854166, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "length = m", "text": "length = m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.6", "text": "05.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 397.8754475911458, "t": 672.5863138834635, "r": 432.546875, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "screen", "text": "screen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 600.4391276041666, "r": 369.54638671875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 589.8292643229166, "r": 362.3583984375, "b": 577.9461873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "of bob", "text": "of bob", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 566.487528483073, "r": 364.4725341796875, "b": 554.6044514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 555.4532470703125, "r": 364.4725341796875, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "of block", "text": "of block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.6", "text": "05.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 533.1785074869791, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 195]}], "orig": "A lamp is used to project shadow images of the block and pendulum bob on a screen. Both shadows appear to move with SHM across the screen. Figure 11 shows the images on the screen at one instant.", "text": "A lamp is used to project shadow images of the block and pendulum bob on a screen. Both shadows appear to move with SHM across the screen. Figure 11 shows the images on the screen at one instant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 21, "bbox": {"l": 265.109375, "t": 721.816151936849, "r": 316.2708333333333, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 11", "text": "Figure 11", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 397.8754475911458, "t": 672.5863138834635, "r": 432.546875, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "screen", "text": "screen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 600.4391276041666, "r": 369.54638671875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 589.8292643229166, "r": 362.3583984375, "b": 577.9461873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "of bob", "text": "of bob", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 566.487528483073, "r": 364.4725341796875, "b": 554.6044514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 555.4532470703125, "r": 364.4725341796875, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "of block", "text": "of block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.007568359375, "t": 501.9794514973958, "r": 411.8285725911458, "b": 489.24761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Initially the shadows move in phase with the same amplitude.", "text": "Initially the shadows move in phase with the same amplitude.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 476.51572672526044, "r": 355.59326171875, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Air resistance affects the motion of the pendulum.", "text": "Air resistance affects the motion of the pendulum.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 451.05202229817706, "r": 519.648193359375, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "Suggest the effect this has on the amplitude relationship and the phase relationship betweenthemovingshadows.", "text": "Suggest the effect this has on the amplitude relationship and the phase relationship betweenthemovingshadows.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 425.58831787109375, "r": 535.7154134114584, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 398.00262451171875, "r": 163.6321004231771, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "amplitude", "text": "amplitude", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 319.9139200846354, "r": 146.29639689127603, "b": 307.6064656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "phase", "text": "phase", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 552.6282958984375, "t": 273.65484619140625, "r": 567.8498942057291, "b": 261.3473917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 531.9100341796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "text": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 530.21875, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "text": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 22, "bbox": {"l": 264.68654378255206, "t": 710.3574829101562, "r": 316.2708333333333, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 12", "text": "Figure 12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 88.79261271158855, "t": 670.4643351236979, "r": 105.70548502604167, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "air", "text": "air", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.80634562174478, "t": 660.7032470703125, "r": 138.26277669270834, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 325.15008544921875, "t": 660.2788492838541, "r": 334.0293375651042, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.38351440429688, "t": 648.3957926432291, "r": 238.8944091796875, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "refractive index = 1.62", "text": "refractive index = 1.62", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 324.7272542317708, "t": 648.3957926432291, "r": 434.6609700520833, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "refractiveindex=1.35", "text": "refractiveindex=1.35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 448.1912841796875, "t": 597.4683634440104, "r": 510.7689208984375, "b": 584.7365112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "not to scale", "text": "not to scale", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.32432047526044, "t": 582.6145426432292, "r": 305.27744547526044, "b": 572.4290568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "43", "text": "43", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 380.9625651041667, "t": 565.6387329101562, "r": 388.5733642578125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "P", "text": "P", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.47016906738281, "t": 496.03794352213544, "r": 101.47727457682292, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 494.76475016276044, "r": 532.7556559244791, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "text": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 468.87664794921875, "r": 535.2926025390625, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 531.9100341796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "text": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 530.21875, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "text": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 22, "bbox": {"l": 264.68654378255206, "t": 710.3574829101562, "r": 316.2708333333333, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 12", "text": "Figure 12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 88.79261271158855, "t": 670.4643351236979, "r": 105.70548502604167, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "air", "text": "air", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.80634562174478, "t": 660.7032470703125, "r": 138.26277669270834, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 325.15008544921875, "t": 660.2788492838541, "r": 334.0293375651042, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.38351440429688, "t": 648.3957926432291, "r": 238.8944091796875, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "refractive index = 1.62", "text": "refractive index = 1.62", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 324.7272542317708, "t": 648.3957926432291, "r": 434.6609700520833, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "refractiveindex=1.35", "text": "refractiveindex=1.35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 448.1912841796875, "t": 597.4683634440104, "r": 510.7689208984375, "b": 584.7365112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "not to scale", "text": "not to scale", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.32432047526044, "t": 582.6145426432292, "r": 305.27744547526044, "b": 572.4290568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "43", "text": "43", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 380.9625651041667, "t": 565.6387329101562, "r": 388.5733642578125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "P", "text": "P", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.47016906738281, "t": 496.03794352213544, "r": 101.47727457682292, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 494.76475016276044, "r": 532.7556559244791, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "text": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 468.87664794921875, "r": 535.2926025390625, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 105.2826639811198, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 408.8688151041667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Show that the angle of refraction of the ray in B is about 60\u00b0.", "text": "Show that the angle of refraction of the ray in B is about 60\u00b0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 759.1629282633463, "r": 535.7154134114584, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.89299011230469, "t": 379.75364176432294, "r": 101.054443359375, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 378.05605061848956, "r": 455.8020833333333, "b": 350.89479573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "Draw, on Figure 12, the path of the ray immediately after it reaches P. Justify your answer with calculations.", "text": "Draw, on Figure 12, the path of the ray immediately after it reaches P. Justify your answer with calculations.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.553955078125, "t": 352.59234619140625, "r": 535.7154134114584, "b": 339.43609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 556.0108642578125, "t": 179.43914794921875, "r": 565.3129475911459, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 232.1292521158854, "t": 111.96026611328125, "r": 346.2911783854167, "b": 100.92600504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "ENDOFSECTIONA", "text": "ENDOFSECTIONA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 63.84611511230469, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 263.41807047526044, "t": 776.1387329101562, "r": 316.2708333333333, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Section B", "text": "Section B", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 110.77935791015625, "t": 751.0994160970052, "r": 468.0639241536458, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Each of Questions 07 to 31 is followed by four responses, A, B, C and D.", "text": "Each of Questions 07 to 31 is followed by four responses, A, B, C and D.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 181.81343587239584, "t": 724.3625183105469, "r": 395.3385416666667, "b": 710.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "For eachquestionselect thebest response.", "text": "For eachquestionselect thebest response.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 666.2203776041666, "r": 257.07574462890625, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Only one answer per question is allowed.", "text": "Only one answer per question is allowed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 652.6397298177084, "r": 442.694580078125, "b": 639.9078776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "For each question, completely fill in the circle alongside the appropriate answer.", "text": "For each question, completely fill in the circle alongside the appropriate answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.54403177897135, "t": 626.3272298177084, "r": 123.0411885579427, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CORRECT METHOD", "text": "CORRECT METHOD", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 197.45784505208334, "t": 625.4784545898438, "r": 262.5724283854167, "b": 616.9905395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "WRONGMETHODS", "text": "WRONGMETHODS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 575.3998209635417, "r": 522.6079508463541, "b": 549.9361165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 107]}], "orig": "If you wish to return to an answer previously crossed out, ring the answer you now wish to select as shown.", "text": "If you wish to return to an answer previously crossed out, ring the answer you now wish to select as shown.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 531.262715657552, "r": 510.3461100260417, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 139]}], "orig": "You may do your working in the blank space around each question but this will not be marked. Do not use additional sheets for this working.", "text": "You may do your working in the blank space around each question but this will not be marked. Do not use additional sheets for this working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 461.66192626953125, "r": 340.79449462890625, "b": 446.38368733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "07 Which two quantities have the base unit kg m\u00b2 s-2?", "text": "07 Which two quantities have the base unit kg m\u00b2 s-2?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 490.4734700520833, "t": 445.95928955078125, "r": 536.5610758463541, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.75236002604167, "t": 412.43206787109375, "r": 254.538818359375, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "A kinetic energy and momentum", "text": "A kinetic energy and momentum", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 91.75236002604167, "t": 383.57322184244794, "r": 276.1027425130208, "b": 370.84136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "B kinetic energy and Young modulus", "text": "B kinetic energy and Young modulus", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 92.17519124348958, "t": 355.13873291015625, "r": 296.82102457682294, "b": 342.83127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "C work done and the moment of a couple", "text": "C work done and the moment of a couple", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 91.75236002604167, "t": 327.55303955078125, "r": 225.36409505208334, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Dwork done and pressure", "text": "Dwork done and pressure", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 280.0207722981771, "r": 379.6941324869792, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "08 Which gives Sl prefixes in descending order of magnitude?", "text": "08 Which gives Sl prefixes in descending order of magnitude?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 490.8962809244792, "t": 265.59136962890625, "r": 536.1382242838541, "b": 251.16192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 90.90671793619792, "t": 232.48854573567712, "r": 145.87357584635416, "b": 216.78590901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "AGpm", "text": "AGpm", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.3295389811198, "t": 197.68813069661462, "r": 147.56486002604166, "b": 184.95627848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "BMGn", "text": "BMGn", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.3295389811198, "t": 163.73651123046875, "r": 142.06817626953125, "b": 148.88271077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "cmn\u03bc", "text": "cmn\u03bc", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.3295389811198, "t": 125.96531168619788, "r": 142.06817626953125, "b": 113.23345947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Dm\u03bcp", "text": "Dm\u03bcp", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 301.89487711588544, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "60 A car travels at 100 km h-1 on a motorway.", "text": "60 A car travels at 100 km h-1 on a motorway.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 91.3295389811198, "t": 746.4310709635416, "r": 293.015625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is an estimate of its kinetic energy?", "text": "What is an estimate of its kinetic energy?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 733.2748209635416, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 701.0207926432291, "r": 133.18891398111978, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 104 J", "text": "A 104 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 672.1619160970052, "r": 133.61173502604166, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 10\u00b0 J", "text": "B 10\u00b0 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 644.5762329101562, "r": 133.61173502604166, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "C 108 J", "text": "C 108 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 616.1417643229166, "r": 136.57149251302084, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 1010 J", "text": "D 1010 J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 563.941141764323, "r": 259.1898600260417, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10 6", "text": "10 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 543.1457926432292, "r": 536.5610758463541, "b": 528.2919514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 510.04296875, "r": 185.1960245768229, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "A 4.4 \u00d7 107 C kg-1", "text": "A 4.4 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 476.09136962890625, "r": 185.61883544921875, "b": 461.23752848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "B 5.2 \u00d7 107 C kg-1", "text": "B 5.2 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 91.75236002604167, "t": 441.71535237630206, "r": 184.773193359375, "b": 427.28590901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "C 8.3 \u00d7 107 C kg-1", "text": "C 8.3 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.06107584635417, "t": 408.18813069661456, "r": 186.04166666666666, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "D 2.1 \u00d7 10* C kg-l", "text": "D 2.1 \u00d7 10* C kg-l", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 50.31581115722656, "t": 358.53387451171875, "r": 77.79924011230469, "b": 346.65081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 359.38267008463544, "r": 461.2987467447917, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Which row describes the variation with distance of the strong nuclear force?", "text": "Which row describes the variation with distance of the strong nuclear force?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 189.00142415364584, "t": 311.8504435221354, "r": 241.43133544921875, "b": 297.84539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Attractive", "text": "Attractive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 324.304443359375, "t": 313.12359619140625, "r": 378.8484700520833, "b": 296.9966023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Repulsive", "text": "Repulsive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 276.20123291015625, "r": 134.45738728841147, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 183.0819091796875, "t": 278.74761962890625, "r": 247.3508504231771, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 302.7405192057292, "t": 277.47442626953125, "r": 398.7211100260417, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 236.30808512369788, "r": 134.45738728841147, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 236.73248291015625, "r": 262.99525960286456, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 319.23057047526044, "t": 238.00567626953125, "r": 383.49951171875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.30965169270833, "t": 195.99053955078125, "r": 134.45738728841147, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 197.26373291015625, "r": 263.41807047526044, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 320.49904378255206, "t": 196.41493733723962, "r": 381.8082275390625, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.73248291015625, "t": 154.82419840494788, "r": 133.61173502604166, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 185.1960245768229, "t": 156.09739176432288, "r": 246.0823771158854, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 303.16335042317706, "t": 156.09739176432288, "r": 398.7211100260417, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 301.89487711588544, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "60 A car travels at 100 km h-1 on a motorway.", "text": "60 A car travels at 100 km h-1 on a motorway.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 91.3295389811198, "t": 746.4310709635416, "r": 293.015625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is an estimate of its kinetic energy?", "text": "What is an estimate of its kinetic energy?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 733.2748209635416, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 701.0207926432291, "r": 133.18891398111978, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 104 J", "text": "A 104 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 672.1619160970052, "r": 133.61173502604166, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 10\u00b0 J", "text": "B 10\u00b0 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 644.5762329101562, "r": 133.61173502604166, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "C 108 J", "text": "C 108 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 616.1417643229166, "r": 136.57149251302084, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 1010 J", "text": "D 1010 J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 563.941141764323, "r": 259.1898600260417, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10 6", "text": "10 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 543.1457926432292, "r": 536.5610758463541, "b": 528.2919514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 510.04296875, "r": 185.1960245768229, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "A 4.4 \u00d7 107 C kg-1", "text": "A 4.4 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 476.09136962890625, "r": 185.61883544921875, "b": 461.23752848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "B 5.2 \u00d7 107 C kg-1", "text": "B 5.2 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 91.75236002604167, "t": 441.71535237630206, "r": 184.773193359375, "b": 427.28590901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "C 8.3 \u00d7 107 C kg-1", "text": "C 8.3 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.06107584635417, "t": 408.18813069661456, "r": 186.04166666666666, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "D 2.1 \u00d7 10* C kg-l", "text": "D 2.1 \u00d7 10* C kg-l", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 50.31581115722656, "t": 358.53387451171875, "r": 77.79924011230469, "b": 346.65081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 359.38267008463544, "r": 461.2987467447917, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Which row describes the variation with distance of the strong nuclear force?", "text": "Which row describes the variation with distance of the strong nuclear force?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 189.00142415364584, "t": 311.8504435221354, "r": 241.43133544921875, "b": 297.84539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Attractive", "text": "Attractive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 324.304443359375, "t": 313.12359619140625, "r": 378.8484700520833, "b": 296.9966023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Repulsive", "text": "Repulsive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 276.20123291015625, "r": 134.45738728841147, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 183.0819091796875, "t": 278.74761962890625, "r": 247.3508504231771, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 302.7405192057292, "t": 277.47442626953125, "r": 398.7211100260417, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 236.30808512369788, "r": 134.45738728841147, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 236.73248291015625, "r": 262.99525960286456, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 319.23057047526044, "t": 238.00567626953125, "r": 383.49951171875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.30965169270833, "t": 195.99053955078125, "r": 134.45738728841147, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 197.26373291015625, "r": 263.41807047526044, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 320.49904378255206, "t": 196.41493733723962, "r": 381.8082275390625, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.73248291015625, "t": 154.82419840494788, "r": 133.61173502604166, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 185.1960245768229, "t": 156.09739176432288, "r": 246.0823771158854, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 303.16335042317706, "t": 156.09739176432288, "r": 398.7211100260417, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 79.91335042317708, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 229.16949462890625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "12 Which statement is correct?", "text": "12 Which statement is correct?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 760.01171875, "r": 536.1382242838541, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 726.4844970703125, "r": 266.8006591796875, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "A All strange particles are mesons.", "text": "A All strange particles are mesons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 697.2012329101562, "r": 325.9957275390625, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "B Strange particles are always created in pairs.", "text": "B Strange particles are always created in pairs.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 669.6155395507812, "r": 358.1302083333333, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "C Strangeness can only change in strong interactions.", "text": "C Strangeness can only change in strong interactions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 92.17519124348958, "t": 640.7566731770834, "r": 327.68701171875, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "D Strangeness can only have a value of 0 or -1", "text": "D Strangeness can only have a value of 0 or -1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 49.89299011230469, "t": 594.0732014973959, "r": 294.7069091796875, "b": 579.2193806966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "13 Which combination of quarks is possible?", "text": "13 Which combination of quarks is possible?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.8962809244792, "t": 579.643778483073, "r": 536.5610758463541, "b": 565.214335123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 90.90671793619792, "t": 546.1165568033855, "r": 120.08144124348958, "b": 532.535909016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "A sd", "text": "A sd", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 90.90671793619792, "t": 518.5308634440105, "r": 119.65861002604167, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "B su", "text": "B su", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 489.24761962890625, "r": 126.00094604492188, "b": 476.09136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "C sud", "text": "C sud", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 460.38873291015625, "r": 120.08144124348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Dud", "text": "Dud", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 90.90671793619792, "t": 412.43206787109375, "r": 317.11647542317706, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "In photoelectricity, Vs is the stopping potential.", "text": "In photoelectricity, Vs is the stopping potential.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 383.99761962890625, "r": 196.6122029622396, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "What quantity is eVs?", "text": "What quantity is eVs?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 371.69012451171875, "r": 536.5610758463541, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 337.73854573567706, "r": 246.0823771158854, "b": 324.5822957356771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "A energy of an incident photon", "text": "A energy of an incident photon", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 309.72845458984375, "r": 316.6936442057292, "b": 295.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "B maximum kinetic energy of a photoelectron", "text": "B maximum kinetic energy of a photoelectron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 281.7183634440104, "r": 313.73388671875, "b": 266.8645222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "C threshold frequency \u00d7 the Planck constant", "text": "C threshold frequency \u00d7 the Planck constant", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 252.85947672526038, "r": 172.5113525390625, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "D work function", "text": "D work function", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 90.06107584635417, "t": 773.16796875, "r": 258.76702880859375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "A fluorescent tube contains a gas.", "text": "A fluorescent tube contains a gas.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 746.4310709635416, "r": 205.4914754231771, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "The coating of the tube", "text": "The coating of the tube", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 734.1236063639323, "r": 536.1382242838541, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 700.5963948567709, "r": 423.6676025390625, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "A becomes ionised by the gas and emits photons of ultraviolet light.", "text": "A becomes ionised by the gas and emits photons of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 671.3131306966146, "r": 447.7684733072917, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "text": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 644.5762329101562, "r": 466.3726399739583, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "text": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 615.29296875, "r": 457.070556640625, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "D absorbs several photons of visible light from the gas and then emits one", "text": "D absorbs several photons of visible light from the gas and then emits one", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 106.12831624348958, "t": 600.863525390625, "r": 229.59232584635416, "b": 588.1316731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "photon of ultraviolet light.", "text": "photon of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 560.9703776041667, "r": 534.8697916666666, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "text": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.4734700520833, "t": 533.3847045898438, "r": 536.5610758463541, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 148.41051228841147, "t": 494.34035237630206, "r": 282.02223714192706, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Wave nature of electrons", "text": "Wave nature of electrons", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 290.90150960286456, "t": 494.34035237630206, "r": 427.0501708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Particulate nature of light", "text": "Particulate nature of light", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 452.74961344401044, "r": 134.45738728841147, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 454.44720458984375, "r": 260.4583333333333, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 312.46543375651044, "t": 453.17401123046875, "r": 407.6003824869792, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 412.43206787109375, "r": 134.45738728841147, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 414.12965901692706, "r": 260.4583333333333, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 415.82725016276044, "r": 408.8688151041667, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.30965169270833, "t": 372.53892008463544, "r": 134.45738728841147, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 373.38771565755206, "r": 262.5724283854167, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 374.66090901692706, "r": 408.8688151041667, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.73248291015625, "t": 331.37261962890625, "r": 133.61173502604166, "b": 320.7627156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 333.07017008463544, "r": 262.5724283854167, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 314.15671793619794, "t": 333.49456787109375, "r": 405.0634358723958, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 280.4451700846354, "r": 79.91335042317708, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 279.1719767252604, "r": 361.9355875651042, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Which particle has the smallest de Broglie wavelength?", "text": "Which particle has the smallest de Broglie wavelength?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 265.1669718424479, "r": 536.5610758463541, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 231.21535237630212, "r": 278.21685791015625, "b": 218.90789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "A an electron moving at 4 \u00d7 103 m s-1", "text": "A an electron moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.48389689127605, "t": 203.62965901692712, "r": 265.109375, "b": 189.62461344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "B a proton moving at 4 \u00d7 103 m s-1", "text": "B a proton moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 175.19517008463538, "r": 277.7940266927083, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "C an electron moving at 8 \u00d7 10' m s-1", "text": "C an electron moving at 8 \u00d7 10' m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 146.76072184244788, "r": 264.68654378255206, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "D a proton moving at 8 \u00d7 102 m s-1", "text": "D a proton moving at 8 \u00d7 102 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 90.06107584635417, "t": 773.16796875, "r": 258.76702880859375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "A fluorescent tube contains a gas.", "text": "A fluorescent tube contains a gas.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 746.4310709635416, "r": 205.4914754231771, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "The coating of the tube", "text": "The coating of the tube", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 734.1236063639323, "r": 536.1382242838541, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 700.5963948567709, "r": 423.6676025390625, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "A becomes ionised by the gas and emits photons of ultraviolet light.", "text": "A becomes ionised by the gas and emits photons of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 671.3131306966146, "r": 447.7684733072917, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "text": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 644.5762329101562, "r": 466.3726399739583, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "text": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 615.29296875, "r": 457.070556640625, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "D absorbs several photons of visible light from the gas and then emits one", "text": "D absorbs several photons of visible light from the gas and then emits one", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 106.12831624348958, "t": 600.863525390625, "r": 229.59232584635416, "b": 588.1316731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "photon of ultraviolet light.", "text": "photon of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 560.9703776041667, "r": 534.8697916666666, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "text": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.4734700520833, "t": 533.3847045898438, "r": 536.5610758463541, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 148.41051228841147, "t": 494.34035237630206, "r": 282.02223714192706, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Wave nature of electrons", "text": "Wave nature of electrons", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 290.90150960286456, "t": 494.34035237630206, "r": 427.0501708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Particulate nature of light", "text": "Particulate nature of light", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 452.74961344401044, "r": 134.45738728841147, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 454.44720458984375, "r": 260.4583333333333, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 312.46543375651044, "t": 453.17401123046875, "r": 407.6003824869792, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 412.43206787109375, "r": 134.45738728841147, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 414.12965901692706, "r": 260.4583333333333, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 415.82725016276044, "r": 408.8688151041667, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.30965169270833, "t": 372.53892008463544, "r": 134.45738728841147, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 373.38771565755206, "r": 262.5724283854167, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 374.66090901692706, "r": 408.8688151041667, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.73248291015625, "t": 331.37261962890625, "r": 133.61173502604166, "b": 320.7627156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 333.07017008463544, "r": 262.5724283854167, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 314.15671793619794, "t": 333.49456787109375, "r": 405.0634358723958, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 280.4451700846354, "r": 79.91335042317708, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 279.1719767252604, "r": 361.9355875651042, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Which particle has the smallest de Broglie wavelength?", "text": "Which particle has the smallest de Broglie wavelength?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 265.1669718424479, "r": 536.5610758463541, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 231.21535237630212, "r": 278.21685791015625, "b": 218.90789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "A an electron moving at 4 \u00d7 103 m s-1", "text": "A an electron moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.48389689127605, "t": 203.62965901692712, "r": 265.109375, "b": 189.62461344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "B a proton moving at 4 \u00d7 103 m s-1", "text": "B a proton moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 175.19517008463538, "r": 277.7940266927083, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "C an electron moving at 8 \u00d7 10' m s-1", "text": "C an electron moving at 8 \u00d7 10' m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 146.76072184244788, "r": 264.68654378255206, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "D a proton moving at 8 \u00d7 102 m s-1", "text": "D a proton moving at 8 \u00d7 102 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/65", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 473.5605875651042, "t": 70.79400634765625, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 27, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/66", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/67", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 773.5923614501953, "r": 419.4393717447917, "b": 744.309092203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "A longitudinal wave of frequency 660 Hz travels through a medium. The wave speed is 330 m s-1.", "text": "A longitudinal wave of frequency 660 Hz travels through a medium. The wave speed is 330 m s-1.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 732.0016377766927, "r": 404.2177734375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Which statement describes the motion of a particle in the wave?", "text": "Which statement describes the motion of a particle in the wave?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.4734700520833, "t": 718.8453877766927, "r": 536.5610758463541, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 685.7425638834635, "r": 289.63303629557294, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "A It is travelling at a speed of 330 m s-1.", "text": "A It is travelling at a speed of 330 m s-1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 657.3080851236979, "r": 387.7277425130208, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "B It moves in phase with a particle in the wave 25 cm away.", "text": "B It moves in phase with a particle in the wave 25 cm away.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 628.8736165364584, "r": 300.20359293619794, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "C It oscillates with a time period of 1.5 ms.", "text": "C It oscillates with a time period of 1.5 ms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 600.0147298177084, "r": 324.304443359375, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "D It changes direction 660 times every second.", "text": "D It changes direction 660 times every second.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 61.309183756510414, "t": 552.058085123698, "r": 433.3924967447917, "b": 537.2042643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "9 The frequency of the first harmonic of a standing wave on a string is f.", "text": "9 The frequency of the first harmonic of a standing wave on a string is f.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 92.59801228841145, "t": 536.35546875, "r": 234.66617838541666, "b": 524.0480143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The tension in the string is T.", "text": "The tension in the string is T.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 523.6236165364583, "r": 481.17138671875, "b": 509.6185709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "The tension is increased to 4T without changing the length or mass of the string.", "text": "The tension is increased to 4T without changing the length or mass of the string.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 496.46230061848956, "r": 356.4389241536458, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Which harmonic has a frequency 2f after this change?", "text": "Which harmonic has a frequency 2f after this change?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.8962809244792, "t": 483.30605061848956, "r": 536.1382242838541, "b": 468.87664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 449.77886962890625, "r": 126.84658813476562, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A first", "text": "A first", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 421.34438069661456, "r": 143.33663940429688, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "B second", "text": "B second", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 392.48549397786456, "r": 129.38351440429688, "b": 380.60243733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "C third", "text": "C third", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 364.89980061848956, "r": 135.7258504231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D fourth", "text": "D fourth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 48.62452697753906, "t": 317.3675740559896, "r": 333.18369547526044, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "20 The distance from the slits to the screen is 1.5 m. The width of ten fringes is 3.5 cm.", "text": "20 The distance from the slits to the screen is 1.5 m. The width of ten fringes is 3.5 cm.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 316.94317626953125, "r": 466.3726399739583, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Light of wavelength 5.2 \u00d7 10-7 m is used in a Young's double-slit experiment.", "text": "Light of wavelength 5.2 \u00d7 10-7 m is used in a Young's double-slit experiment.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 92.17519124348958, "t": 263.4693806966146, "r": 281.59942626953125, "b": 251.16192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "What is the separation of the two slits?", "text": "What is the separation of the two slits?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.4734700520833, "t": 251.58632405598962, "r": 536.1382242838541, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 219.33229573567712, "r": 168.70596313476562, "b": 204.05405680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "A 2.2 \u00d7 10-5 m", "text": "A 2.2 \u00d7 10-5 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 189.20021565755212, "r": 168.28314208984375, "b": 176.46836344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "B 9.9 \u00d7 10-5 m", "text": "B 9.9 \u00d7 10-5 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 161.61452229817712, "r": 168.70596313476562, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "C 1.1 \u00d7 10-4 m", "text": "C 1.1 \u00d7 10-4 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 134.02886962890625, "r": 168.70596313476562, "b": 118.75063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "D 2.2 \u00d7 10-4 m", "text": "D 2.2 \u00d7 10-4 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 478.2116292317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 158]}], "orig": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "text": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 732.0016377766927, "r": 330.2239583333333, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "How many maxima are produced by the grating?", "text": "How many maxima are produced by the grating?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 490.4734700520833, "t": 719.6941731770834, "r": 536.5610758463541, "b": 704.840342203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 685.3181660970052, "r": 115.007568359375, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "A4", "text": "A4", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 657.3080851236979, "r": 114.58474731445312, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "B5", "text": "B5", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 630.1467895507812, "r": 115.007568359375, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "c8", "text": "c8", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 92.59801228841145, "t": 600.0147298177084, "r": 114.58474731445312, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "D 9", "text": "D 9", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 554.1800537109375, "r": 466.3726399739583, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "text": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 235.5118408203125, "t": 524.8967895507812, "r": 246.0823771158854, "b": 513.4381306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 236.7802937825521, "t": 512.589335123698, "r": 244.3910929361979, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u4e2a", "text": "\u4e2a", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 241.85416666666666, "t": 440.86655680338544, "r": 262.5724283854167, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "60\u00b0", "text": "60\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 397.57822672526044, "r": 536.5610758463541, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "text": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 350.89479573567706, "r": 144.60511271158853, "b": 338.16294352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 270 km", "text": "A 270 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 323.3091023763021, "r": 144.18229166666666, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "B 470 km", "text": "B 470 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.75236002604167, "t": 294.02581787109375, "r": 144.18229166666666, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "C 510 km", "text": "C 510 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 266.44012451171875, "r": 144.18229166666666, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 540 km", "text": "D 540 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/11"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 478.2116292317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 158]}], "orig": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "text": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 732.0016377766927, "r": 330.2239583333333, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "How many maxima are produced by the grating?", "text": "How many maxima are produced by the grating?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 490.4734700520833, "t": 719.6941731770834, "r": 536.5610758463541, "b": 704.840342203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/12"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 685.3181660970052, "r": 115.007568359375, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "A4", "text": "A4", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/13"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 657.3080851236979, "r": 114.58474731445312, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "B5", "text": "B5", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/14"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 630.1467895507812, "r": 115.007568359375, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "c8", "text": "c8", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/15"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 92.59801228841145, "t": 600.0147298177084, "r": 114.58474731445312, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "D 9", "text": "D 9", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/16"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 554.1800537109375, "r": 466.3726399739583, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "text": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 235.5118408203125, "t": 524.8967895507812, "r": 246.0823771158854, "b": 513.4381306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 236.7802937825521, "t": 512.589335123698, "r": 244.3910929361979, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u4e2a", "text": "\u4e2a", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 241.85416666666666, "t": 440.86655680338544, "r": 262.5724283854167, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "60\u00b0", "text": "60\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 397.57822672526044, "r": 536.5610758463541, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "text": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/17"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 350.89479573567706, "r": 144.60511271158853, "b": 338.16294352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 270 km", "text": "A 270 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/18"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 323.3091023763021, "r": 144.18229166666666, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "B 470 km", "text": "B 470 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/19"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.75236002604167, "t": 294.02581787109375, "r": 144.18229166666666, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "C 510 km", "text": "C 510 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/20"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 266.44012451171875, "r": 144.18229166666666, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 540 km", "text": "D 540 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 29, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 475.6747233072917, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "text": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 732.8504231770834, "r": 320.07623291015625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "What is the total distance travelled by the ball?", "text": "What is the total distance travelled by the ball?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.8962809244792, "t": 720.1185709635416, "r": 536.5610758463541, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 687.0157470703125, "r": 135.7258504231771, "b": 673.4350992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 5.9 m", "text": "A 5.9 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 658.5812784830729, "r": 135.7258504231771, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 7.1 m", "text": "B 7.1 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 630.5711873372396, "r": 132.7660929361979, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "c 14 m", "text": "c 14 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 601.7123209635416, "r": 132.34327189127603, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "D 28 m", "text": "D 28 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 49.47016906738281, "t": 554.1800537109375, "r": 79.4905293782552, "b": 540.175028483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 552.9068806966145, "r": 504.8494059244792, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 176]}], "orig": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "text": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 439.16896565755206, "r": 268.06911214192706, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "What is the tension in the tow rope?", "text": "What is the tension in the tow rope?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.4734700520833, "t": 426.01271565755206, "r": 536.5610758463541, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 392.06109619140625, "r": 143.75947062174478, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 3000 N", "text": "A 3000 N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 363.20225016276044, "r": 143.33663940429688, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 4100N", "text": "B 4100N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.86647542317708, "t": 333.49456787109375, "r": 101.47727457682292, "b": 325.0066935221354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/11"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 104.85984293619792, "t": 334.76776123046875, "r": 143.33663940429688, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "7800N", "text": "7800N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/12"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.02083333333333, "t": 306.3332722981771, "r": 143.75947062174478, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "D 8900N", "text": "D 8900N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/13"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 475.6747233072917, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "text": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 732.8504231770834, "r": 320.07623291015625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "What is the total distance travelled by the ball?", "text": "What is the total distance travelled by the ball?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.8962809244792, "t": 720.1185709635416, "r": 536.5610758463541, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/14"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 687.0157470703125, "r": 135.7258504231771, "b": 673.4350992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 5.9 m", "text": "A 5.9 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/15"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 658.5812784830729, "r": 135.7258504231771, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 7.1 m", "text": "B 7.1 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/16"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 630.5711873372396, "r": 132.7660929361979, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "c 14 m", "text": "c 14 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/17"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 601.7123209635416, "r": 132.34327189127603, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "D 28 m", "text": "D 28 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/18"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 49.47016906738281, "t": 554.1800537109375, "r": 79.4905293782552, "b": 540.175028483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/19"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 552.9068806966145, "r": 504.8494059244792, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 176]}], "orig": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "text": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 439.16896565755206, "r": 268.06911214192706, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "What is the tension in the tow rope?", "text": "What is the tension in the tow rope?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.4734700520833, "t": 426.01271565755206, "r": 536.5610758463541, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/20"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 392.06109619140625, "r": 143.75947062174478, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 3000 N", "text": "A 3000 N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/21"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 363.20225016276044, "r": 143.33663940429688, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 4100N", "text": "B 4100N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/22"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.86647542317708, "t": 333.49456787109375, "r": 101.47727457682292, "b": 325.0066935221354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/23"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 104.85984293619792, "t": 334.76776123046875, "r": 143.33663940429688, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "7800N", "text": "7800N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/24"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.02083333333333, "t": 306.3332722981771, "r": 143.75947062174478, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "D 8900N", "text": "D 8900N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "text": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 578.370585123698, "r": 519.2253824869791, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "text": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.8962809244792, "t": 551.2092895507812, "r": 535.7154134114584, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 518.106465657552, "r": 324.304443359375, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "A the drag force on the parachutist from the air", "text": "A the drag force on the parachutist from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 489.67197672526044, "r": 308.6600341796875, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "B the tension in the strings of the parachute", "text": "B the tension in the strings of the parachute", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 93.02083333333333, "t": 460.81313069661456, "r": 362.3583984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Cthe gravitational force of theparachutist on the Earth", "text": "Cthe gravitational force of theparachutist on the Earth", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 433.22743733723956, "r": 308.23720296223956, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Dthe lift force on the parachute from the air", "text": "Dthe lift force on the parachute from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 48.201700846354164, "t": 386.54396565755206, "r": 79.91335042317708, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 90.48389689127605, "t": 386.11956787109375, "r": 252.00189208984375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "A tennis ball has a mass of 58 g.", "text": "A tennis ball has a mass of 58 g.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 371.26572672526044, "r": 523.8764241536459, "b": 345.37762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 142]}], "orig": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "text": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 345.37762451171875, "r": 286.67327880859375, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "The effect of air resistance is negligible.", "text": "The effect of air resistance is negligible.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 320.33831787109375, "r": 482.8626708984375, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "What is the change in momentum of the ball during its collision with the ground?", "text": "What is the change in momentum of the ball during its collision with the ground?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.4734700520833, "t": 306.3332722981771, "r": 536.1382242838541, "b": 291.90386962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 273.2304484049479, "r": 154.33001708984375, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "A 0.040 N s", "text": "A 0.040 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 244.79600016276038, "r": 154.33001708984375, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "B 0.075 N s", "text": "B 0.075 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 216.36151123046875, "r": 154.33001708984375, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "C 0.215N s", "text": "C 0.215N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 186.65386962890625, "r": 153.90719604492188, "b": 175.19517008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "D0.614N s", "text": "D0.614N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "text": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 578.370585123698, "r": 519.2253824869791, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "text": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.8962809244792, "t": 551.2092895507812, "r": 535.7154134114584, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/11"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 518.106465657552, "r": 324.304443359375, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "A the drag force on the parachutist from the air", "text": "A the drag force on the parachutist from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/12"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 489.67197672526044, "r": 308.6600341796875, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "B the tension in the strings of the parachute", "text": "B the tension in the strings of the parachute", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/13"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 93.02083333333333, "t": 460.81313069661456, "r": 362.3583984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Cthe gravitational force of theparachutist on the Earth", "text": "Cthe gravitational force of theparachutist on the Earth", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/14"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 433.22743733723956, "r": 308.23720296223956, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Dthe lift force on the parachute from the air", "text": "Dthe lift force on the parachute from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 48.201700846354164, "t": 386.54396565755206, "r": 79.91335042317708, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 90.48389689127605, "t": 386.11956787109375, "r": 252.00189208984375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "A tennis ball has a mass of 58 g.", "text": "A tennis ball has a mass of 58 g.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 371.26572672526044, "r": 523.8764241536459, "b": 345.37762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 142]}], "orig": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "text": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 345.37762451171875, "r": 286.67327880859375, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "The effect of air resistance is negligible.", "text": "The effect of air resistance is negligible.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 320.33831787109375, "r": 482.8626708984375, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "What is the change in momentum of the ball during its collision with the ground?", "text": "What is the change in momentum of the ball during its collision with the ground?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.4734700520833, "t": 306.3332722981771, "r": 536.1382242838541, "b": 291.90386962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/15"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 273.2304484049479, "r": 154.33001708984375, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "A 0.040 N s", "text": "A 0.040 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/16"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 244.79600016276038, "r": 154.33001708984375, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "B 0.075 N s", "text": "B 0.075 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/17"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 216.36151123046875, "r": 154.33001708984375, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "C 0.215N s", "text": "C 0.215N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/18"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 186.65386962890625, "r": 153.90719604492188, "b": 175.19517008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "D0.614N s", "text": "D0.614N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 505.695068359375, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 234]}], "orig": "27 A mass M is suspended from a spring. When the mass is at rest at the equilibrium position, the elastic potential energy stored is E. An extra mass of 2M is added to the spring and the spring extends while still obeying Hooke's law.", "text": "27 A mass M is suspended from a spring. When the mass is at rest at the equilibrium position, the elastic potential energy stored is E. An extra mass of 2M is added to the spring and the spring extends while still obeying Hooke's law.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 708.2355041503906, "r": 517.1112467447916, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 99]}], "orig": "What is the total elastic energy stored when the system is at rest at the new equilibrium position?", "text": "What is the total elastic energy stored when the system is at rest at the new equilibrium position?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.4734700520833, "t": 681.9230041503906, "r": 536.1382242838541, "b": 667.4935709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 649.2445882161459, "r": 121.77272542317708, "b": 634.8151448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "A 2E", "text": "A 2E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 620.3857014973959, "r": 122.19554646809895, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "B 3E", "text": "B 3E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 592.8000284830729, "r": 121.77272542317708, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "C 4E", "text": "C 4E", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 91.3295389811198, "t": 563.0923665364583, "r": 121.77272542317708, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "D9E", "text": "D9E", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 516.4088948567708, "r": 512.0373942057291, "b": 489.24761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "28 Two wires P and Q are made of the same material and have the same cross-sectional area.", "text": "28 Two wires P and Q are made of the same material and have the same cross-sectional area.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 91.75236002604167, "t": 488.39882405598956, "r": 504.8494059244792, "b": 462.08632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 153]}], "orig": "P has an original length L and is subject to a tensile force F. P extends a distance x. Q has an original length 2L and is subject to a tensile force 2F.", "text": "P has an original length L and is subject to a tensile force F. P extends a distance x. Q has an original length 2L and is subject to a tensile force 2F.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 92.17519124348958, "t": 449.35447184244794, "r": 228.7466837565104, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Whichstatementiscorrect?", "text": "Whichstatementiscorrect?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.8962809244792, "t": 436.62261962890625, "r": 536.5610758463541, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 32, "bbox": {"l": 91.75236002604167, "t": 403.09539794921875, "r": 344.5998942057292, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "AThe stress in P and the stress in Q are the same.", "text": "AThe stress in P and the stress in Q are the same.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 91.75236002604167, "t": 375.08530680338544, "r": 228.3238525390625, "b": 361.08026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "B The extension of Q is 2x.", "text": "B The extension of Q is 2x.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 92.17519124348958, "t": 347.07521565755206, "r": 300.20359293619794, "b": 333.91896565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "C The strain of Q is double the strain of P.", "text": "C The strain of Q is double the strain of P.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 324.15789794921875, "r": 313.73388671875, "b": 295.29901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "stress D The value of for P is half that of Q. strain", "text": "stress D The value of for P is half that of Q. strain", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.201700846354164, "t": 268.5621134440104, "r": 313.73388671875, "b": 254.55706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "29 The current in a metallic conductor is 1.5 mA.", "text": "29 The current in a metallic conductor is 1.5 mA.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 92.17519124348958, "t": 240.12762451171875, "r": 416.4796142578125, "b": 227.82017008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "How many electrons pass a point in the conductor in two minutes?", "text": "How many electrons pass a point in the conductor in two minutes?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.4734700520833, "t": 227.82017008463538, "r": 536.5610758463541, "b": 213.39072672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 194.29294840494788, "r": 156.44412231445312, "b": 181.98549397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "A 1.1 \u00d7 1018", "text": "A 1.1 \u00d7 1018", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 165.85850016276038, "r": 156.44412231445312, "b": 153.55100504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "B 1.9 \u00d7 1019", "text": "B 1.9 \u00d7 1019", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.06107584635417, "t": 137.42397054036462, "r": 157.28976440429688, "b": 125.54091389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "C 1.4 \u00d7 1020", "text": "C 1.4 \u00d7 1020", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 108.98956298828125, "r": 156.02130126953125, "b": 97.10650634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "D 2.0 \u00d7 1029", "text": "D 2.0 \u00d7 1029", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 543.7490234375, "t": 788.4461924235026, "r": 582.6486409505209, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 33, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 773.16796875, "r": 477.788818359375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Which value of resistance cannot be made by combining three 10 Q resistors?", "text": "Which value of resistance cannot be made by combining three 10 Q resistors?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 490.0506591796875, "t": 759.1629282633463, "r": 536.1382242838541, "b": 744.7334899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 91.75236002604167, "t": 725.6357116699219, "r": 135.30302937825522, "b": 713.7526448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "A 3.3Q", "text": "A 3.3Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 93.02083333333333, "t": 695.503651936849, "r": 101.9000956217448, "b": 686.1669616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 97.671875, "t": 696.3524373372396, "r": 135.30302937825522, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "36.7Q", "text": "36.7Q", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 92.17519124348958, "t": 668.3423665364584, "r": 132.34327189127603, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "C15Q", "text": "C15Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 91.75236002604167, "t": 639.9078776041666, "r": 132.34327189127603, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "D25Q", "text": "D25Q", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 48.201700846354164, "t": 594.0732014973959, "r": 532.7556559244791, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "31 A particle performs simple harmonic motion with a time period of 1.4 s and an amplitude of 12 mm.", "text": "31 A particle performs simple harmonic motion with a time period of 1.4 s and an amplitude of 12 mm.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 91.75236002604167, "t": 551.2092895507812, "r": 306.54591878255206, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is the maximum speed of the particle?", "text": "What is the maximum speed of the particle?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 490.8962809244792, "t": 538.0530395507812, "r": 536.5610758463541, "b": 523.6236165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 505.37461344401044, "r": 160.6723429361979, "b": 492.21836344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "A 8.6 mm s-1", "text": "A 8.6 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 476.94012451171875, "r": 158.13541666666666, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "B 27 mm s-1", "text": "B 27 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 91.3295389811198, "t": 448.08127848307294, "r": 158.13541666666666, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "C 54 mm s-1", "text": "C 54 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 419.64678955078125, "r": 164.05492146809897, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "D110 mm s-1", "text": "D110 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 551.3598225911459, "t": 417.94919840494794, "r": 567.0042317708334, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 231.28361002604166, "t": 347.92401123046875, "r": 347.1368408203125, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 33, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 34, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 187.31011962890625, "t": 445.11049397786456, "r": 396.6070149739583, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 34, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.65151468912761, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 35, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 184.773193359375, "t": 771.0459899902344, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Additional page, if required. Writethequestionnumbers inthe left-handmargin.", "text": "Additional page, if required. Writethequestionnumbers inthe left-handmargin.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 215]}], "orig": "For confidentialitypurposes,allacknowledgementsof third-party copyright material arepublished inaseparatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgementsof third-party copyright material arepublished inaseparatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CopyrightTeam.", "text": "CopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Copyright2022AQAand itslicensors.Allrightsreserved.", "text": "Copyright2022AQAand itslicensors.Allrightsreserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 378.8484700520833, "t": 57.63775634765625, "r": 506.9635416666667, "b": 47.87660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "226A7408/1", "text": "226A7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 36, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.11932373046875, "t": 396.3277587890625, "r": 544.253662109375, "b": 216.21173095703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.26513671875, "t": 450.7076822916667, "r": 534.8697916666666, "b": 463.01513671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.3053792317708, "t": 470.2298583984375, "r": 489.2049967447917, "b": 481.6885172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.9635416666667, "t": 469.8054606119792, "r": 531.0643717447916, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 488.9032389322917, "r": 473.1377766927083, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 505.8790283203125, "r": 473.5605875651042, "b": 516.0645345052084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 522.4304606119791, "r": 473.5605875651042, "b": 533.4647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 539.8306477864584, "r": 473.5605875651042, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 556.382080078125, "r": 473.9833984375, "b": 567.4163411458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 573.3578694661459, "r": 473.9833984375, "b": 584.3921305338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 458.3389892578125, "t": 589.9092610677084, "r": 480.3257649739583, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7-31", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.5738525390625, "t": 608.5826822916666, "r": 487.5137125651042, "b": 621.7389322916666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.26513671875, "t": 450.7076822916667, "r": 534.8697916666666, "b": 463.01513671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.26513671875, "t": 450.7076822916667, "r": 534.8697916666666, "b": 463.01513671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.3053792317708, "t": 470.2298583984375, "r": 489.2049967447917, "b": 481.6885172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.9635416666667, "t": 469.8054606119792, "r": 531.0643717447916, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 488.9032389322917, "r": 473.1377766927083, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 505.8790283203125, "r": 473.5605875651042, "b": 516.0645345052084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 522.4304606119791, "r": 473.5605875651042, "b": 533.4647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 539.8306477864584, "r": 473.5605875651042, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 556.382080078125, "r": 473.9833984375, "b": 567.4163411458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 573.3578694661459, "r": 473.9833984375, "b": 584.3921305338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 458.3389892578125, "t": 589.9092610677084, "r": 480.3257649739583, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7-31", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.5738525390625, "t": 608.5826822916666, "r": 487.5137125651042, "b": 621.7389322916666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 6, "bbox": {"l": 187.1017303466797, "t": 518.6640625, "r": 394.65936279296875, "b": 402.0744323730469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 197.45784505208334, "t": 332.30141194661456, "r": 279.4853108723958, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Gammaphoton", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 294.7069091796875, "t": 333.15020751953125, "r": 387.7277425130208, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Photonenergy/ J", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 229.59232584635416, "t": 361.1602783203125, "r": 246.92801920572916, "b": 375.1653238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.46543375651044, "t": 361.1602783203125, "r": 369.54638671875, "b": 373.4677327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "5.0 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 229.59232584635416, "t": 390.0191650390625, "r": 247.3508504231771, "b": 403.5998128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 390.4435628255208, "r": 369.54638671875, "b": 402.3266194661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.6 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 229.59232584635416, "t": 418.8780110677083, "r": 247.3508504231771, "b": 432.883056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 419.3024088541667, "r": 369.54638671875, "b": 431.1855061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.0 \u00d7 10-13", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 4, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 197.45784505208334, "t": 332.30141194661456, "r": 279.4853108723958, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Gammaphoton", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 294.7069091796875, "t": 333.15020751953125, "r": 387.7277425130208, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Photonenergy/ J", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 229.59232584635416, "t": 361.1602783203125, "r": 246.92801920572916, "b": 375.1653238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.46543375651044, "t": 361.1602783203125, "r": 369.54638671875, "b": 373.4677327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "5.0 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 229.59232584635416, "t": 390.0191650390625, "r": 247.3508504231771, "b": 403.5998128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 390.4435628255208, "r": 369.54638671875, "b": 402.3266194661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.6 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 229.59232584635416, "t": 418.8780110677083, "r": 247.3508504231771, "b": 432.883056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 419.3024088541667, "r": 369.54638671875, "b": 431.1855061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.0 \u00d7 10-13", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}, {"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 8, "bbox": {"l": 187.03213500976562, "t": 313.766357421875, "r": 393.7676696777344, "b": 208.6341552734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/11"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 218.1761271158854, "t": 536.0111083984375, "r": 260.8811442057292, "b": 547.8941650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Material", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 299.78076171875, "t": 534.7379150390625, "r": 385.1907958984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Density / kg m-3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.7533162434896, "t": 562.7480061848959, "r": 260.8811442057292, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "concrete", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 560.6260172526041, "r": 364.8953450520833, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 228.7466837565104, "t": 588.6361083984375, "r": 249.88777669270834, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "iron", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 586.5141194661459, "r": 364.4725341796875, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.8 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 224.9412841796875, "t": 614.5242106119791, "r": 254.1159871419271, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "brass", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 613.2510172526041, "r": 364.4725341796875, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "8.6 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 4, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 218.1761271158854, "t": 536.0111083984375, "r": 260.8811442057292, "b": 547.8941650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Material", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 299.78076171875, "t": 534.7379150390625, "r": 385.1907958984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Density / kg m-3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.7533162434896, "t": 562.7480061848959, "r": 260.8811442057292, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "concrete", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 560.6260172526041, "r": 364.8953450520833, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 228.7466837565104, "t": 588.6361083984375, "r": 249.88777669270834, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "iron", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 586.5141194661459, "r": 364.4725341796875, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.8 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 224.9412841796875, "t": 614.5242106119791, "r": 254.1159871419271, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "brass", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 613.2510172526041, "r": 364.4725341796875, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "8.6 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.04322052001953, "t": 798.1278953552246, "r": 168.16883850097656, "b": 750.7074356079102, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.55791091918945, "t": 53.442626953125, "r": 232.80886840820312, "b": 17.564697265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.716583251953125, "t": 53.1287841796875, "r": 99.12460327148438, "b": 17.388427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 90.66405487060547, "t": 665.022216796875, "r": 488.1374206542969, "b": 485.4034423828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/40"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.73481750488281, "t": 53.125244140625, "r": 99.09122467041016, "b": 17.48345947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.870540618896484, "t": 53.111572265625, "r": 99.27579498291016, "b": 17.62060546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 39.981536865234375, "t": 787.2447891235352, "r": 539.0674438476562, "b": 75.93817138671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.70866394042969, "t": 53.13214111328125, "r": 99.10891723632812, "b": 17.50592041015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.68804931640625, "t": 53.1361083984375, "r": 99.04960632324219, "b": 17.542236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 543.333251953125, "t": 131.81103515625, "r": 576.0045166015625, "b": 90.12890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 39.12006378173828, "t": 789.1430397033691, "r": 540.823486328125, "b": 73.801025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.57811737060547, "t": 53.12103271484375, "r": 99.4864501953125, "b": 17.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.677764892578125, "t": 53.17633056640625, "r": 98.9754867553711, "b": 17.55694580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 154.61647033691406, "t": 721.9823760986328, "r": 426.1144104003906, "b": 525.6509094238281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.875328063964844, "t": 53.1292724609375, "r": 99.22415161132812, "b": 17.6796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 201.8160858154297, "t": 721.8503341674805, "r": 379.07684326171875, "b": 577.6731567382812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.6340446472168, "t": 53.21136474609375, "r": 99.11817169189453, "b": 17.56353759765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 39.06216812133789, "t": 789.459171295166, "r": 539.8710327148438, "b": 74.51080322265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.61802291870117, "t": 53.09515380859375, "r": 99.53155517578125, "b": 17.68267822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.67570877075195, "t": 53.21282958984375, "r": 99.15630340576172, "b": 17.2843017578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 129.14149475097656, "t": 667.7611541748047, "r": 450.1310119628906, "b": 488.6637878417969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.817195892333984, "t": 53.1468505859375, "r": 99.11898803710938, "b": 17.54583740234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 543.3595581054688, "t": 479.41790771484375, "r": 575.8417358398438, "b": 438.40252685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 218.50071716308594, "t": 722.6109161376953, "r": 361.83538818359375, "b": 524.9989624023438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.73312759399414, "t": 53.191162109375, "r": 99.1208724975586, "b": 17.85943603515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.66131591796875, "t": 53.1983642578125, "r": 99.0597152709961, "b": 17.4285888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 218.16305541992188, "t": 735.5035705566406, "r": 361.9599609375, "b": 514.8138427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 45.604835510253906, "t": 776.7489929199219, "r": 106.06902313232422, "b": 758.4946517944336, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.60740280151367, "t": 53.19488525390625, "r": 99.07420349121094, "b": 17.50262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 92.74071502685547, "t": 705.5439300537109, "r": 462.9246520996094, "b": 567.9103393554688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.799156188964844, "t": 53.12493896484375, "r": 99.204345703125, "b": 17.88525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 39.5291862487793, "t": 788.0014839172363, "r": 539.2009887695312, "b": 75.4483642578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.65611267089844, "t": 53.18243408203125, "r": 99.09671783447266, "b": 17.6627197265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 39.92436981201172, "t": 788.666690826416, "r": 539.1596069335938, "b": 76.3265380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.8003044128418, "t": 53.18994140625, "r": 99.22151947021484, "b": 17.74847412109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.74028778076172, "t": 53.14093017578125, "r": 99.16525268554688, "b": 17.38323974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 45.541805267333984, "t": 776.4457015991211, "r": 105.7479248046875, "b": 758.8275680541992, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.686729431152344, "t": 53.1051025390625, "r": 99.13709259033203, "b": 17.62286376953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 148.14927673339844, "t": 696.1988983154297, "r": 432.6424560546875, "b": 517.8292236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 39.35024642944336, "t": 787.4561538696289, "r": 539.5936889648438, "b": 75.9244384765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.74589157104492, "t": 53.1539306640625, "r": 99.09431457519531, "b": 17.24566650390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.82809066772461, "t": 53.14093017578125, "r": 99.1424560546875, "b": 17.41925048828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 103.25153350830078, "t": 561.8157043457031, "r": 130.67306518554688, "b": 540.962646484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 474.3487548828125, "t": 605.8225555419922, "r": 500.7398681640625, "b": 586.4608612060547, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.664512634277344, "t": 53.15869140625, "r": 99.07539367675781, "b": 17.5406494140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/texts/42"}, {"$ref": "#/texts/43"}, {"$ref": "#/texts/44"}, {"$ref": "#/texts/45"}, {"$ref": "#/texts/46"}, {"$ref": "#/texts/47"}, {"$ref": "#/texts/48"}, {"$ref": "#/texts/49"}, {"$ref": "#/texts/50"}, {"$ref": "#/texts/51"}, {"$ref": "#/texts/52"}, {"$ref": "#/texts/53"}, {"$ref": "#/texts/54"}, {"$ref": "#/texts/55"}, {"$ref": "#/texts/56"}, {"$ref": "#/texts/57"}, {"$ref": "#/texts/58"}, {"$ref": "#/texts/59"}, {"$ref": "#/texts/60"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 41.39021682739258, "t": 788.1883316040039, "r": 557.9503173828125, "b": 77.1551513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/61"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.768917083740234, "t": 53.206298828125, "r": 99.21061706542969, "b": 17.35614013671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.72139358520508, "t": 53.19293212890625, "r": 99.13709259033203, "b": 17.373779296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/groups/6"}, {"$ref": "#/texts/43"}, {"$ref": "#/texts/44"}, {"$ref": "#/texts/45"}, {"$ref": "#/texts/46"}, {"$ref": "#/texts/47"}, {"$ref": "#/texts/48"}, {"$ref": "#/texts/49"}, {"$ref": "#/texts/50"}, {"$ref": "#/texts/51"}, {"$ref": "#/texts/52"}, {"$ref": "#/texts/53"}, {"$ref": "#/texts/54"}, {"$ref": "#/texts/55"}, {"$ref": "#/texts/56"}, {"$ref": "#/texts/57"}, {"$ref": "#/texts/58"}, {"$ref": "#/texts/59"}, {"$ref": "#/texts/60"}, {"$ref": "#/groups/7"}, {"$ref": "#/groups/8"}, {"$ref": "#/groups/9"}, {"$ref": "#/groups/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 40.20746612548828, "t": 788.4639091491699, "r": 539.2969360351562, "b": 76.21099853515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/66"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.7583122253418, "t": 53.1724853515625, "r": 99.12340545654297, "b": 17.5716552734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.66642379760742, "t": 53.19677734375, "r": 99.13784790039062, "b": 17.37799072265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/11"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/groups/12"}, {"$ref": "#/groups/13"}, {"$ref": "#/groups/14"}, {"$ref": "#/groups/15"}, {"$ref": "#/groups/16"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/groups/17"}, {"$ref": "#/groups/18"}, {"$ref": "#/groups/19"}, {"$ref": "#/groups/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 40.1088752746582, "t": 787.748893737793, "r": 540.0300903320312, "b": 75.31951904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.7064323425293, "t": 53.25390625, "r": 99.08885192871094, "b": 17.55670166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/13"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/groups/14"}, {"$ref": "#/groups/15"}, {"$ref": "#/groups/16"}, {"$ref": "#/groups/17"}, {"$ref": "#/groups/18"}, {"$ref": "#/groups/19"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/groups/20"}, {"$ref": "#/groups/21"}, {"$ref": "#/groups/22"}, {"$ref": "#/groups/23"}, {"$ref": "#/groups/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 39.75428009033203, "t": 788.3456954956055, "r": 539.5263061523438, "b": 75.88092041015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/33"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.5898551940918, "t": 53.221923828125, "r": 99.1150131225586, "b": 17.39642333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/10"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/groups/11"}, {"$ref": "#/groups/12"}, {"$ref": "#/groups/13"}, {"$ref": "#/groups/14"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/groups/15"}, {"$ref": "#/groups/16"}, {"$ref": "#/groups/17"}, {"$ref": "#/groups/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 39.60329055786133, "t": 788.077392578125, "r": 539.8965454101562, "b": 76.03204345703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.6134147644043, "t": 53.18646240234375, "r": 99.23092651367188, "b": 17.52117919921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.62717819213867, "t": 53.14801025390625, "r": 99.07987976074219, "b": 17.21087646484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 33, "bbox": {"l": 43.651397705078125, "t": 53.1204833984375, "r": 99.10762023925781, "b": 17.42449951171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 34, "bbox": {"l": 43.563106536865234, "t": 52.9520263671875, "r": 99.4925765991211, "b": 17.06787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 43.705772399902344, "t": 53.1787109375, "r": 99.34980773925781, "b": 16.9459228515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 43.670074462890625, "t": 53.22137451171875, "r": 99.135986328125, "b": 17.025634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 362.7693786621094, "t": 84.42547607421875, "r": 527.0680541992188, "b": 48.60748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}, "2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}, "3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}, "4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}, "5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}, "6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}, "7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}, "8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}, "9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}, "10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}, "11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}, "12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}, "13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}, "14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}, "15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}, "16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}, "17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}, "18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}, "19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}, "20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}, "21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}, "22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}, "23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}, "24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}, "25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}, "26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}, "27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}, "28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}, "29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}, "30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}, "31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}, "32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}, "33": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 33}, "34": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 34}, "35": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 35}, "36": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 36}}, "_failed_pages": []} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p1.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p1.json new file mode 100644 index 0000000..13ee0b5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p1.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/16"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/25"}, {"$ref": "#/groups/4"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "list", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "AQA", "text": "AQA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 724.7869160970052, "r": 234.66617838541666, "b": 712.0550638834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Please write clearly in block capitals.", "text": "Please write clearly in block capitals.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.235321044921875, "t": 689.1377258300781, "r": 131.0748087565104, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "Centre number", "text": "Centre number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 312.46543375651044, "t": 689.1377258300781, "r": 403.7949625651042, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "Candidatenumber", "text": "Candidatenumber", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.8125, "t": 654.76171875, "r": 101.9000956217448, "b": 641.60546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Surname", "text": "Surname", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 55.389678955078125, "t": 629.2980143229166, "r": 120.50426228841145, "b": 615.7173665364584, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Forename(s)", "text": "Forename(s)", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 56.65814208984375, "t": 602.13671875, "r": 155.59848022460938, "b": 590.6780395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "Candidate signature", "text": "Candidate signature", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 165.74620564778647, "t": 588.98046875, "r": 309.92848714192706, "b": 576.6730143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "I declare this is my own work.", "text": "I declare this is my own work.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 40.59090677897135, "t": 555.8776448567708, "r": 146.7192179361979, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "A-level PHYSICS", "text": "A-level PHYSICS", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 483.73044840494794, "r": 96.82623291015625, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Paper 1", "text": "Paper 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 396.30507405598956, "r": 92.59801228841145, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Materials", "text": "Materials", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 382.30002848307294, "r": 186.04166666666666, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "For this paper you must have:", "text": "For this paper you must have:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 367.87058512369794, "r": 145.87357584635416, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7 a pencil and a ruler", "text": "a pencil and a ruler", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 355.56313069661456, "r": 153.90719604492188, "b": 343.68007405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7a scientific calculator", "text": "\u00b7a scientific calculator", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 341.98248291015625, "r": 195.76656087239584, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "\u00b7a Data and Formulae Booklet", "text": "\u00b7a Data and Formulae Booklet", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 327.9774373372396, "r": 111.20217895507812, "b": 316.0943806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "\u00b7a protractor.", "text": "\u00b7a protractor.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.899620056152344, "t": 305.90887451171875, "r": 108.66524251302083, "b": 294.4502156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "Instructions", "text": "Instructions", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 292.3282267252604, "r": 230.86079915364584, "b": 279.1719767252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 Use black ink or black ball-point pen.", "text": "Use black ink or black ball-point pen.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 279.59637451171875, "r": 239.31722005208334, "b": 264.7425740559896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "\u00b7 Fill in the boxes at the top of this page.", "text": "Fill in the boxes at the top of this page.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.7452646891276, "t": 264.31817626953125, "r": 157.71259562174478, "b": 252.85947672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 22]}], "orig": "\u00b7Answer all questions.", "text": "\u00b7Answer all questions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 251.58632405598962, "r": 386.0364583333333, "b": 225.27382405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 118]}], "orig": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "text": "You must answer the questions in the spaces provided. Do not write outside the box around each page or on blank pages.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 225.27382405598962, "r": 424.5132649739583, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 140]}], "orig": "\u00b7 If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "text": "If you need extra space for your answer(s), use the lined pages at the end of this book. Write the question number against your answer(s).", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 402.1036783854167, "t": 427.28590901692706, "r": 545.0174967447916, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "Time allowed: 2 hours", "text": "Time allowed: 2 hours", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 198.53692626953125, "r": 402.9493408203125, "b": 173.92197672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "Do all rough work in this book. Cross through any work you do not want to be marked.", "text": "Do all rough work in this book. Cross through any work you do not want to be marked.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 171.80002848307288, "r": 161.51798502604166, "b": 159.06817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "\u00b7 Show all your working.", "text": "Show all your working.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 38.053975423177086, "t": 151.00461832682288, "r": 106.12831624348958, "b": 136.99965413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "Information", "text": "Information", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 38.47679901123047, "t": 135.72646077473962, "r": 282.02223714192706, "b": 123.41900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "\u00b7 The marks for questions are shown in brackets.", "text": "The marks for questions are shown in brackets.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 122.14581298828125, "r": 245.23673502604166, "b": 109.83835856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "\u00b7 The maximum mark for this paper is 85.", "text": "The maximum mark for this paper is 85.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": "\u00b7"}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 41.859375, "t": 108.56516520182288, "r": 369.54638671875, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "You are expected touse a scientificcalculatorwhere appropriate.", "text": "You are expected touse a scientificcalculatorwhere appropriate.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 1, "bbox": {"l": 39.32244110107422, "t": 94.98451741536462, "r": 337.41192626953125, "b": 83.95025634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "\u00b7ADataandFormulaeBookletisprovidedasalooseinsert.", "text": "\u00b7ADataandFormulaeBookletisprovidedasalooseinsert.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 211.83380126953125, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "JUN227408101", "text": "JUN227408101", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 316.2708333333333, "t": 22.83730061848962, "r": 367.8551025390625, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "IB/M/Jun22/E12", "text": "IB/M/Jun22/E12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 1, "bbox": {"l": 480.7485758463542, "t": 34.72035725911462, "r": 545.8631591796875, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "7408/1", "text": "7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 38.04322052001953, "t": 798.1278953552246, "r": 168.16883850097656, "b": 750.7074356079102, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 1, "bbox": {"l": 41.55791091918945, "t": 53.442626953125, "r": 232.80886840820312, "b": 17.564697265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 443.11932373046875, "t": 396.3277587890625, "r": 544.253662109375, "b": 216.21173095703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 453.26513671875, "t": 450.7076822916667, "r": 534.8697916666666, "b": 463.01513671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 450.3053792317708, "t": 470.2298583984375, "r": 489.2049967447917, "b": 481.6885172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.9635416666667, "t": 469.8054606119792, "r": 531.0643717447916, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 488.9032389322917, "r": 473.1377766927083, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 505.8790283203125, "r": 473.5605875651042, "b": 516.0645345052084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 522.4304606119791, "r": 473.5605875651042, "b": 533.4647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.9497884114583, "t": 539.8306477864584, "r": 473.5605875651042, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 556.382080078125, "r": 473.9833984375, "b": 567.4163411458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 465.5269775390625, "t": 573.3578694661459, "r": 473.9833984375, "b": 584.3921305338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 458.3389892578125, "t": 589.9092610677084, "r": 480.3257649739583, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7-31", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 451.5738525390625, "t": 608.5826822916666, "r": 487.5137125651042, "b": 621.7389322916666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 10, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 453.26513671875, "t": 450.7076822916667, "r": 534.8697916666666, "b": 463.01513671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 453.26513671875, "t": 450.7076822916667, "r": 534.8697916666666, "b": 463.01513671875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 2, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 2, "text": "For Examiner's Use", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 450.3053792317708, "t": 470.2298583984375, "r": 489.2049967447917, "b": 481.6885172526042, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Question", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 506.9635416666667, "t": 469.8054606119792, "r": 531.0643717447916, "b": 482.1129150390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Mark", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 488.9032389322917, "r": 473.1377766927083, "b": 497.39111328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 505.8790283203125, "r": 473.5605875651042, "b": 516.0645345052084, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 522.4304606119791, "r": 473.5605875651042, "b": 533.4647216796875, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.9497884114583, "t": 539.8306477864584, "r": 473.5605875651042, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 556.382080078125, "r": 473.9833984375, "b": 567.4163411458334, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "5", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 465.5269775390625, "t": 573.3578694661459, "r": 473.9833984375, "b": 584.3921305338541, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 7, "end_row_offset_idx": 8, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 458.3389892578125, "t": 589.9092610677084, "r": 480.3257649739583, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "7-31", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 8, "end_row_offset_idx": 9, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 451.5738525390625, "t": 608.5826822916666, "r": 487.5137125651042, "b": 621.7389322916666, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "TOTAL", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 9, "end_row_offset_idx": 10, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"1": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p10.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p10.json new file mode 100644 index 0000000..c126d0f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p10.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 10, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "10", "text": "10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 315.0023600260417, "t": 662.4008382161459, "r": 320.921875, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 245.6595662434896, "t": 647.1225992838541, "r": 254.538818359375, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 292.59279378255206, "t": 641.60546875, "r": 300.62640380859375, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "M", "text": "M", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 307.81439208984375, "t": 644.1518351236979, "r": 328.10984293619794, "b": 635.6639404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "55\u00b0", "text": "55\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 228.7466837565104, "t": 598.3171590169271, "r": 253.69317626953125, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "rope", "text": "rope", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 10, "bbox": {"l": 115.43039957682292, "t": 772.3191782633463, "r": 427.8958333333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "Figure 4 shows the pulley arrangement when the gate is closed.", "text": "Figure 4 shows the pulley arrangement when the gate is closed.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 10, "bbox": {"l": 267.64630126953125, "t": 748.128651936849, "r": 314.57952880859375, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 4", "text": "Figure 4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 315.0023600260417, "t": 662.4008382161459, "r": 320.921875, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 245.6595662434896, "t": 647.1225992838541, "r": 254.538818359375, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 292.59279378255206, "t": 641.60546875, "r": 300.62640380859375, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "M", "text": "M", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 307.81439208984375, "t": 644.1518351236979, "r": 328.10984293619794, "b": 635.6639404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "55\u00b0", "text": "55\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 228.7466837565104, "t": 598.3171590169271, "r": 253.69317626953125, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "rope", "text": "rope", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 563.0923665364583, "r": 526.413330078125, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Pulleys P and M are frictionless so that the tension in the rope attached to A is equal totheweightofA.", "text": "Pulleys P and M are frictionless so that the tension in the rope attached to A is equal totheweightofA.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.3162841796875, "t": 536.35546875, "r": 430.8555908203125, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "A weighs 35 N and the weight of moveable pulley M is negligible.", "text": "A weighs 35 N and the weight of moveable pulley M is negligible.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 48.62452697753906, "t": 510.8917643229167, "r": 102.32291666666667, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.2", "text": "03.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 114.16192626953125, "t": 508.3453776041667, "r": 459.6074625651042, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Calculate the tension in the horizontal cable C when the gate is closed.", "text": "Calculate the tension in the horizontal cable C when the gate is closed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 484.976806640625, "t": 494.34035237630206, "r": 536.1382242838541, "b": 481.18410237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[2marks]", "text": "[2marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 313.73388671875, "t": 304.6357218424479, "r": 362.3583984375, "b": 292.3282267252604, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "tension =", "text": "tension =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 49.89299011230469, "t": 263.4693806966146, "r": 101.9000956217448, "b": 249.03993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.3", "text": "03.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 113.73910522460938, "t": 261.77178955078125, "r": 359.8214925130208, "b": 248.19114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "Pulley M is pulled to the left as the gate is opened.", "text": "Pulley M is pulled to the left as the gate is opened.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 115.43039957682292, "t": 234.61049397786462, "r": 424.5132649739583, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 65]}], "orig": "Explain why this increases the tension in the horizontal cable C.", "text": "Explain why this increases the tension in the horizontal cable C.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 483.7083333333333, "t": 222.30303955078125, "r": 535.7154134114584, "b": 207.87359619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 10, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 10, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 201.8160858154297, "t": 721.8503341674805, "r": 379.07684326171875, "b": 577.6731567382812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 10, "bbox": {"l": 43.6340446472168, "t": 53.21136474609375, "r": 99.11817169189453, "b": 17.56353759765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"10": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 10}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p11.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p11.json new file mode 100644 index 0000000..6dc559b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p11.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 11, "bbox": {"l": 282.86789957682294, "t": 813.0611114501953, "r": 294.7069091796875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 188.15576171875, "t": 775.7143351236979, "r": 390.6875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 3 continues on the next page", "text": "Question 3 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 189.00142415364584, "t": 446.38368733723956, "r": 398.2982991536458, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 11, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 11, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 11, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 39.06216812133789, "t": 789.459171295166, "r": 539.8710327148438, "b": 74.51080322265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 11, "bbox": {"l": 43.61802291870117, "t": 53.09515380859375, "r": 99.53155517578125, "b": 17.68267822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"11": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 11}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p12.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p12.json new file mode 100644 index 0000000..536dbf4 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p12.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 12, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.4", "text": "03.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 501.0440266927083, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 123]}], "orig": "Figure 5 shows a plan view with the gate open.The horizontal cable C passes over pulley R and is attached to the door at D.", "text": "Figure 5 shows a plan view with the gate open.The horizontal cable C passes over pulley R and is attached to the door at D.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 747.2798563639323, "r": 417.3252766927083, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 61]}], "orig": "The angle between the door and the horizontal cable C is 12\u00b0.", "text": "The angle between the door and the horizontal cable C is 12\u00b0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 720.1185709635416, "r": 403.3721516927083, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 58]}], "orig": "The horizontal distance between the hinge and D is 0.95 m.", "text": "The horizontal distance between the hinge and D is 0.95 m.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 12, "bbox": {"l": 268.06911214192706, "t": 693.3816731770834, "r": 314.15671793619794, "b": 678.527842203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 5", "text": "Figure 5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 367.4322916666667, "t": 643.7274373372396, "r": 419.8622233072917, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Plan view", "text": "Plan view", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 278.21685791015625, "t": 621.6588948567709, "r": 314.57952880859375, "b": 607.6538492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "0.95 m", "text": "0.95 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 358.1302083333333, "t": 568.6094970703125, "r": 387.304931640625, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "hinge", "text": "hinge", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 342.9086100260417, "t": 499.85748291015625, "r": 352.210693359375, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "R", "text": "R", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 115.007568359375, "t": 470.57419840494794, "r": 356.8617350260417, "b": 458.26674397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "The tension in the horizontal cable C is now 41 N.", "text": "The tension in the horizontal cable C is now 41 N.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 114.16192626953125, "t": 445.11049397786456, "r": 372.928955078125, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Calculate the moment of the tension about the hinge.", "text": "Calculate the moment of the tension about the hinge.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 305.27744547526044, "t": 266.44012451171875, "r": 357.7073974609375, "b": 255.40586344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "moment=", "text": "moment=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 484.553955078125, "t": 432.37864176432294, "r": 536.1382242838541, "b": 417.94919840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 12, "bbox": {"l": 504.0037841796875, "t": 267.71331787109375, "r": 529.3730875651041, "b": 254.98146565755212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}, {"page_no": 12, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [3, 28]}], "orig": "Nm Donotwrite outsidethe box", "text": "Nm Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 12, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 43.67570877075195, "t": 53.21282958984375, "r": 99.15630340576172, "b": 17.2843017578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 12, "bbox": {"l": 129.14149475097656, "t": 667.7611541748047, "r": 450.1310119628906, "b": 488.6637878417969, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/6"}], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"12": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 12}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p13.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p13.json new file mode 100644 index 0000000..97c7b4a --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p13.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/6"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 13, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.5", "text": "03.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.16192626953125, "t": 759.1629282633463, "r": 414.3655192057292, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 62]}], "orig": "does not supply a sufficiently large moment to close the gate.", "text": "does not supply a sufficiently large moment to close the gate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 114.58474731445312, "t": 734.1236063639323, "r": 517.1112467447916, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "Discuss two independent changes to the design to increase the moment about the hinges due to horizontal cable C.", "text": "Discuss two independent changes to the design to increase the moment about the hinges due to horizontal cable C.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 484.1311442057292, "t": 709.5086873372396, "r": 536.1382242838541, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[4 marks]", "text": "[4 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 207.6055908203125, "t": 372.11452229817706, "r": 370.8148600260417, "b": 358.53387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Turnoverfor thenextquestion", "text": "Turnoverfor thenextquestion", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 13, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 13, "bbox": {"l": 552.6282958984375, "t": 455.29600016276044, "r": 567.8498942057291, "b": 442.56414794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "13", "text": "13", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 13, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 43.817195892333984, "t": 53.1468505859375, "r": 99.11898803710938, "b": 17.54583740234375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 13, "bbox": {"l": 543.3595581054688, "t": 479.41790771484375, "r": 575.8417358398438, "b": 438.40252685546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"13": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 13}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p14.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p14.json new file mode 100644 index 0000000..1a999ec --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p14.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 14, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "14", "text": "14", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 277.7940266927083, "t": 643.3030395507812, "r": 304.85463460286456, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "12Q", "text": "12Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 276.5255533854167, "t": 582.6145426432292, "r": 306.12310791015625, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "6.2V", "text": "6.2V", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 274.4114583333333, "t": 569.0338948567708, "r": 306.54591878255206, "b": 557.575215657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "4.5W", "text": "4.5W", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.89299011230469, "t": 774.0167541503906, "r": 78.22206115722656, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "04", "text": "04", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 771.8947804768881, "r": 327.68701171875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "A student assembles the circuit in Figure 6.", "text": "A student assembles the circuit in Figure 6.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 14, "bbox": {"l": 267.64630126953125, "t": 747.7042541503906, "r": 314.57952880859375, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 6", "text": "Figure 6", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 277.7940266927083, "t": 643.3030395507812, "r": 304.85463460286456, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "12Q", "text": "12Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 276.5255533854167, "t": 582.6145426432292, "r": 306.12310791015625, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "6.2V", "text": "6.2V", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 274.4114583333333, "t": 569.0338948567708, "r": 306.54591878255206, "b": 557.575215657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "4.5W", "text": "4.5W", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 507.9209798177083, "r": 344.1770833333333, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "The battery has an internal resistance of 2.5 Q.", "text": "The battery has an internal resistance of 2.5 Q.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 50.73863728841146, "t": 479.91090901692706, "r": 87.9469706217448, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "04.", "text": "04.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.73910522460938, "t": 478.63771565755206, "r": 521.7622884114584, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "Show that the resistance of the 6.2 V, 4.5 W lamp at its working potential difference (pd) is about 9 \u03a9.", "text": "Show that the resistance of the 6.2 V, 4.5 W lamp at its working potential difference (pd) is about 9 \u03a9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 490.0506591796875, "t": 450.62762451171875, "r": 535.7154134114584, "b": 436.19822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 49.47016906738281, "t": 387.39276123046875, "r": 104.43702189127605, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.2", "text": "04.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 113.3162841796875, "t": 384.42197672526044, "r": 326.41855875651044, "b": 370.84136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "The terminal pd across the battery is 6.2 V.", "text": "The terminal pd across the battery is 6.2 V.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 114.16192626953125, "t": 358.95827229817706, "r": 271.4517008463542, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Calculate the emf of the battery.", "text": "Calculate the emf of the battery.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 484.1311442057292, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 327.2642008463542, "t": 102.62359619140625, "r": 357.7073974609375, "b": 90.31614176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "emf =", "text": "emf =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 14, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 14, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 218.50071716308594, "t": 722.6109161376953, "r": 361.83538818359375, "b": 524.9989624023438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 14, "bbox": {"l": 43.73312759399414, "t": 53.191162109375, "r": 99.1208724975586, "b": 17.85943603515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"14": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 14}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p15.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p15.json new file mode 100644 index 0000000..23d8862 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p15.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 15, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 15, "bbox": {"l": 267.64630126953125, "t": 737.0943806966146, "r": 314.15671793619794, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 478.2116292317708, "b": 750.2506306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "The student makes a variable resistor to control the brightness of the lamp. Figure 7 shows her circuit.", "text": "The student makes a variable resistor to control the brightness of the lamp. Figure 7 shows her circuit.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 15, "bbox": {"l": 267.64630126953125, "t": 737.0943806966146, "r": 314.15671793619794, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 7", "text": "Figure 7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 50.31581115722656, "t": 487.55002848307294, "r": 100.63162231445312, "b": 474.39377848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.3", "text": "04.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 113.73910522460938, "t": 485.42803955078125, "r": 525.5677083333334, "b": 460.38873291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 124]}], "orig": "Sheusesaresistancewirewithadiameterof0.19mmtomakethevariableresistor. A 5.0 m length of this wire has a resistance of 9.0 Q.", "text": "Sheusesaresistancewirewithadiameterof0.19mmtomakethevariableresistor. A 5.0 m length of this wire has a resistance of 9.0 Q.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 114.58474731445312, "t": 447.23248291015625, "r": 283.7135416666667, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "Calculatetheresistivityof thewire.", "text": "Calculatetheresistivityof thewire.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 484.553955078125, "t": 433.65183512369794, "r": 535.2926025390625, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 299.3579508463542, "t": 122.99460856119788, "r": 529.3730875651041, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 16]}], "orig": "resistivity = \u03a9m", "text": "resistivity = \u03a9m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 188.15576171875, "t": 94.56011962890625, "r": 390.2646484375, "b": 80.55507405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question4continuesonthenextpage", "text": "Question4continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 15, "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 15, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 15, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 43.66131591796875, "t": 53.1983642578125, "r": 99.0597152709961, "b": 17.4285888671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 15, "bbox": {"l": 218.16305541992188, "t": 735.5035705566406, "r": 361.9599609375, "b": 514.8138427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"15": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 15}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p16.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p16.json new file mode 100644 index 0000000..f2ca200 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p16.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 16, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "16", "text": "16", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "04].4", "text": "04].4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 771.4703877766927, "r": 528.5274658203125, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "Figure 8 shows the 5.0 m length of wire wrapped around a tube to make the variable resistor.", "text": "Figure 8 shows the 5.0 m length of wire wrapped around a tube to make the variable resistor.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 16, "bbox": {"l": 267.64630126953125, "t": 734.5480041503906, "r": 314.57952880859375, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 8", "text": "Figure 8", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 292.59279378255206, "t": 706.5379231770834, "r": 367.0094401041667, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "copper contact", "text": "copper contact", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 178.43086751302084, "t": 620.3857014973959, "r": 205.4914754231771, "b": 608.0782470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "plugs", "text": "plugs", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 553.331278483073, "r": 530.6415608723959, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 143]}], "orig": "Two plugs connect the variable resistor into the circuit. A moveable copper contact is used to vary the length of wire in series with the lamp.", "text": "Two plugs connect the variable resistor into the circuit. A moveable copper contact is used to vary the length of wire in series with the lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 113.73910522460938, "t": 527.8675537109375, "r": 510.7689208984375, "b": 501.5550537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 151]}], "orig": "When the contact is placed on the tube at one particular position, the lamp is dim. The contact is then moved slowly to the right as shown in Figure 8.", "text": "When the contact is placed on the tube at one particular position, the lamp is dim. The contact is then moved slowly to the right as shown in Figure 8.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 115.007568359375, "t": 488.39882405598956, "r": 496.3929850260417, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "text": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 484.976806640625, "t": 462.51072184244794, "r": 535.7154134114584, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 16, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 16, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 45.604835510253906, "t": 776.7489929199219, "r": 106.06902313232422, "b": 758.4946517944336, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 43.60740280151367, "t": 53.19488525390625, "r": 99.07420349121094, "b": 17.50262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 16, "bbox": {"l": 92.74071502685547, "t": 705.5439300537109, "r": 462.9246520996094, "b": 567.9103393554688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"16": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 16}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p17.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p17.json new file mode 100644 index 0000000..57c0d3b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p17.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/7"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 17, "bbox": {"l": 283.7135416666667, "t": 811.3635304768881, "r": 295.55255126953125, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "04.5", "text": "04.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 486.2452392578125, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 104]}], "orig": "The student now makes a different circuit by connecting the variable resistor in parallel with the lamp.", "text": "The student now makes a different circuit by connecting the variable resistor in parallel with the lamp.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.16192626953125, "t": 734.5480041503906, "r": 520.0710042317709, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 150]}], "orig": "The contact is returned to its original position on the tube as shown in Figure 8 and the lamp is dim. The contact is again slowly moved to the right.", "text": "The contact is returned to its original position on the tube as shown in Figure 8 and the lamp is dim. The contact is again slowly moved to the right.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 114.58474731445312, "t": 697.6256306966146, "r": 496.8157958984375, "b": 671.7375183105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 97]}], "orig": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "text": "Explain, without calculation, what happens to the brightness of the lamp as the contact is moved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 484.1311442057292, "t": 671.7375183105469, "r": 535.7154134114584, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 207.1827596028646, "t": 451.47642008463544, "r": 370.3920491536458, "b": 438.32017008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 17, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 17, "bbox": {"l": 553.0511067708334, "t": 519.8040568033855, "r": 567.4270833333334, "b": 507.49660237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 17, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 17, "bbox": {"l": 43.799156188964844, "t": 53.12493896484375, "r": 99.204345703125, "b": 17.88525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"17": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 17}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p18.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p18.json new file mode 100644 index 0000000..b2475a6 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p18.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 18, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 520.4938151041666, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "text": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 488.359375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "text": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 313.73388671875, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 282.02223714192706, "t": 683.1961873372396, "r": 317.53928629557294, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "0.25 m", "text": "0.25 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 353.4791666666667, "t": 661.1276448567709, "r": 384.3451741536458, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 407.6003824869792, "t": 640.332275390625, "r": 453.6879475911458, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "turntable", "text": "turntable", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 584.3121134440105, "r": 527.6818033854166, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "text": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.31581115722656, "t": 558.4240112304688, "r": 100.63162231445312, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 556.3020426432292, "r": 447.7684733072917, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Calculate the time taken for the turntable to complete one revolution.", "text": "Calculate the time taken for the turntable to complete one revolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.1311442057292, "t": 543.9945678710938, "r": 536.1382242838541, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 340.79449462890625, "t": 378.90484619140625, "r": 373.351806640625, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "time =", "text": "time =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "05", "text": "05", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 520.4938151041666, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 112]}], "orig": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "text": "A teacher sets up a demonstration to show the relationship between circular motion andsimpleharmonicmotion(SHM).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 488.359375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 88]}], "orig": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "text": "She places a block on a turntable at a point 0.25 m from its centre, as shown inFigure9.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 18, "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 313.73388671875, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 9", "text": "Figure 9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 282.02223714192706, "t": 683.1961873372396, "r": 317.53928629557294, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "0.25 m", "text": "0.25 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 353.4791666666667, "t": 661.1276448567709, "r": 384.3451741536458, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 407.6003824869792, "t": 640.332275390625, "r": 453.6879475911458, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "turntable", "text": "turntable", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 113.73910522460938, "t": 584.3121134440105, "r": 527.6818033854166, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 87]}], "orig": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "text": "The turntable rotates with an angular speed of 1.8 rad s-1 and the block does not slip.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 50.31581115722656, "t": 558.4240112304688, "r": 100.63162231445312, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.1", "text": "05.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 114.58474731445312, "t": 556.3020426432292, "r": 447.7684733072917, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 70]}], "orig": "Calculate the time taken for the turntable to complete one revolution.", "text": "Calculate the time taken for the turntable to complete one revolution.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 484.1311442057292, "t": 543.9945678710938, "r": 536.1382242838541, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 340.79449462890625, "t": 378.90484619140625, "r": 373.351806640625, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "time =", "text": "time =", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 18, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 18, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 39.5291862487793, "t": 788.0014839172363, "r": 539.2009887695312, "b": 75.4483642578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 18, "bbox": {"l": 43.65611267089844, "t": 53.18243408203125, "r": 99.09671783447266, "b": 17.6627197265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"18": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 18}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p19.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p19.json new file mode 100644 index 0000000..cfda00d --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p19.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/25"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 19, "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "19", "text": "19", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 384.7679850260417, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "text": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "text": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 265.109375, "t": 692.5328877766927, "r": 315.84800211588544, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 354.3247884114583, "t": 617.8393351236979, "r": 385.1907958984375, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 47.77887980143229, "t": 507.49660237630206, "r": 103.16855875651042, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 504.52581787109375, "r": 274.8342692057292, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The mass of the block is 0.12 kg.", "text": "The mass of the block is 0.12 kg.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 476.94012451171875, "r": 401.6808675130208, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Calculate the magnitude of the resultant force on the block.", "text": "Calculate the magnitude of the resultant force on the block.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.1311442057292, "t": 464.63267008463544, "r": 536.1382242838541, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 266.8006591796875, "t": 299.1185506184896, "r": 365.3181559244792, "b": 287.6598917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "magnitudeofforce=", "text": "magnitudeofforce=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 517.5340576171875, "t": 297.84539794921875, "r": 525.9905192057291, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 230.36655680338538, "r": 390.6875, "b": 216.36151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question5 continueson thenextpage", "text": "Question5 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.2", "text": "05.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 384.7679850260417, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 103]}], "orig": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "text": "Figure 10 shows a plan view of the turntable and block. The turntable rotates in a clockwise direction.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "text": "Draw an arrow on Figure 10 to show the direction of the resultant force on the block. [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 19, "bbox": {"l": 265.109375, "t": 692.5328877766927, "r": 315.84800211588544, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 10", "text": "Figure 10", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 354.3247884114583, "t": 617.8393351236979, "r": 385.1907958984375, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "block", "text": "block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 47.77887980143229, "t": 507.49660237630206, "r": 103.16855875651042, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.3", "text": "05.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 113.73910522460938, "t": 504.52581787109375, "r": 274.8342692057292, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "The mass of the block is 0.12 kg.", "text": "The mass of the block is 0.12 kg.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 114.58474731445312, "t": 476.94012451171875, "r": 401.6808675130208, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Calculate the magnitude of the resultant force on the block.", "text": "Calculate the magnitude of the resultant force on the block.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 484.1311442057292, "t": 464.63267008463544, "r": 536.1382242838541, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 266.8006591796875, "t": 299.1185506184896, "r": 365.3181559244792, "b": 287.6598917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "magnitudeofforce=", "text": "magnitudeofforce=", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 517.5340576171875, "t": 297.84539794921875, "r": 525.9905192057291, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 187.73295084635416, "t": 230.36655680338538, "r": 390.6875, "b": 216.36151123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "Question5 continueson thenextpage", "text": "Question5 continueson thenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 19, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 19, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 19, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 39.92436981201172, "t": 788.666690826416, "r": 539.1596069335938, "b": 76.3265380859375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 19, "bbox": {"l": 43.8003044128418, "t": 53.18994140625, "r": 99.22151947021484, "b": 17.74847412109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"19": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 19}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p2.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p2.json new file mode 100644 index 0000000..754f4d3 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p2.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 2, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.4384358723958, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 2, "bbox": {"l": 263.41807047526044, "t": 776.5631256103516, "r": 316.2708333333333, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Section A", "text": "Section A", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 201.68607584635416, "t": 749.8262329101562, "r": 376.734375, "b": 737.5187683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Answer all questions in this section.", "text": "Answer all questions in this section.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.47016906738281, "t": 709.9330851236979, "r": 346.7139892578125, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "01 Twostableisotopesofheliumare He andH He 2 2", "text": "01 Twostableisotopesofheliumare He andH He 2 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 2, "bbox": {"l": 49.04734802246094, "t": 673.0107116699219, "r": 524.7220458984375, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 92]}], "orig": "01.1 An atom of fHe is produced in a rock that contains uranium. It is produced following 92", "text": "01.1 An atom of fHe is produced in a rock that contains uranium. It is produced following 92", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 629.2980143229166, "r": 178.85369873046875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "thorium (Th).", "text": "thorium (Th).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 287.94175211588544, "t": 590.6780395507812, "r": 301.89487711588544, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "92", "text": "92", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.553955078125, "t": 581.3413492838542, "r": 536.1382242838541, "b": 566.9119262695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 558.4240112304688, "r": 138.26277669270834, "b": 532.1115112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "2381 92", "text": "2381 92", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 49.47016906738281, "t": 495.61354573567706, "r": 432.9696858723958, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "01.2 A 3He nucleus can be produced by the decay of a tritium nucleus", "text": "01.2 A 3He nucleus can be produced by the decay of a tritium nucleus", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 114.16192626953125, "t": 462.08632405598956, "r": 462.9900309244792, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "State and explain which exchange particle is responsible for this decay.", "text": "State and explain which exchange particle is responsible for this decay.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 484.1311442057292, "t": 449.77886962890625, "r": 536.1382242838541, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 2, "bbox": {"l": 544.171875, "t": 788.8705851236979, "r": 583.0714925130209, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 2, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 2, "bbox": {"l": 43.716583251953125, "t": 53.1287841796875, "r": 99.12460327148438, "b": 17.388427734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"2": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 2}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p20.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p20.json new file mode 100644 index 0000000..0b42eb5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p20.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 20, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.4", "text": "05.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 501.0440266927083, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 117]}], "orig": "Describe, with reference to one of Newton's laws of motion, the evidence that a resultant force is actingon theblock.", "text": "Describe, with reference to one of Newton's laws of motion, the evidence that a resultant force is actingon theblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.976806640625, "t": 746.0066731770834, "r": 535.7154134114584, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 20, "bbox": {"l": 49.04734802246094, "t": 574.1266276041667, "r": 515.8427734375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "05.5 The teacher adjusts the angular speed of the turntable so that the block completes onerotationevery2.50s.", "text": "05.5 The teacher adjusts the angular speed of the turntable so that the block completes onerotationevery2.50s.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 114.16192626953125, "t": 545.2677612304688, "r": 523.03076171875, "b": 520.2284545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 119]}], "orig": "She sets up a simple pendulum above the centre of the turntable so that it swings in phasewith themovement of theblock.", "text": "She sets up a simple pendulum above the centre of the turntable so that it swings in phasewith themovement of theblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 115.007568359375, "t": 506.22340901692706, "r": 331.49241129557294, "b": 493.91595458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 39]}], "orig": "Calculatethelengthof thesimplependulum.", "text": "Calculatethelengthof thesimplependulum.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 484.1311442057292, "t": 493.91595458984375, "r": 536.5610758463541, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 326.41855875651044, "t": 330.52382405598956, "r": 527.6818033854166, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "length = m", "text": "length = m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "20", "text": "20", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 20, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 20, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 20, "bbox": {"l": 43.74028778076172, "t": 53.14093017578125, "r": 99.16525268554688, "b": 17.38323974609375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"20": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 20}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p21.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p21.json new file mode 100644 index 0000000..c5bd53f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p21.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/7"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "21", "text": "21", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.6", "text": "05.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 397.8754475911458, "t": 672.5863138834635, "r": 432.546875, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "screen", "text": "screen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 600.4391276041666, "r": 369.54638671875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 589.8292643229166, "r": 362.3583984375, "b": 577.9461873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "of bob", "text": "of bob", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 566.487528483073, "r": 364.4725341796875, "b": 554.6044514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/2"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 555.4532470703125, "r": 364.4725341796875, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "of block", "text": "of block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "05.6", "text": "05.6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 533.1785074869791, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 195]}], "orig": "A lamp is used to project shadow images of the block and pendulum bob on a screen. Both shadows appear to move with SHM across the screen. Figure 11 shows the images on the screen at one instant.", "text": "A lamp is used to project shadow images of the block and pendulum bob on a screen. Both shadows appear to move with SHM across the screen. Figure 11 shows the images on the screen at one instant.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 21, "bbox": {"l": 265.109375, "t": 721.816151936849, "r": 316.2708333333333, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 11", "text": "Figure 11", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 397.8754475911458, "t": 672.5863138834635, "r": 432.546875, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "screen", "text": "screen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 600.4391276041666, "r": 369.54638671875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 328.9554850260417, "t": 589.8292643229166, "r": 362.3583984375, "b": 577.9461873372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "of bob", "text": "of bob", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 566.487528483073, "r": 364.4725341796875, "b": 554.6044514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "shadow", "text": "shadow", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 324.304443359375, "t": 555.4532470703125, "r": 364.4725341796875, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "of block", "text": "of block", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 115.007568359375, "t": 501.9794514973958, "r": 411.8285725911458, "b": 489.24761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Initially the shadows move in phase with the same amplitude.", "text": "Initially the shadows move in phase with the same amplitude.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 476.51572672526044, "r": 355.59326171875, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "Air resistance affects the motion of the pendulum.", "text": "Air resistance affects the motion of the pendulum.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.16192626953125, "t": 451.05202229817706, "r": 519.648193359375, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 109]}], "orig": "Suggest the effect this has on the amplitude relationship and the phase relationship betweenthemovingshadows.", "text": "Suggest the effect this has on the amplitude relationship and the phase relationship betweenthemovingshadows.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 484.553955078125, "t": 425.58831787109375, "r": 535.7154134114584, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 114.58474731445312, "t": 398.00262451171875, "r": 163.6321004231771, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "amplitude", "text": "amplitude", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 113.3162841796875, "t": 319.9139200846354, "r": 146.29639689127603, "b": 307.6064656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "phase", "text": "phase", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 21, "bbox": {"l": 552.6282958984375, "t": 273.65484619140625, "r": 567.8498942057291, "b": 261.3473917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 21, "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 21, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 45.541805267333984, "t": 776.4457015991211, "r": 105.7479248046875, "b": 758.8275680541992, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 43.686729431152344, "t": 53.1051025390625, "r": 99.13709259033203, "b": 17.62286376953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 21, "bbox": {"l": 148.14927673339844, "t": 696.1988983154297, "r": 432.6424560546875, "b": 517.8292236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"21": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 21}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p22.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p22.json new file mode 100644 index 0000000..9d0b52f --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p22.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 22, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 531.9100341796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "text": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 530.21875, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "text": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 22, "bbox": {"l": 264.68654378255206, "t": 710.3574829101562, "r": 316.2708333333333, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 12", "text": "Figure 12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 88.79261271158855, "t": 670.4643351236979, "r": 105.70548502604167, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "air", "text": "air", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.80634562174478, "t": 660.7032470703125, "r": 138.26277669270834, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 325.15008544921875, "t": 660.2788492838541, "r": 334.0293375651042, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.38351440429688, "t": 648.3957926432291, "r": 238.8944091796875, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "refractive index = 1.62", "text": "refractive index = 1.62", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 324.7272542317708, "t": 648.3957926432291, "r": 434.6609700520833, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "refractiveindex=1.35", "text": "refractiveindex=1.35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 448.1912841796875, "t": 597.4683634440104, "r": 510.7689208984375, "b": 584.7365112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "not to scale", "text": "not to scale", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.32432047526044, "t": 582.6145426432292, "r": 305.27744547526044, "b": 572.4290568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "43", "text": "43", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 380.9625651041667, "t": 565.6387329101562, "r": 388.5733642578125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "P", "text": "P", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.47016906738281, "t": 496.03794352213544, "r": 101.47727457682292, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 494.76475016276044, "r": 532.7556559244791, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "text": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 468.87664794921875, "r": 535.2926025390625, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 531.9100341796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "text": "Two transparent prisms A and B of different refractive indices are placed in contact to producearectangularblock.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 530.21875, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 113]}], "orig": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "text": "Figure 12 shows the path of a ray, incident normally on A, refracting as it crosses the boundarybetweentheprisms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 22, "bbox": {"l": 264.68654378255206, "t": 710.3574829101562, "r": 316.2708333333333, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Figure 12", "text": "Figure 12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 88.79261271158855, "t": 670.4643351236979, "r": 105.70548502604167, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "air", "text": "air", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.80634562174478, "t": 660.7032470703125, "r": 138.26277669270834, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 325.15008544921875, "t": 660.2788492838541, "r": 334.0293375651042, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 129.38351440429688, "t": 648.3957926432291, "r": 238.8944091796875, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "refractive index = 1.62", "text": "refractive index = 1.62", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 324.7272542317708, "t": 648.3957926432291, "r": 434.6609700520833, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "refractiveindex=1.35", "text": "refractiveindex=1.35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 448.1912841796875, "t": 597.4683634440104, "r": 510.7689208984375, "b": 584.7365112304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "not to scale", "text": "not to scale", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 291.32432047526044, "t": 582.6145426432292, "r": 305.27744547526044, "b": 572.4290568033855, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "43", "text": "43", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 380.9625651041667, "t": 565.6387329101562, "r": 388.5733642578125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "P", "text": "P", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 49.47016906738281, "t": 496.03794352213544, "r": 101.47727457682292, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.1", "text": "06.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 114.58474731445312, "t": 494.76475016276044, "r": 532.7556559244791, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 111]}], "orig": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "text": "Explain how the path of the ray shows that the refractive index of A is greater than the refractive index of B.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 490.4734700520833, "t": 468.87664794921875, "r": 535.2926025390625, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "22", "text": "22", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 22, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 22, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 39.35024642944336, "t": 787.4561538696289, "r": 539.5936889648438, "b": 75.9244384765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 22, "bbox": {"l": 43.74589157104492, "t": 53.1539306640625, "r": 99.09431457519531, "b": 17.24566650390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"22": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 22}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p23.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p23.json new file mode 100644 index 0000000..f1eeb0b --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p23.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 23, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "23", "text": "23", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 105.2826639811198, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.2", "text": "06.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 408.8688151041667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Show that the angle of refraction of the ray in B is about 60\u00b0.", "text": "Show that the angle of refraction of the ray in B is about 60\u00b0.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.1311442057292, "t": 759.1629282633463, "r": 535.7154134114584, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 49.89299011230469, "t": 379.75364176432294, "r": 101.054443359375, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "06.3", "text": "06.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 113.3162841796875, "t": 378.05605061848956, "r": 455.8020833333333, "b": 350.89479573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "Draw, on Figure 12, the path of the ray immediately after it reaches P. Justify your answer with calculations.", "text": "Draw, on Figure 12, the path of the ray immediately after it reaches P. Justify your answer with calculations.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 484.553955078125, "t": 352.59234619140625, "r": 535.7154134114584, "b": 339.43609619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 556.0108642578125, "t": 179.43914794921875, "r": 565.3129475911459, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 232.1292521158854, "t": 111.96026611328125, "r": 346.2911783854167, "b": 100.92600504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 13]}], "orig": "ENDOFSECTIONA", "text": "ENDOFSECTIONA", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 23, "bbox": {"l": 63.84611511230469, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 23, "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 23, "bbox": {"l": 43.82809066772461, "t": 53.14093017578125, "r": 99.1424560546875, "b": 17.41925048828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"23": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 23}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p24.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p24.json new file mode 100644 index 0000000..204f637 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p24.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/pictures/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/2"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/17"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 24, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 24, "bbox": {"l": 263.41807047526044, "t": 776.1387329101562, "r": 316.2708333333333, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Section B", "text": "Section B", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 110.77935791015625, "t": 751.0994160970052, "r": 468.0639241536458, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 72]}], "orig": "Each of Questions 07 to 31 is followed by four responses, A, B, C and D.", "text": "Each of Questions 07 to 31 is followed by four responses, A, B, C and D.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 181.81343587239584, "t": 724.3625183105469, "r": 395.3385416666667, "b": 710.7818806966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "For eachquestionselect thebest response.", "text": "For eachquestionselect thebest response.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 666.2203776041666, "r": 257.07574462890625, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "Only one answer per question is allowed.", "text": "Only one answer per question is allowed.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.12121073404948, "t": 652.6397298177084, "r": 442.694580078125, "b": 639.9078776041666, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "For each question, completely fill in the circle alongside the appropriate answer.", "text": "For each question, completely fill in the circle alongside the appropriate answer.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 54.54403177897135, "t": 626.3272298177084, "r": 123.0411885579427, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CORRECT METHOD", "text": "CORRECT METHOD", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 197.45784505208334, "t": 625.4784545898438, "r": 262.5724283854167, "b": 616.9905395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "WRONGMETHODS", "text": "WRONGMETHODS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 575.3998209635417, "r": 522.6079508463541, "b": 549.9361165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 107]}], "orig": "If you wish to return to an answer previously crossed out, ring the answer you now wish to select as shown.", "text": "If you wish to return to an answer previously crossed out, ring the answer you now wish to select as shown.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 51.161458333333336, "t": 531.262715657552, "r": 510.3461100260417, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 139]}], "orig": "You may do your working in the blank space around each question but this will not be marked. Do not use additional sheets for this working.", "text": "You may do your working in the blank space around each question but this will not be marked. Do not use additional sheets for this working.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 461.66192626953125, "r": 340.79449462890625, "b": 446.38368733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "07 Which two quantities have the base unit kg m\u00b2 s-2?", "text": "07 Which two quantities have the base unit kg m\u00b2 s-2?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 490.4734700520833, "t": 445.95928955078125, "r": 536.5610758463541, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.75236002604167, "t": 412.43206787109375, "r": 254.538818359375, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 29]}], "orig": "A kinetic energy and momentum", "text": "A kinetic energy and momentum", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 91.75236002604167, "t": 383.57322184244794, "r": 276.1027425130208, "b": 370.84136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "B kinetic energy and Young modulus", "text": "B kinetic energy and Young modulus", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 92.17519124348958, "t": 355.13873291015625, "r": 296.82102457682294, "b": 342.83127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 38]}], "orig": "C work done and the moment of a couple", "text": "C work done and the moment of a couple", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 24, "bbox": {"l": 91.75236002604167, "t": 327.55303955078125, "r": 225.36409505208334, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "Dwork done and pressure", "text": "Dwork done and pressure", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 49.89299011230469, "t": 280.0207722981771, "r": 379.6941324869792, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "08 Which gives Sl prefixes in descending order of magnitude?", "text": "08 Which gives Sl prefixes in descending order of magnitude?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 490.8962809244792, "t": 265.59136962890625, "r": 536.1382242838541, "b": 251.16192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 90.90671793619792, "t": 232.48854573567712, "r": 145.87357584635416, "b": 216.78590901692712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "AGpm", "text": "AGpm", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.3295389811198, "t": 197.68813069661462, "r": 147.56486002604166, "b": 184.95627848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "BMGn", "text": "BMGn", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.3295389811198, "t": 163.73651123046875, "r": 142.06817626953125, "b": 148.88271077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "cmn\u03bc", "text": "cmn\u03bc", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 24, "bbox": {"l": 91.3295389811198, "t": 125.96531168619788, "r": 142.06817626953125, "b": 113.23345947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "Dm\u03bcp", "text": "Dm\u03bcp", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 24, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 24, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 103.25153350830078, "t": 561.8157043457031, "r": 130.67306518554688, "b": 540.962646484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 474.3487548828125, "t": 605.8225555419922, "r": 500.7398681640625, "b": 586.4608612060547, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 24, "bbox": {"l": 43.664512634277344, "t": 53.15869140625, "r": 99.07539367675781, "b": 17.5406494140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"24": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 24}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p25.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p25.json new file mode 100644 index 0000000..2a36640 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p25.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/62"}, {"$ref": "#/texts/63"}, {"$ref": "#/texts/64"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/34"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/35"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/36"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 25, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 301.89487711588544, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "60 A car travels at 100 km h-1 on a motorway.", "text": "60 A car travels at 100 km h-1 on a motorway.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 91.3295389811198, "t": 746.4310709635416, "r": 293.015625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is an estimate of its kinetic energy?", "text": "What is an estimate of its kinetic energy?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 733.2748209635416, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 701.0207926432291, "r": 133.18891398111978, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 104 J", "text": "A 104 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 672.1619160970052, "r": 133.61173502604166, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 10\u00b0 J", "text": "B 10\u00b0 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 644.5762329101562, "r": 133.61173502604166, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "C 108 J", "text": "C 108 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 616.1417643229166, "r": 136.57149251302084, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 1010 J", "text": "D 1010 J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 563.941141764323, "r": 259.1898600260417, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10 6", "text": "10 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 543.1457926432292, "r": 536.5610758463541, "b": 528.2919514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 510.04296875, "r": 185.1960245768229, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "A 4.4 \u00d7 107 C kg-1", "text": "A 4.4 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 476.09136962890625, "r": 185.61883544921875, "b": 461.23752848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "B 5.2 \u00d7 107 C kg-1", "text": "B 5.2 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 91.75236002604167, "t": 441.71535237630206, "r": 184.773193359375, "b": 427.28590901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "C 8.3 \u00d7 107 C kg-1", "text": "C 8.3 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.06107584635417, "t": 408.18813069661456, "r": 186.04166666666666, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "D 2.1 \u00d7 10* C kg-l", "text": "D 2.1 \u00d7 10* C kg-l", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 50.31581115722656, "t": 358.53387451171875, "r": 77.79924011230469, "b": 346.65081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 359.38267008463544, "r": 461.2987467447917, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Which row describes the variation with distance of the strong nuclear force?", "text": "Which row describes the variation with distance of the strong nuclear force?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 189.00142415364584, "t": 311.8504435221354, "r": 241.43133544921875, "b": 297.84539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Attractive", "text": "Attractive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 324.304443359375, "t": 313.12359619140625, "r": 378.8484700520833, "b": 296.9966023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Repulsive", "text": "Repulsive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 276.20123291015625, "r": 134.45738728841147, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 183.0819091796875, "t": 278.74761962890625, "r": 247.3508504231771, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 302.7405192057292, "t": 277.47442626953125, "r": 398.7211100260417, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 236.30808512369788, "r": 134.45738728841147, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 236.73248291015625, "r": 262.99525960286456, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 319.23057047526044, "t": 238.00567626953125, "r": 383.49951171875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.30965169270833, "t": 195.99053955078125, "r": 134.45738728841147, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 197.26373291015625, "r": 263.41807047526044, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 320.49904378255206, "t": 196.41493733723962, "r": 381.8082275390625, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.73248291015625, "t": 154.82419840494788, "r": 133.61173502604166, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 185.1960245768229, "t": 156.09739176432288, "r": 246.0823771158854, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 303.16335042317706, "t": 156.09739176432288, "r": 398.7211100260417, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 301.89487711588544, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "60 A car travels at 100 km h-1 on a motorway.", "text": "60 A car travels at 100 km h-1 on a motorway.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 91.3295389811198, "t": 746.4310709635416, "r": 293.015625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is an estimate of its kinetic energy?", "text": "What is an estimate of its kinetic energy?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 733.2748209635416, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 701.0207926432291, "r": 133.18891398111978, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 104 J", "text": "A 104 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 672.1619160970052, "r": 133.61173502604166, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 10\u00b0 J", "text": "B 10\u00b0 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 644.5762329101562, "r": 133.61173502604166, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "C 108 J", "text": "C 108 J", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 616.1417643229166, "r": 136.57149251302084, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 1010 J", "text": "D 1010 J", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 49.89299011230469, "t": 563.941141764323, "r": 259.1898600260417, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "10 6", "text": "10 6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 543.1457926432292, "r": 536.5610758463541, "b": 528.2919514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.90671793619792, "t": 510.04296875, "r": 185.1960245768229, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "A 4.4 \u00d7 107 C kg-1", "text": "A 4.4 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 476.09136962890625, "r": 185.61883544921875, "b": 461.23752848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "B 5.2 \u00d7 107 C kg-1", "text": "B 5.2 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 91.75236002604167, "t": 441.71535237630206, "r": 184.773193359375, "b": 427.28590901692706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "C 8.3 \u00d7 107 C kg-1", "text": "C 8.3 \u00d7 107 C kg-1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 25, "bbox": {"l": 90.06107584635417, "t": 408.18813069661456, "r": 186.04166666666666, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 18]}], "orig": "D 2.1 \u00d7 10* C kg-l", "text": "D 2.1 \u00d7 10* C kg-l", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 50.31581115722656, "t": 358.53387451171875, "r": 77.79924011230469, "b": 346.65081787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "11", "text": "11", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 90.48389689127605, "t": 359.38267008463544, "r": 461.2987467447917, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Which row describes the variation with distance of the strong nuclear force?", "text": "Which row describes the variation with distance of the strong nuclear force?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 490.4734700520833, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 189.00142415364584, "t": 311.8504435221354, "r": 241.43133544921875, "b": 297.84539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "Attractive", "text": "Attractive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 324.304443359375, "t": 313.12359619140625, "r": 378.8484700520833, "b": 296.9966023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Repulsive", "text": "Repulsive", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 276.20123291015625, "r": 134.45738728841147, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 183.0819091796875, "t": 278.74761962890625, "r": 247.3508504231771, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 302.7405192057292, "t": 277.47442626953125, "r": 398.7211100260417, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 123.88683064778645, "t": 236.30808512369788, "r": 134.45738728841147, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 236.73248291015625, "r": 262.99525960286456, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 319.23057047526044, "t": 238.00567626953125, "r": 383.49951171875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "beyond 3 fm", "text": "beyond 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.30965169270833, "t": 195.99053955078125, "r": 134.45738728841147, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 167.0146687825521, "t": 197.26373291015625, "r": 263.41807047526044, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 320.49904378255206, "t": 196.41493733723962, "r": 381.8082275390625, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 124.73248291015625, "t": 154.82419840494788, "r": 133.61173502604166, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 185.1960245768229, "t": 156.09739176432288, "r": 246.0823771158854, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "up to 0.5 fm", "text": "up to 0.5 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 303.16335042317706, "t": 156.09739176432288, "r": 398.7211100260417, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 19]}], "orig": "from 0.5 fm to 3 fm", "text": "from 0.5 fm to 3 fm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 79.91335042317708, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 25, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 25, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/texts/42"}, {"$ref": "#/texts/43"}, {"$ref": "#/texts/44"}, {"$ref": "#/texts/45"}, {"$ref": "#/texts/46"}, {"$ref": "#/texts/47"}, {"$ref": "#/texts/48"}, {"$ref": "#/texts/49"}, {"$ref": "#/texts/50"}, {"$ref": "#/texts/51"}, {"$ref": "#/texts/52"}, {"$ref": "#/texts/53"}, {"$ref": "#/texts/54"}, {"$ref": "#/texts/55"}, {"$ref": "#/texts/56"}, {"$ref": "#/texts/57"}, {"$ref": "#/texts/58"}, {"$ref": "#/texts/59"}, {"$ref": "#/texts/60"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 41.39021682739258, "t": 788.1883316040039, "r": 557.9503173828125, "b": 77.1551513671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/61"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 25, "bbox": {"l": 43.768917083740234, "t": 53.206298828125, "r": 99.21061706542969, "b": 17.35614013671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"25": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 25}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p26.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p26.json new file mode 100644 index 0000000..a2a6638 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p26.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/6"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/groups/3"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 26, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 229.16949462890625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "12 Which statement is correct?", "text": "12 Which statement is correct?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 760.01171875, "r": 536.1382242838541, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 726.4844970703125, "r": 266.8006591796875, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 35]}], "orig": "A All strange particles are mesons.", "text": "A All strange particles are mesons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 697.2012329101562, "r": 325.9957275390625, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "B Strange particles are always created in pairs.", "text": "B Strange particles are always created in pairs.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 669.6155395507812, "r": 358.1302083333333, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "C Strangeness can only change in strong interactions.", "text": "C Strangeness can only change in strong interactions.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 92.17519124348958, "t": 640.7566731770834, "r": 327.68701171875, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "D Strangeness can only have a value of 0 or -1", "text": "D Strangeness can only have a value of 0 or -1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 49.89299011230469, "t": 594.0732014973959, "r": 294.7069091796875, "b": 579.2193806966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "13 Which combination of quarks is possible?", "text": "13 Which combination of quarks is possible?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.8962809244792, "t": 579.643778483073, "r": 536.5610758463541, "b": 565.214335123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 90.90671793619792, "t": 546.1165568033855, "r": 120.08144124348958, "b": 532.535909016927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "A sd", "text": "A sd", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 90.90671793619792, "t": 518.5308634440105, "r": 119.65861002604167, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "B su", "text": "B su", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 489.24761962890625, "r": 126.00094604492188, "b": 476.09136962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "C sud", "text": "C sud", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 460.38873291015625, "r": 120.08144124348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "Dud", "text": "Dud", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 90.90671793619792, "t": 412.43206787109375, "r": 317.11647542317706, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "In photoelectricity, Vs is the stopping potential.", "text": "In photoelectricity, Vs is the stopping potential.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 383.99761962890625, "r": 196.6122029622396, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 21]}], "orig": "What quantity is eVs?", "text": "What quantity is eVs?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 490.4734700520833, "t": 371.69012451171875, "r": 536.5610758463541, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 26, "bbox": {"l": 91.75236002604167, "t": 337.73854573567706, "r": 246.0823771158854, "b": 324.5822957356771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 30]}], "orig": "A energy of an incident photon", "text": "A energy of an incident photon", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 309.72845458984375, "r": 316.6936442057292, "b": 295.7234090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "B maximum kinetic energy of a photoelectron", "text": "B maximum kinetic energy of a photoelectron", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 281.7183634440104, "r": 313.73388671875, "b": 266.8645222981771, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "C threshold frequency \u00d7 the Planck constant", "text": "C threshold frequency \u00d7 the Planck constant", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 26, "bbox": {"l": 91.3295389811198, "t": 252.85947672526038, "r": 172.5113525390625, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "D work function", "text": "D work function", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 26, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 26, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 26, "bbox": {"l": 43.72139358520508, "t": 53.19293212890625, "r": 99.13709259033203, "b": 17.373779296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"26": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 26}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p27.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p27.json new file mode 100644 index 0000000..099ec44 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p27.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/65"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/67"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/groups/1"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/42"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/61"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/8", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/62"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/9", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/63"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/10", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/64"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 27, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "27", "text": "27", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 90.06107584635417, "t": 773.16796875, "r": 258.76702880859375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "A fluorescent tube contains a gas.", "text": "A fluorescent tube contains a gas.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 746.4310709635416, "r": 205.4914754231771, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "The coating of the tube", "text": "The coating of the tube", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 734.1236063639323, "r": 536.1382242838541, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 700.5963948567709, "r": 423.6676025390625, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "A becomes ionised by the gas and emits photons of ultraviolet light.", "text": "A becomes ionised by the gas and emits photons of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 671.3131306966146, "r": 447.7684733072917, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "text": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 644.5762329101562, "r": 466.3726399739583, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "text": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 615.29296875, "r": 457.070556640625, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "D absorbs several photons of visible light from the gas and then emits one", "text": "D absorbs several photons of visible light from the gas and then emits one", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 106.12831624348958, "t": 600.863525390625, "r": 229.59232584635416, "b": 588.1316731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "photon of ultraviolet light.", "text": "photon of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 560.9703776041667, "r": 534.8697916666666, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "text": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.4734700520833, "t": 533.3847045898438, "r": 536.5610758463541, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 148.41051228841147, "t": 494.34035237630206, "r": 282.02223714192706, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Wave nature of electrons", "text": "Wave nature of electrons", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 290.90150960286456, "t": 494.34035237630206, "r": 427.0501708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Particulate nature of light", "text": "Particulate nature of light", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 452.74961344401044, "r": 134.45738728841147, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 454.44720458984375, "r": 260.4583333333333, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 312.46543375651044, "t": 453.17401123046875, "r": 407.6003824869792, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 412.43206787109375, "r": 134.45738728841147, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 414.12965901692706, "r": 260.4583333333333, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 415.82725016276044, "r": 408.8688151041667, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.30965169270833, "t": 372.53892008463544, "r": 134.45738728841147, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 373.38771565755206, "r": 262.5724283854167, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 374.66090901692706, "r": 408.8688151041667, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.73248291015625, "t": 331.37261962890625, "r": 133.61173502604166, "b": 320.7627156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 333.07017008463544, "r": 262.5724283854167, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 314.15671793619794, "t": 333.49456787109375, "r": 405.0634358723958, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 280.4451700846354, "r": 79.91335042317708, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 279.1719767252604, "r": 361.9355875651042, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Which particle has the smallest de Broglie wavelength?", "text": "Which particle has the smallest de Broglie wavelength?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 265.1669718424479, "r": 536.5610758463541, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 231.21535237630212, "r": 278.21685791015625, "b": 218.90789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "A an electron moving at 4 \u00d7 103 m s-1", "text": "A an electron moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.48389689127605, "t": 203.62965901692712, "r": 265.109375, "b": 189.62461344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "B a proton moving at 4 \u00d7 103 m s-1", "text": "B a proton moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 175.19517008463538, "r": 277.7940266927083, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "C an electron moving at 8 \u00d7 10' m s-1", "text": "C an electron moving at 8 \u00d7 10' m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 146.76072184244788, "r": 264.68654378255206, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "D a proton moving at 8 \u00d7 102 m s-1", "text": "D a proton moving at 8 \u00d7 102 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "15", "text": "15", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 90.06107584635417, "t": 773.16796875, "r": 258.76702880859375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "A fluorescent tube contains a gas.", "text": "A fluorescent tube contains a gas.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 746.4310709635416, "r": 205.4914754231771, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "The coating of the tube", "text": "The coating of the tube", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 734.1236063639323, "r": 536.1382242838541, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 700.5963948567709, "r": 423.6676025390625, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 68]}], "orig": "A becomes ionised by the gas and emits photons of ultraviolet light.", "text": "A becomes ionised by the gas and emits photons of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 92.17519124348958, "t": 671.3131306966146, "r": 447.7684733072917, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "text": "B absorbs photons of ultraviolet light from the gas and emits visible light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 644.5762329101562, "r": 466.3726399739583, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "text": "C absorbs photons of ultraviolet light from the gas and emits photoelectrons.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 615.29296875, "r": 457.070556640625, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "D absorbs several photons of visible light from the gas and then emits one", "text": "D absorbs several photons of visible light from the gas and then emits one", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 106.12831624348958, "t": 600.863525390625, "r": 229.59232584635416, "b": 588.1316731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "photon of ultraviolet light.", "text": "photon of ultraviolet light.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/42", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 50.31581115722656, "t": 560.9703776041667, "r": 534.8697916666666, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 110]}], "orig": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "text": "16 Which row gives evidence for the wave nature of electrons and evidence for the particulate nature of light?", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/43", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.4734700520833, "t": 533.3847045898438, "r": 536.5610758463541, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/44", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 148.41051228841147, "t": 494.34035237630206, "r": 282.02223714192706, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Wave nature of electrons", "text": "Wave nature of electrons", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/45", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 290.90150960286456, "t": 494.34035237630206, "r": 427.0501708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "Particulate nature of light", "text": "Particulate nature of light", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/46", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 452.74961344401044, "r": 134.45738728841147, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/47", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 454.44720458984375, "r": 260.4583333333333, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/48", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 312.46543375651044, "t": 453.17401123046875, "r": 407.6003824869792, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/49", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 123.88683064778645, "t": 412.43206787109375, "r": 134.45738728841147, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/50", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.55160522460938, "t": 414.12965901692706, "r": 260.4583333333333, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/51", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 415.82725016276044, "r": 408.8688151041667, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/52", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.30965169270833, "t": 372.53892008463544, "r": 134.45738728841147, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/53", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 373.38771565755206, "r": 262.5724283854167, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/54", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 310.77414957682294, "t": 374.66090901692706, "r": 408.8688151041667, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 23]}], "orig": "single-slit diffraction", "text": "single-slit diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/55", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 124.73248291015625, "t": 331.37261962890625, "r": 133.61173502604166, "b": 320.7627156575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "D", "text": "D", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/56", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 169.1287841796875, "t": 333.07017008463544, "r": 262.5724283854167, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "photoelectric effect", "text": "photoelectric effect", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/57", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 314.15671793619794, "t": 333.49456787109375, "r": 405.0634358723958, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "electron diffraction", "text": "electron diffraction", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/58", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 49.47016906738281, "t": 280.4451700846354, "r": 79.91335042317708, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "17", "text": "17", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/59", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 279.1719767252604, "r": 361.9355875651042, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Which particle has the smallest de Broglie wavelength?", "text": "Which particle has the smallest de Broglie wavelength?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/60", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 490.8962809244792, "t": 265.1669718424479, "r": 536.5610758463541, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/61", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 91.3295389811198, "t": 231.21535237630212, "r": 278.21685791015625, "b": 218.90789794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "A an electron moving at 4 \u00d7 103 m s-1", "text": "A an electron moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/62", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.48389689127605, "t": 203.62965901692712, "r": 265.109375, "b": 189.62461344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "B a proton moving at 4 \u00d7 103 m s-1", "text": "B a proton moving at 4 \u00d7 103 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/63", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 175.19517008463538, "r": 277.7940266927083, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "C an electron moving at 8 \u00d7 10' m s-1", "text": "C an electron moving at 8 \u00d7 10' m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/64", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 27, "bbox": {"l": 90.90671793619792, "t": 146.76072184244788, "r": 264.68654378255206, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 34]}], "orig": "D a proton moving at 8 \u00d7 102 m s-1", "text": "D a proton moving at 8 \u00d7 102 m s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/65", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 473.5605875651042, "t": 70.79400634765625, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 27, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/66", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 27, "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "2", "text": "2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/67", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 27, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}, {"$ref": "#/texts/39"}, {"$ref": "#/texts/40"}, {"$ref": "#/texts/41"}, {"$ref": "#/groups/6"}, {"$ref": "#/texts/43"}, {"$ref": "#/texts/44"}, {"$ref": "#/texts/45"}, {"$ref": "#/texts/46"}, {"$ref": "#/texts/47"}, {"$ref": "#/texts/48"}, {"$ref": "#/texts/49"}, {"$ref": "#/texts/50"}, {"$ref": "#/texts/51"}, {"$ref": "#/texts/52"}, {"$ref": "#/texts/53"}, {"$ref": "#/texts/54"}, {"$ref": "#/texts/55"}, {"$ref": "#/texts/56"}, {"$ref": "#/texts/57"}, {"$ref": "#/texts/58"}, {"$ref": "#/texts/59"}, {"$ref": "#/texts/60"}, {"$ref": "#/groups/7"}, {"$ref": "#/groups/8"}, {"$ref": "#/groups/9"}, {"$ref": "#/groups/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 40.20746612548828, "t": 788.4639091491699, "r": 539.2969360351562, "b": 76.21099853515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/66"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 27, "bbox": {"l": 43.7583122253418, "t": 53.1724853515625, "r": 99.12340545654297, "b": 17.5716552734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"27": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 27}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p28.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p28.json new file mode 100644 index 0000000..bc36f74 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p28.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}, {"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/2"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 28, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "18", "text": "18", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 773.5923614501953, "r": 419.4393717447917, "b": 744.309092203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 94]}], "orig": "A longitudinal wave of frequency 660 Hz travels through a medium. The wave speed is 330 m s-1.", "text": "A longitudinal wave of frequency 660 Hz travels through a medium. The wave speed is 330 m s-1.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 732.0016377766927, "r": 404.2177734375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Which statement describes the motion of a particle in the wave?", "text": "Which statement describes the motion of a particle in the wave?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.4734700520833, "t": 718.8453877766927, "r": 536.5610758463541, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 685.7425638834635, "r": 289.63303629557294, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "A It is travelling at a speed of 330 m s-1.", "text": "A It is travelling at a speed of 330 m s-1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 657.3080851236979, "r": 387.7277425130208, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "B It moves in phase with a particle in the wave 25 cm away.", "text": "B It moves in phase with a particle in the wave 25 cm away.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 628.8736165364584, "r": 300.20359293619794, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "C It oscillates with a time period of 1.5 ms.", "text": "C It oscillates with a time period of 1.5 ms.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 600.0147298177084, "r": 324.304443359375, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 46]}], "orig": "D It changes direction 660 times every second.", "text": "D It changes direction 660 times every second.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 61.309183756510414, "t": 552.058085123698, "r": 433.3924967447917, "b": 537.2042643229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 74]}], "orig": "9 The frequency of the first harmonic of a standing wave on a string is f.", "text": "9 The frequency of the first harmonic of a standing wave on a string is f.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 92.59801228841145, "t": 536.35546875, "r": 234.66617838541666, "b": 524.0480143229167, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "The tension in the string is T.", "text": "The tension in the string is T.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 523.6236165364583, "r": 481.17138671875, "b": 509.6185709635417, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 81]}], "orig": "The tension is increased to 4T without changing the length or mass of the string.", "text": "The tension is increased to 4T without changing the length or mass of the string.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 496.46230061848956, "r": 356.4389241536458, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "Which harmonic has a frequency 2f after this change?", "text": "Which harmonic has a frequency 2f after this change?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.8962809244792, "t": 483.30605061848956, "r": 536.1382242838541, "b": 468.87664794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 449.77886962890625, "r": 126.84658813476562, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A first", "text": "A first", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 421.34438069661456, "r": 143.33663940429688, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "B second", "text": "B second", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 392.48549397786456, "r": 129.38351440429688, "b": 380.60243733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "C third", "text": "C third", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 364.89980061848956, "r": 135.7258504231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D fourth", "text": "D fourth", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 48.62452697753906, "t": 317.3675740559896, "r": 333.18369547526044, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "20 The distance from the slits to the screen is 1.5 m. The width of ten fringes is 3.5 cm.", "text": "20 The distance from the slits to the screen is 1.5 m. The width of ten fringes is 3.5 cm.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 316.94317626953125, "r": 466.3726399739583, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Light of wavelength 5.2 \u00d7 10-7 m is used in a Young's double-slit experiment.", "text": "Light of wavelength 5.2 \u00d7 10-7 m is used in a Young's double-slit experiment.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 92.17519124348958, "t": 263.4693806966146, "r": 281.59942626953125, "b": 251.16192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 40]}], "orig": "What is the separation of the two slits?", "text": "What is the separation of the two slits?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 490.4734700520833, "t": 251.58632405598962, "r": 536.1382242838541, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 219.33229573567712, "r": 168.70596313476562, "b": 204.05405680338538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "A 2.2 \u00d7 10-5 m", "text": "A 2.2 \u00d7 10-5 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.75236002604167, "t": 189.20021565755212, "r": 168.28314208984375, "b": 176.46836344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "B 9.9 \u00d7 10-5 m", "text": "B 9.9 \u00d7 10-5 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_unselected", "prov": [{"page_no": 28, "bbox": {"l": 91.3295389811198, "t": 161.61452229817712, "r": 168.70596313476562, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "C 1.1 \u00d7 10-4 m", "text": "C 1.1 \u00d7 10-4 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 90.90671793619792, "t": 134.02886962890625, "r": 168.70596313476562, "b": 118.75063069661462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "D 2.2 \u00d7 10-4 m", "text": "D 2.2 \u00d7 10-4 m", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "28", "text": "28", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 28, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 28, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/26"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 28, "bbox": {"l": 43.66642379760742, "t": 53.19677734375, "r": 99.13784790039062, "b": 17.37799072265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"28": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 28}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p29.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p29.json new file mode 100644 index 0000000..f54d058 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p29.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/33"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/34"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/groups/7"}, {"$ref": "#/groups/8"}, {"$ref": "#/groups/9"}, {"$ref": "#/groups/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/8", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/9", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/10", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/11", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/12", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/13", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/14", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/15", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/16", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/17", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/18", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/19", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/20", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 29, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "29", "text": "29", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 478.2116292317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 158]}], "orig": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "text": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 732.0016377766927, "r": 330.2239583333333, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "How many maxima are produced by the grating?", "text": "How many maxima are produced by the grating?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 490.4734700520833, "t": 719.6941731770834, "r": 536.5610758463541, "b": 704.840342203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 685.3181660970052, "r": 115.007568359375, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "A4", "text": "A4", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 657.3080851236979, "r": 114.58474731445312, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "B5", "text": "B5", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 630.1467895507812, "r": 115.007568359375, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "c8", "text": "c8", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 92.59801228841145, "t": 600.0147298177084, "r": 114.58474731445312, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "D 9", "text": "D 9", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 554.1800537109375, "r": 466.3726399739583, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "text": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 235.5118408203125, "t": 524.8967895507812, "r": 246.0823771158854, "b": 513.4381306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 236.7802937825521, "t": 512.589335123698, "r": 244.3910929361979, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u4e2a", "text": "\u4e2a", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 241.85416666666666, "t": 440.86655680338544, "r": 262.5724283854167, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "60\u00b0", "text": "60\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 397.57822672526044, "r": 536.5610758463541, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "text": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 350.89479573567706, "r": 144.60511271158853, "b": 338.16294352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 270 km", "text": "A 270 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 323.3091023763021, "r": 144.18229166666666, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "B 470 km", "text": "B 470 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.75236002604167, "t": 294.02581787109375, "r": 144.18229166666666, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "C 510 km", "text": "C 510 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 266.44012451171875, "r": 144.18229166666666, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 540 km", "text": "D 540 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/11"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 478.2116292317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 158]}], "orig": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "text": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plane transmission diffraction grating that has a slit separation of 2.5 \u00d7 10-6 m.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 732.0016377766927, "r": 330.2239583333333, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "How many maxima are produced by the grating?", "text": "How many maxima are produced by the grating?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 490.4734700520833, "t": 719.6941731770834, "r": 536.5610758463541, "b": 704.840342203776, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/12"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 685.3181660970052, "r": 115.007568359375, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "A4", "text": "A4", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/13"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 657.3080851236979, "r": 114.58474731445312, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "B5", "text": "B5", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/14"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 630.1467895507812, "r": 115.007568359375, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "c8", "text": "c8", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/15"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 92.59801228841145, "t": 600.0147298177084, "r": 114.58474731445312, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "D 9", "text": "D 9", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/16"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 48.201700846354164, "t": 554.1800537109375, "r": 466.3726399739583, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "text": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of north.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 235.5118408203125, "t": 524.8967895507812, "r": 246.0823771158854, "b": 513.4381306966145, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "N", "text": "N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 236.7802937825521, "t": 512.589335123698, "r": 244.3910929361979, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "\u4e2a", "text": "\u4e2a", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 241.85416666666666, "t": 440.86655680338544, "r": 262.5724283854167, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "60\u00b0", "text": "60\u00b0", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 397.57822672526044, "r": 536.5610758463541, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 82]}], "orig": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "text": "How far north from its starting position is the aeroplane after one hour? [1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/17"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 350.89479573567706, "r": 144.60511271158853, "b": 338.16294352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 270 km", "text": "A 270 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/18"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 90.90671793619792, "t": 323.3091023763021, "r": 144.18229166666666, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "B 470 km", "text": "B 470 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/19"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.75236002604167, "t": 294.02581787109375, "r": 144.18229166666666, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "C 510 km", "text": "C 510 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/20"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 29, "bbox": {"l": 91.3295389811198, "t": 266.44012451171875, "r": 144.18229166666666, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "D 540 km", "text": "D 540 km", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 29, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 29, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 29, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/11"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/groups/12"}, {"$ref": "#/groups/13"}, {"$ref": "#/groups/14"}, {"$ref": "#/groups/15"}, {"$ref": "#/groups/16"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/groups/17"}, {"$ref": "#/groups/18"}, {"$ref": "#/groups/19"}, {"$ref": "#/groups/20"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 40.1088752746582, "t": 787.748893737793, "r": 540.0300903320312, "b": 75.31951904296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 29, "bbox": {"l": 43.7064323425293, "t": 53.25390625, "r": 99.08885192871094, "b": 17.55670166015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"29": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 29}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p3.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p3.json new file mode 100644 index 0000000..66f6f56 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p3.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/39"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/41"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/texts/31"}, {"$ref": "#/texts/32"}, {"$ref": "#/texts/33"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}, {"$ref": "#/texts/38"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 3, "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.015625, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 144.18229166666666, "t": 664.5228068033854, "r": 154.75283813476562, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 204.2230021158854, "t": 664.9472045898438, "r": 214.7935587565104, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 261.30397542317706, "t": 665.7959798177084, "r": 287.0961100260417, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "CD", "text": "CD", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 381.3854166666667, "t": 664.9472045898438, "r": 391.9559733072917, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "E", "text": "E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.1377766927083, "t": 664.0984090169271, "r": 481.5941975911458, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "F", "text": "F", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 91.75236002604167, "t": 640.7566731770834, "r": 127.69223022460938, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "helium", "text": "helium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 594.4975992838541, "r": 131.49762980143228, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 550.784891764323, "r": 141.64535522460938, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "hydrogen", "text": "hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 147.56486002604166, "t": 515.1357014973958, "r": 168.70596313476562, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 207.6055908203125, "t": 515.1357014973958, "r": 228.7466837565104, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "450", "text": "450", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 268.91477457682294, "t": 515.1357014973958, "r": 289.63303629557294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "500", "text": "500", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 328.53265380859375, "t": 515.1357014973958, "r": 349.6737467447917, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "550", "text": "550", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 388.9962158203125, "t": 515.1357014973958, "r": 410.5601399739583, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 449.0369059244792, "t": 515.1357014973958, "r": 470.600830078125, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "650", "text": "650", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 406.3319091796875, "t": 498.15989176432294, "r": 487.9365234375, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "wavelength / nm", "text": "wavelength / nm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 529.3730875651041, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 83]}], "orig": "Helium was discovered by analysing the light in the absorption spectrum of the Sun.", "text": "Helium was discovered by analysing the light in the absorption spectrum of the Sun.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 746.4310709635416, "r": 519.2253824869791, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 186]}], "orig": "Figure 1 shows the positions of the brightest lines, labelled A to F, in the emission spectrum of helium. The brightest lines in the emission spectra of sodium and hydrogen arealsoshown.", "text": "Figure 1 shows the positions of the brightest lines, labelled A to F, in the emission spectrum of helium. The brightest lines in the emission spectra of sodium and hydrogen arealsoshown.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 267.64630126953125, "t": 692.5328877766927, "r": 314.15671793619794, "b": 676.4058736165365, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 1", "text": "Figure 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 144.18229166666666, "t": 664.5228068033854, "r": 154.75283813476562, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "A", "text": "A", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 204.2230021158854, "t": 664.9472045898438, "r": 214.7935587565104, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 261.30397542317706, "t": 665.7959798177084, "r": 287.0961100260417, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "CD", "text": "CD", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 381.3854166666667, "t": 664.9472045898438, "r": 391.9559733072917, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "E", "text": "E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.1377766927083, "t": 664.0984090169271, "r": 481.5941975911458, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "F", "text": "F", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 91.75236002604167, "t": 640.7566731770834, "r": 127.69223022460938, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "helium", "text": "helium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 594.4975992838541, "r": 131.49762980143228, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "sodium", "text": "sodium", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 92.17519124348958, "t": 550.784891764323, "r": 141.64535522460938, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "hydrogen", "text": "hydrogen", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 147.56486002604166, "t": 515.1357014973958, "r": 168.70596313476562, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "400", "text": "400", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 207.6055908203125, "t": 515.1357014973958, "r": 228.7466837565104, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "450", "text": "450", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 268.91477457682294, "t": 515.1357014973958, "r": 289.63303629557294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "500", "text": "500", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 328.53265380859375, "t": 515.1357014973958, "r": 349.6737467447917, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "550", "text": "550", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 388.9962158203125, "t": 515.1357014973958, "r": 410.5601399739583, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "600", "text": "600", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 449.0369059244792, "t": 515.1357014973958, "r": 470.600830078125, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "650", "text": "650", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 406.3319091796875, "t": 498.15989176432294, "r": 487.9365234375, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 15]}], "orig": "wavelength / nm", "text": "wavelength / nm", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 48.201700846354164, "t": 471.42299397786456, "r": 102.32291666666667, "b": 455.29600016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.3", "text": "01.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 113.73910522460938, "t": 469.30104573567706, "r": 519.648193359375, "b": 428.55910237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 185]}], "orig": "Before helium was identified, some scientists suggested that the lines of the helium spectrum seen in the absorption spectrum of the Sun were due to the presence of sodium and hydrogen.", "text": "Before helium was identified, some scientists suggested that the lines of the helium spectrum seen in the absorption spectrum of the Sun were due to the presence of sodium and hydrogen.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 114.58474731445312, "t": 414.97845458984375, "r": 520.4938151041666, "b": 389.51475016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 101]}], "orig": "Discuss, with reference to the lines A to F in Figure 1, the evidence for and against thissuggestion.", "text": "Discuss, with reference to the lines A to F in Figure 1, the evidence for and against thissuggestion.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 484.553955078125, "t": 389.51475016276044, "r": 535.7154134114584, "b": 375.08530680338544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/38", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 3, "bbox": {"l": 187.73295084635416, "t": 117.90183512369788, "r": 390.6875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question1continuesonthenextpage", "text": "Question1continuesonthenextpage", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/39", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 3, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/40", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 3, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/41", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 3, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 90.66405487060547, "t": 665.022216796875, "r": 488.1374206542969, "b": 485.4034423828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/40"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 3, "bbox": {"l": 43.73481750488281, "t": 53.125244140625, "r": 99.09122467041016, "b": 17.48345947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"3": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 3}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p30.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p30.json new file mode 100644 index 0000000..6fe9246 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p30.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/34"}, {"$ref": "#/texts/35"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/groups/7"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/groups/8"}, {"$ref": "#/groups/9"}, {"$ref": "#/groups/10"}, {"$ref": "#/groups/11"}, {"$ref": "#/groups/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/8", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/9", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/10", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/11", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/12", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/13", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/14", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/20"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/15", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/16", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/17", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/18", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/19", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/20", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/28"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/21", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/29"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/22", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/23", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/24", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 30, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 475.6747233072917, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "text": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 732.8504231770834, "r": 320.07623291015625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "What is the total distance travelled by the ball?", "text": "What is the total distance travelled by the ball?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.8962809244792, "t": 720.1185709635416, "r": 536.5610758463541, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 687.0157470703125, "r": 135.7258504231771, "b": 673.4350992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 5.9 m", "text": "A 5.9 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 658.5812784830729, "r": 135.7258504231771, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 7.1 m", "text": "B 7.1 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 630.5711873372396, "r": 132.7660929361979, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "c 14 m", "text": "c 14 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 601.7123209635416, "r": 132.34327189127603, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "D 28 m", "text": "D 28 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 49.47016906738281, "t": 554.1800537109375, "r": 79.4905293782552, "b": 540.175028483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 552.9068806966145, "r": 504.8494059244792, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 176]}], "orig": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "text": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 439.16896565755206, "r": 268.06911214192706, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "What is the tension in the tow rope?", "text": "What is the tension in the tow rope?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.4734700520833, "t": 426.01271565755206, "r": 536.5610758463541, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 392.06109619140625, "r": 143.75947062174478, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 3000 N", "text": "A 3000 N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 363.20225016276044, "r": 143.33663940429688, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 4100N", "text": "B 4100N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.86647542317708, "t": 333.49456787109375, "r": 101.47727457682292, "b": 325.0066935221354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/11"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 104.85984293619792, "t": 334.76776123046875, "r": 143.33663940429688, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "7800N", "text": "7800N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/12"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.02083333333333, "t": 306.3332722981771, "r": 143.75947062174478, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "D 8900N", "text": "D 8900N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/13"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 475.6747233072917, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 132]}], "orig": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "text": "23 A ball is thrown vertically upwards and returns to its original position 2.4 s later. The effect of air resistance is negligible.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 732.8504231770834, "r": 320.07623291015625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "What is the total distance travelled by the ball?", "text": "What is the total distance travelled by the ball?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.8962809244792, "t": 720.1185709635416, "r": 536.5610758463541, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/14"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 687.0157470703125, "r": 135.7258504231771, "b": 673.4350992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "A 5.9 m", "text": "A 5.9 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/15"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 658.5812784830729, "r": 135.7258504231771, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 7.1 m", "text": "B 7.1 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/16"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 630.5711873372396, "r": 132.7660929361979, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "c 14 m", "text": "c 14 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/17"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 601.7123209635416, "r": 132.34327189127603, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "D 28 m", "text": "D 28 m", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/18"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 49.47016906738281, "t": 554.1800537109375, "r": 79.4905293782552, "b": 540.175028483073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "24", "text": "24", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/groups/19"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 90.90671793619792, "t": 552.9068806966145, "r": 504.8494059244792, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 176]}], "orig": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "text": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal road. Thetotalresistiveforceonthecaris11o0N. The acceleration of the car and truck is 2.3 m s-2.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 439.16896565755206, "r": 268.06911214192706, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 36]}], "orig": "What is the tension in the tow rope?", "text": "What is the tension in the tow rope?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 490.4734700520833, "t": 426.01271565755206, "r": 536.5610758463541, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/groups/20"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.3295389811198, "t": 392.06109619140625, "r": 143.75947062174478, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "A 3000 N", "text": "A 3000 N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/groups/21"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 91.75236002604167, "t": 363.20225016276044, "r": 143.33663940429688, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "B 4100N", "text": "B 4100N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/groups/22"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.86647542317708, "t": 333.49456787109375, "r": 101.47727457682292, "b": 325.0066935221354, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "C", "text": "C", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/23"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 104.85984293619792, "t": 334.76776123046875, "r": 143.33663940429688, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "7800N", "text": "7800N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/24"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 30, "bbox": {"l": 93.02083333333333, "t": 306.3332722981771, "r": 143.75947062174478, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "D 8900N", "text": "D 8900N", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 30, "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 30, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/13"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/groups/14"}, {"$ref": "#/groups/15"}, {"$ref": "#/groups/16"}, {"$ref": "#/groups/17"}, {"$ref": "#/groups/18"}, {"$ref": "#/groups/19"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/groups/20"}, {"$ref": "#/groups/21"}, {"$ref": "#/groups/22"}, {"$ref": "#/groups/23"}, {"$ref": "#/groups/24"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 39.75428009033203, "t": 788.3456954956055, "r": 539.5263061523438, "b": 75.88092041015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/33"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 30, "bbox": {"l": 43.5898551940918, "t": 53.221923828125, "r": 99.1150131225586, "b": 17.39642333984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"30": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 30}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p31.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p31.json new file mode 100644 index 0000000..adab9c5 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p31.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/35"}, {"$ref": "#/texts/36"}, {"$ref": "#/texts/37"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/groups/5"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/groups/6"}, {"$ref": "#/groups/7"}, {"$ref": "#/groups/8"}, {"$ref": "#/groups/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/8", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/9", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/17"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/10", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/11", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/12", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/13", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/14", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/24"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/15", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/31"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/16", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/17", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/33"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/18", "parent": {"$ref": "#/pictures/0"}, "children": [{"$ref": "#/texts/34"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 31, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "31", "text": "31", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "text": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 578.370585123698, "r": 519.2253824869791, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "text": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.8962809244792, "t": 551.2092895507812, "r": 535.7154134114584, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 518.106465657552, "r": 324.304443359375, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "A the drag force on the parachutist from the air", "text": "A the drag force on the parachutist from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 489.67197672526044, "r": 308.6600341796875, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "B the tension in the strings of the parachute", "text": "B the tension in the strings of the parachute", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 93.02083333333333, "t": 460.81313069661456, "r": 362.3583984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Cthe gravitational force of theparachutist on the Earth", "text": "Cthe gravitational force of theparachutist on the Earth", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 433.22743733723956, "r": 308.23720296223956, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Dthe lift force on the parachute from the air", "text": "Dthe lift force on the parachute from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 48.201700846354164, "t": 386.54396565755206, "r": 79.91335042317708, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 90.48389689127605, "t": 386.11956787109375, "r": 252.00189208984375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "A tennis ball has a mass of 58 g.", "text": "A tennis ball has a mass of 58 g.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 371.26572672526044, "r": 523.8764241536459, "b": 345.37762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 142]}], "orig": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "text": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 345.37762451171875, "r": 286.67327880859375, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "The effect of air resistance is negligible.", "text": "The effect of air resistance is negligible.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 320.33831787109375, "r": 482.8626708984375, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "What is the change in momentum of the ball during its collision with the ground?", "text": "What is the change in momentum of the ball during its collision with the ground?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.4734700520833, "t": 306.3332722981771, "r": 536.1382242838541, "b": 291.90386962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 273.2304484049479, "r": 154.33001708984375, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "A 0.040 N s", "text": "A 0.040 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 244.79600016276038, "r": 154.33001708984375, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "B 0.075 N s", "text": "B 0.075 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 216.36151123046875, "r": 154.33001708984375, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "C 0.215N s", "text": "C 0.215N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 186.65386962890625, "r": 153.90719604492188, "b": 175.19517008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "D0.614N s", "text": "D0.614N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 84]}], "orig": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "text": "25 A parachutist descends to the ground at a constant speed with the parachute open.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 578.370585123698, "r": 519.2253824869791, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 106]}], "orig": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "text": "Which force, together with the parachutist's weight, makes a pair according to Newton's third lawofmotion?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.8962809244792, "t": 551.2092895507812, "r": 535.7154134114584, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/11"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 518.106465657552, "r": 324.304443359375, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "A the drag force on the parachutist from the air", "text": "A the drag force on the parachutist from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/12"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 489.67197672526044, "r": 308.6600341796875, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "B the tension in the strings of the parachute", "text": "B the tension in the strings of the parachute", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/groups/13"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 93.02083333333333, "t": 460.81313069661456, "r": 362.3583984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 55]}], "orig": "Cthe gravitational force of theparachutist on the Earth", "text": "Cthe gravitational force of theparachutist on the Earth", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/groups/14"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.75236002604167, "t": 433.22743733723956, "r": 308.23720296223956, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 45]}], "orig": "Dthe lift force on the parachute from the air", "text": "Dthe lift force on the parachute from the air", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 48.201700846354164, "t": 386.54396565755206, "r": 79.91335042317708, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "26", "text": "26", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 90.48389689127605, "t": 386.11956787109375, "r": 252.00189208984375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 33]}], "orig": "A tennis ball has a mass of 58 g.", "text": "A tennis ball has a mass of 58 g.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 371.26572672526044, "r": 523.8764241536459, "b": 345.37762451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 142]}], "orig": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "text": "The ball is dropped from rest from a height of 1.8 m above the ground and falls vertically. The ball rebounds vertically to a height of 1.1 m.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 345.37762451171875, "r": 286.67327880859375, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "The effect of air resistance is negligible.", "text": "The effect of air resistance is negligible.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 320.33831787109375, "r": 482.8626708984375, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 80]}], "orig": "What is the change in momentum of the ball during its collision with the ground?", "text": "What is the change in momentum of the ball during its collision with the ground?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 490.4734700520833, "t": 306.3332722981771, "r": 536.1382242838541, "b": 291.90386962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/groups/15"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 273.2304484049479, "r": 154.33001708984375, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "A 0.040 N s", "text": "A 0.040 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/groups/16"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 244.79600016276038, "r": 154.33001708984375, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "B 0.075 N s", "text": "B 0.075 N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/33", "parent": {"$ref": "#/groups/17"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 91.3295389811198, "t": 216.36151123046875, "r": 154.33001708984375, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "C 0.215N s", "text": "C 0.215N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/34", "parent": {"$ref": "#/groups/18"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 31, "bbox": {"l": 92.17519124348958, "t": 186.65386962890625, "r": 153.90719604492188, "b": 175.19517008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "D0.614N s", "text": "D0.614N s", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/35", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 31, "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/36", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "Turn over", "text": "Turn over", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/37", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 31, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/10"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/groups/11"}, {"$ref": "#/groups/12"}, {"$ref": "#/groups/13"}, {"$ref": "#/groups/14"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}, {"$ref": "#/groups/15"}, {"$ref": "#/groups/16"}, {"$ref": "#/groups/17"}, {"$ref": "#/groups/18"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 39.60329055786133, "t": 788.077392578125, "r": 539.8965454101562, "b": 76.03204345703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 31, "bbox": {"l": 43.6134147644043, "t": 53.18646240234375, "r": 99.23092651367188, "b": 17.52117919921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"31": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 31}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p32.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p32.json new file mode 100644 index 0000000..d8c2879 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p32.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/groups/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/groups/2"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/groups/7"}, {"$ref": "#/groups/8"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/groups/9"}, {"$ref": "#/texts/20"}, {"$ref": "#/groups/10"}, {"$ref": "#/texts/22"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/8", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/9", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/10", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/21"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 32, "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 505.695068359375, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 234]}], "orig": "27 A mass M is suspended from a spring. When the mass is at rest at the equilibrium position, the elastic potential energy stored is E. An extra mass of 2M is added to the spring and the spring extends while still obeying Hooke's law.", "text": "27 A mass M is suspended from a spring. When the mass is at rest at the equilibrium position, the elastic potential energy stored is E. An extra mass of 2M is added to the spring and the spring extends while still obeying Hooke's law.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 708.2355041503906, "r": 517.1112467447916, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 99]}], "orig": "What is the total elastic energy stored when the system is at rest at the new equilibrium position?", "text": "What is the total elastic energy stored when the system is at rest at the new equilibrium position?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.4734700520833, "t": 681.9230041503906, "r": 536.1382242838541, "b": 667.4935709635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 649.2445882161459, "r": 121.77272542317708, "b": 634.8151448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "A 2E", "text": "A 2E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 620.3857014973959, "r": 122.19554646809895, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "B 3E", "text": "B 3E", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 592.8000284830729, "r": 121.77272542317708, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "C 4E", "text": "C 4E", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 91.3295389811198, "t": 563.0923665364583, "r": 121.77272542317708, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 3]}], "orig": "D9E", "text": "D9E", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.62452697753906, "t": 516.4088948567708, "r": 512.0373942057291, "b": 489.24761962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "28 Two wires P and Q are made of the same material and have the same cross-sectional area.", "text": "28 Two wires P and Q are made of the same material and have the same cross-sectional area.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 91.75236002604167, "t": 488.39882405598956, "r": 504.8494059244792, "b": 462.08632405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 153]}], "orig": "P has an original length L and is subject to a tensile force F. P extends a distance x. Q has an original length 2L and is subject to a tensile force 2F.", "text": "P has an original length L and is subject to a tensile force F. P extends a distance x. Q has an original length 2L and is subject to a tensile force 2F.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 92.17519124348958, "t": 449.35447184244794, "r": 228.7466837565104, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "Whichstatementiscorrect?", "text": "Whichstatementiscorrect?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.8962809244792, "t": 436.62261962890625, "r": 536.5610758463541, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "checkbox_selected", "prov": [{"page_no": 32, "bbox": {"l": 91.75236002604167, "t": 403.09539794921875, "r": 344.5998942057292, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 50]}], "orig": "AThe stress in P and the stress in Q are the same.", "text": "AThe stress in P and the stress in Q are the same.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 91.75236002604167, "t": 375.08530680338544, "r": 228.3238525390625, "b": 361.08026123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 27]}], "orig": "B The extension of Q is 2x.", "text": "B The extension of Q is 2x.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 92.17519124348958, "t": 347.07521565755206, "r": 300.20359293619794, "b": 333.91896565755206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 44]}], "orig": "C The strain of Q is double the strain of P.", "text": "C The strain of Q is double the strain of P.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 324.15789794921875, "r": 313.73388671875, "b": 295.29901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 53]}], "orig": "stress D The value of for P is half that of Q. strain", "text": "stress D The value of for P is half that of Q. strain", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 48.201700846354164, "t": 268.5621134440104, "r": 313.73388671875, "b": 254.55706787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 49]}], "orig": "29 The current in a metallic conductor is 1.5 mA.", "text": "29 The current in a metallic conductor is 1.5 mA.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 92.17519124348958, "t": 240.12762451171875, "r": 416.4796142578125, "b": 227.82017008463538, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 64]}], "orig": "How many electrons pass a point in the conductor in two minutes?", "text": "How many electrons pass a point in the conductor in two minutes?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 490.4734700520833, "t": 227.82017008463538, "r": 536.5610758463541, "b": 213.39072672526038, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/groups/9"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 194.29294840494788, "r": 156.44412231445312, "b": 181.98549397786462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "A 1.1 \u00d7 1018", "text": "A 1.1 \u00d7 1018", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 165.85850016276038, "r": 156.44412231445312, "b": 153.55100504557288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "B 1.9 \u00d7 1019", "text": "B 1.9 \u00d7 1019", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/groups/10"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 32, "bbox": {"l": 90.06107584635417, "t": 137.42397054036462, "r": 157.28976440429688, "b": 125.54091389973962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "C 1.4 \u00d7 1020", "text": "C 1.4 \u00d7 1020", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 90.90671793619792, "t": 108.98956298828125, "r": 156.02130126953125, "b": 97.10650634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "D 2.0 \u00d7 1029", "text": "D 2.0 \u00d7 1029", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "32", "text": "32", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 32, "bbox": {"l": 543.7490234375, "t": 788.4461924235026, "r": 582.6486409505209, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 32, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/23"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 32, "bbox": {"l": 43.62717819213867, "t": 53.14801025390625, "r": 99.07987976074219, "b": 17.21087646484375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"32": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 32}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p33.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p33.json new file mode 100644 index 0000000..7d25d9c --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p33.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/19"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/groups/1"}, {"$ref": "#/groups/2"}, {"$ref": "#/texts/8"}, {"$ref": "#/groups/3"}, {"$ref": "#/groups/4"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/groups/5"}, {"$ref": "#/groups/6"}, {"$ref": "#/groups/7"}, {"$ref": "#/groups/8"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}, {"self_ref": "#/groups/1", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/2", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/3", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/4", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/5", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/13"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/6", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/14"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/7", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}, {"self_ref": "#/groups/8", "parent": {"$ref": "#/groups/0"}, "children": [{"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "group", "label": "list"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 33, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "33", "text": "33", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "30", "text": "30", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 773.16796875, "r": 477.788818359375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 75]}], "orig": "Which value of resistance cannot be made by combining three 10 Q resistors?", "text": "Which value of resistance cannot be made by combining three 10 Q resistors?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 490.0506591796875, "t": 759.1629282633463, "r": 536.1382242838541, "b": 744.7334899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 91.75236002604167, "t": 725.6357116699219, "r": 135.30302937825522, "b": 713.7526448567709, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "A 3.3Q", "text": "A 3.3Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/1"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 93.02083333333333, "t": 695.503651936849, "r": 101.9000956217448, "b": 686.1669616699219, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "B", "text": "B", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/2"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 97.671875, "t": 696.3524373372396, "r": 135.30302937825522, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "36.7Q", "text": "36.7Q", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 92.17519124348958, "t": 668.3423665364584, "r": 132.34327189127603, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "C15Q", "text": "C15Q", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/3"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 91.75236002604167, "t": 639.9078776041666, "r": 132.34327189127603, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "D25Q", "text": "D25Q", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/4"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 48.201700846354164, "t": 594.0732014973959, "r": 532.7556559244791, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 100]}], "orig": "31 A particle performs simple harmonic motion with a time period of 1.4 s and an amplitude of 12 mm.", "text": "31 A particle performs simple harmonic motion with a time period of 1.4 s and an amplitude of 12 mm.", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 91.75236002604167, "t": 551.2092895507812, "r": 306.54591878255206, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 42]}], "orig": "What is the maximum speed of the particle?", "text": "What is the maximum speed of the particle?", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 490.8962809244792, "t": 538.0530395507812, "r": 536.5610758463541, "b": 523.6236165364583, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/5"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 505.37461344401044, "r": 160.6723429361979, "b": 492.21836344401044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 12]}], "orig": "A 8.6 mm s-1", "text": "A 8.6 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/6"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 476.94012451171875, "r": 158.13541666666666, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "B 27 mm s-1", "text": "B 27 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/7"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 91.3295389811198, "t": 448.08127848307294, "r": 158.13541666666666, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "C 54 mm s-1", "text": "C 54 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/groups/8"}, "children": [], "content_layer": "body", "meta": null, "label": "list_item", "prov": [{"page_no": 33, "bbox": {"l": 90.90671793619792, "t": 419.64678955078125, "r": 164.05492146809897, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 11]}], "orig": "D110 mm s-1", "text": "D110 mm s-1", "formatting": null, "hyperlink": null, "enumerated": false, "marker": ""}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 551.3598225911459, "t": 417.94919840494794, "r": 567.0042317708334, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "25", "text": "25", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 33, "bbox": {"l": 231.28361002604166, "t": 347.92401123046875, "r": 347.1368408203125, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "ENDOFQUESTIONS", "text": "ENDOFQUESTIONS", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 33, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 33, "bbox": {"l": 43.651397705078125, "t": 53.1204833984375, "r": 99.10762023925781, "b": 17.42449951171875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"33": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 33}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p34.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p34.json new file mode 100644 index 0000000..f4438bb --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p34.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 34, "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "34", "text": "34", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "There are no questions printed on this page", "text": "There are no questions printed on this page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 187.31011962890625, "t": 445.11049397786456, "r": 396.6070149739583, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 34, "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 34, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 34, "bbox": {"l": 43.563106536865234, "t": 52.9520263671875, "r": 99.4925765991211, "b": 17.06787109375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"34": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 34}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p35.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p35.json new file mode 100644 index 0000000..232f110 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p35.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "35", "text": "35", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 35, "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 28]}], "orig": "Additional page,if required.", "text": "Additional page,if required.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Write the question numbers in the left-hand margin.", "text": "Write the question numbers in the left-hand margin.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.65151468912761, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 35, "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 35, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 35, "bbox": {"l": 43.705772399902344, "t": 53.1787109375, "r": 99.34980773925781, "b": 16.9459228515625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"35": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 35}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p36.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p36.json new file mode 100644 index 0000000..7ebff4e --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p36.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "36", "text": "36", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 36, "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Question", "text": "Question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 184.773193359375, "t": 771.0459899902344, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 76]}], "orig": "Additional page, if required. Writethequestionnumbers inthe left-handmargin.", "text": "Additional page, if required. Writethequestionnumbers inthe left-handmargin.", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 36, "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Copyrightinformation", "text": "Copyrightinformation", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 215]}], "orig": "For confidentialitypurposes,allacknowledgementsof third-party copyright material arepublished inaseparatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "text": "For confidentialitypurposes,allacknowledgementsof third-party copyright material arepublished inaseparatebooklet.Thisbooklet ispublished aftereachliveexaminationseriesandisavailableforfreedownloadfromwww.aqa.org.uk.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "CopyrightTeam.", "text": "CopyrightTeam.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 51]}], "orig": "Copyright2022AQAand itslicensors.Allrightsreserved.", "text": "Copyright2022AQAand itslicensors.Allrightsreserved.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "3", "text": "3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 36, "bbox": {"l": 378.8484700520833, "t": 57.63775634765625, "r": 506.9635416666667, "b": 47.87660725911462, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "226A7408/1", "text": "226A7408/1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 36, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 43.670074462890625, "t": 53.22137451171875, "r": 99.135986328125, "b": 17.025634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 36, "bbox": {"l": 362.7693786621094, "t": 84.42547607421875, "r": 527.0680541992188, "b": 48.60748291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"36": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 36}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p4.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p4.json new file mode 100644 index 0000000..36bcb04 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p4.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/10"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.4", "text": "01.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 113.3162841796875, "t": 772.7435709635416, "r": 535.2926025390625, "b": 744.7334899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 102]}], "orig": "Calculate, in eV, the change in energy level responsible for the spectral line labelled E in Figure 1.", "text": "Calculate, in eV, the change in energy level responsible for the spectral line labelled E in Figure 1.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 483.7083333333333, "t": 746.0066731770834, "r": 536.1382242838541, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 241.85416666666666, "t": 518.5308634440105, "r": 529.3730875651041, "b": 505.79901123046875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 26]}], "orig": "change in energylevel = eV", "text": "change in energylevel = eV", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 48.62452697753906, "t": 478.63771565755206, "r": 101.9000956217448, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "01.5", "text": "01.5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 115.007568359375, "t": 475.24257405598956, "r": 516.6884358723959, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 126]}], "orig": "Explain, with reference to the processes within an atom, the difference between an emissionspectrum and an absorptionspectrum.", "text": "Explain, with reference to the processes within an atom, the difference between an emissionspectrum and an absorptionspectrum.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 484.1311442057292, "t": 448.93007405598956, "r": 535.2926025390625, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 551.3598225911459, "t": 118.75063069661462, "r": 568.272705078125, "b": 105.16998291015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "12", "text": "12", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 4, "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "4", "text": "4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 4, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 4, "bbox": {"l": 43.870540618896484, "t": 53.111572265625, "r": 99.27579498291016, "b": 17.62060546875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"4": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 4}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p5.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p5.json new file mode 100644 index 0000000..ebdb708 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p5.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/31"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/32"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 5, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "5", "text": "5", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 79.91335042317708, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 506.9635416666667, "b": 743.0359090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "text": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 729.0308736165365, "r": 103.5913798014323, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 726.4844970703125, "r": 350.9422200520833, "b": 711.2062683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "State the change of quark character in \u03b2 decay.", "text": "State the change of quark character in \u03b2 decay.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 712.9038492838541, "r": 535.7154134114584, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 622.9320882161459, "r": 105.2826639811198, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 619.1125284830729, "r": 517.5340576171875, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "text": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 268.06911214192706, "t": 574.9754231770833, "r": 314.15671793619794, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.30302937825522, "t": 499.43308512369794, "r": 176.73958333333334, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 487.97442626953125, "r": 162.78645833333334, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "of \u03b2-", "text": "of \u03b2-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 475.66697184244794, "r": 180.12215169270834, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "particles", "text": "particles", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 280.33095296223956, "t": 410.31011962890625, "r": 349.6737467447917, "b": 395.88067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "kinetic energy", "text": "kinetic energy", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.8532206217448, "t": 377.20729573567706, "r": 427.4729817708333, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Explain howFigure 2 supports the existence of the antineutrino.", "text": "Explain howFigure 2 supports the existence of the antineutrino.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 364.47544352213544, "r": 536.1382242838541, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.73295084635416, "t": 154.39980061848962, "r": 391.1103108723958, "b": 139.54595947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 79.91335042317708, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "02", "text": "02", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/17", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 506.9635416666667, "b": 743.0359090169271, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 98]}], "orig": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "text": "Carbon-14 decays into nitrogen-14 with the release of a beta (\u03b2) particle and an antineutrino (v).", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/18", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.62452697753906, "t": 729.0308736165365, "r": 103.5913798014323, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.1", "text": "02.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/19", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 113.73910522460938, "t": 726.4844970703125, "r": 350.9422200520833, "b": 711.2062683105469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 47]}], "orig": "State the change of quark character in \u03b2 decay.", "text": "State the change of quark character in \u03b2 decay.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/20", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 490.0506591796875, "t": 712.9038492838541, "r": 535.7154134114584, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/21", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 48.201700846354164, "t": 622.9320882161459, "r": 105.2826639811198, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.2", "text": "02.2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/22", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 114.16192626953125, "t": 619.1125284830729, "r": 517.5340576171875, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 95]}], "orig": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "text": "Figure 2 shows the distribution of kinetic energies of \u03b2 particles from the decay of carbon-14.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/23", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 268.06911214192706, "t": 574.9754231770833, "r": 314.15671793619794, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 2", "text": "Figure 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/24", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.30302937825522, "t": 499.43308512369794, "r": 176.73958333333334, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 6]}], "orig": "number", "text": "number", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/25", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 487.97442626953125, "r": 162.78645833333334, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 5]}], "orig": "of \u03b2-", "text": "of \u03b2-", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/26", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 135.7258504231771, "t": 475.66697184244794, "r": 180.12215169270834, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "particles", "text": "particles", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/27", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 280.33095296223956, "t": 410.31011962890625, "r": 349.6737467447917, "b": 395.88067626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 14]}], "orig": "kinetic energy", "text": "kinetic energy", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/28", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 115.8532206217448, "t": 377.20729573567706, "r": 427.4729817708333, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 63]}], "orig": "Explain howFigure 2 supports the existence of the antineutrino.", "text": "Explain howFigure 2 supports the existence of the antineutrino.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/29", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 484.553955078125, "t": 364.47544352213544, "r": 536.1382242838541, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[2 marks]", "text": "[2 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/30", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 187.73295084635416, "t": 154.39980061848962, "r": 391.1103108723958, "b": 139.54595947265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Question2continuesonthenextpage", "text": "Question2continuesonthenextpage", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/31", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 5, "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}, {"page_no": 5, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "charspan": [10, 35]}], "orig": "Turn over Donotwrite outsidethe box", "text": "Turn over Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/32", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 5, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/16"}, {"$ref": "#/texts/17"}, {"$ref": "#/texts/18"}, {"$ref": "#/texts/19"}, {"$ref": "#/texts/20"}, {"$ref": "#/texts/21"}, {"$ref": "#/texts/22"}, {"$ref": "#/texts/23"}, {"$ref": "#/texts/24"}, {"$ref": "#/texts/25"}, {"$ref": "#/texts/26"}, {"$ref": "#/texts/27"}, {"$ref": "#/texts/28"}, {"$ref": "#/texts/29"}, {"$ref": "#/texts/30"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 39.981536865234375, "t": 787.2447891235352, "r": 539.0674438476562, "b": 75.93817138671875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 5, "bbox": {"l": 43.70866394042969, "t": 53.13214111328125, "r": 99.10891723632812, "b": 17.50592041015625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"5": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 5}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p6.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p6.json new file mode 100644 index 0000000..ab24037 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p6.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/texts/6"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/texts/9"}, {"$ref": "#/texts/10"}, {"$ref": "#/texts/11"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/12"}, {"$ref": "#/texts/13"}, {"$ref": "#/texts/14"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/16"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 6, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "6", "text": "6", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 49.04734802246094, "t": 702.2939758300781, "r": 102.32291666666667, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.3", "text": "02.3", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 48.201700846354164, "t": 623.3564656575521, "r": 104.01420084635417, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "02.4", "text": "02.4", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "06", "text": "06", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 469.3323567708333, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 146]}], "orig": "The existence of the antineutrino was confirmed by experiments in which antineutrinos interact with protons. The equation for this interaction is:", "text": "The existence of the antineutrino was confirmed by experiments in which antineutrinos interact with protons. The equation for this interaction is:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 6, "bbox": {"l": 246.0823771158854, "t": 732.426035563151, "r": 342.9086100260417, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 10]}], "orig": "v+ p\u2192e++ x", "text": "", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 699.7475992838541, "r": 202.10888671875, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 20]}], "orig": "Identify particle X.", "text": "Identify particle X.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 490.0506591796875, "t": 687.0157470703125, "r": 535.7154134114584, "b": 672.5863138834635, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "[1 mark]", "text": "[1 mark]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.73910522460938, "t": 620.3857014973959, "r": 529.3730875651041, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 130]}], "orig": "The positron released in this interaction is annihilated when it encounters an electron. A pair of gamma photons is then produced.", "text": "The positron released in this interaction is annihilated when it encounters an electron. A pair of gamma photons is then produced.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.16192626953125, "t": 568.6094970703125, "r": 324.304443359375, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 43]}], "orig": "antineutrino-proton interaction experiment.", "text": "antineutrino-proton interaction experiment.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 113.3162841796875, "t": 595.3463948567709, "r": 492.5875651041667, "b": 568.1850992838542, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 138]}], "orig": "Particle X can be absorbed by a nucleus. This produces another gamma ray. Table 1 contains data for three gamma photons detected during an", "text": "Particle X can be absorbed by a nucleus. This produces another gamma ray. Table 1 contains data for three gamma photons detected during an", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 6, "bbox": {"l": 270.1832275390625, "t": 543.1457926432292, "r": 310.77414957682294, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 1", "text": "Table 1", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 114.58474731445312, "t": 388.66595458984375, "r": 514.1514892578125, "b": 363.20225016276044, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 90]}], "orig": "Deduce which of the three gamma photons could have been produced by positron annihilation.", "text": "Deduce which of the three gamma photons could have been produced by positron annihilation.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/13", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 484.1311442057292, "t": 362.35345458984375, "r": 535.2926025390625, "b": 349.19720458984375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/14", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/15", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 6, "bbox": {"l": 556.8565266927084, "t": 105.59438069661462, "r": 563.1988525390625, "b": 96.68210856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "7", "text": "7", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/16", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 6, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 43.68804931640625, "t": 53.1361083984375, "r": 99.04960632324219, "b": 17.542236328125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/15"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 6, "bbox": {"l": 543.333251953125, "t": 131.81103515625, "r": 576.0045166015625, "b": 90.12890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 6, "bbox": {"l": 187.1017303466797, "t": 518.6640625, "r": 394.65936279296875, "b": 402.0744323730469, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 197.45784505208334, "t": 332.30141194661456, "r": 279.4853108723958, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Gammaphoton", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 294.7069091796875, "t": 333.15020751953125, "r": 387.7277425130208, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Photonenergy/ J", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 229.59232584635416, "t": 361.1602783203125, "r": 246.92801920572916, "b": 375.1653238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.46543375651044, "t": 361.1602783203125, "r": 369.54638671875, "b": 373.4677327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "5.0 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 229.59232584635416, "t": 390.0191650390625, "r": 247.3508504231771, "b": 403.5998128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 390.4435628255208, "r": 369.54638671875, "b": 402.3266194661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.6 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 229.59232584635416, "t": 418.8780110677083, "r": 247.3508504231771, "b": 432.883056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 419.3024088541667, "r": 369.54638671875, "b": 431.1855061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.0 \u00d7 10-13", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 4, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 197.45784505208334, "t": 332.30141194661456, "r": 279.4853108723958, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Gammaphoton", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 294.7069091796875, "t": 333.15020751953125, "r": 387.7277425130208, "b": 345.8820393880208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Photonenergy/ J", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 229.59232584635416, "t": 361.1602783203125, "r": 246.92801920572916, "b": 375.1653238932292, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G1", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.46543375651044, "t": 361.1602783203125, "r": 369.54638671875, "b": 373.4677327473958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "5.0 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 229.59232584635416, "t": 390.0191650390625, "r": 247.3508504231771, "b": 403.5998128255208, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G2", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 390.4435628255208, "r": 369.54638671875, "b": 402.3266194661458, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6.6 \u00d7 10-14", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 229.59232584635416, "t": 418.8780110677083, "r": 247.3508504231771, "b": 432.883056640625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "G3", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 312.88824462890625, "t": 419.3024088541667, "r": 369.54638671875, "b": 431.1855061848958, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "1.0 \u00d7 10-13", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"6": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 6}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p7.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p7.json new file mode 100644 index 0000000..031b875 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p7.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/pictures/0"}, {"$ref": "#/texts/2"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 207.6055908203125, "t": 774.441151936849, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 31]}], "orig": "Turn over for the next question", "text": "Turn over for the next question", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 189.00142415364584, "t": 447.23248291015625, "r": 398.2982991536458, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 48]}], "orig": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACESPROVIDED", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 7, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 7, "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 7, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 39.12006378173828, "t": 789.1430397033691, "r": 540.823486328125, "b": 73.801025390625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 7, "bbox": {"l": 43.57811737060547, "t": 53.12103271484375, "r": 99.4864501953125, "b": 17.18914794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"7": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 7}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p8.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p8.json new file mode 100644 index 0000000..d232697 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p8.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/4"}, {"$ref": "#/texts/5"}, {"$ref": "#/pictures/1"}, {"$ref": "#/texts/7"}, {"$ref": "#/texts/8"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/10"}, {"$ref": "#/tables/0"}, {"$ref": "#/texts/12"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/9"}], "content_layer": "body", "meta": null, "name": "group", "label": "key_value_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "8", "text": "8", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 8, "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 25]}], "orig": "Donotwrite outsidethe box", "text": "Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 78.64488220214844, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "03", "text": "03", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 2]}], "orig": "08", "text": "08", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 498.929931640625, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 77]}], "orig": "Figure 3 shows a garden gate with a pulley system designed to close the gate.", "text": "Figure 3 shows a garden gate with a pulley system designed to close the gate.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "section_header", "prov": [{"page_no": 8, "bbox": {"l": 267.64630126953125, "t": 747.2798563639323, "r": 314.15671793619794, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}], "orig": "Figure 3", "text": "Figure 3", "formatting": null, "hyperlink": null, "level": 1}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/1"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 305.7002766927083, "t": 598.3171590169271, "r": 316.2708333333333, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "R", "text": "R", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 113.73910522460938, "t": 508.769775390625, "r": 497.6614583333333, "b": 470.99859619140625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 186]}], "orig": "The pulley system raises weight A when the gate is opened. When the gate is released, A falls. The horizontal cable C passes over pulley R. The tension in cableC causes the gateto close.", "text": "The pulley system raises weight A when the gate is opened. When the gate is released, A falls. The horizontal cable C passes over pulley R. The tension in cableC causes the gateto close.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/8", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.16192626953125, "t": 458.69114176432294, "r": 388.9962158203125, "b": 445.11049397786456, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 59]}], "orig": "Weight A is a solid cylinder with the following properties:", "text": "Weight A is a solid cylinder with the following properties:", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/9", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "formula", "prov": [{"page_no": 8, "bbox": {"l": 139.95407104492188, "t": 431.95424397786456, "r": 268.491943359375, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 52]}], "orig": "diameter = 4.8 \u00d7 10-2 m length = 0.23 m weight = 35N", "text": "diameter = 4.8 \u00d7 10-2 m length = 0.23 m weight = 35N", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/10", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 8, "bbox": {"l": 114.58474731445312, "t": 369.14377848307294, "r": 375.0430908203125, "b": 356.41192626953125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Table 2 gives the density of three availablematerials.", "text": "Table 2 gives the density of three availablematerials.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/11", "parent": {"$ref": "#/tables/0"}, "children": [], "content_layer": "body", "meta": null, "label": "caption", "prov": [{"page_no": 8, "bbox": {"l": 270.60605875651044, "t": 340.28489176432294, "r": 311.19696044921875, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 7]}], "orig": "Table 2", "text": "Table 2", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/12", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 8, "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/3"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 43.677764892578125, "t": 53.17633056640625, "r": 98.9754867553711, "b": 17.55694580078125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}, {"self_ref": "#/pictures/1", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 8, "bbox": {"l": 154.61647033691406, "t": 721.9823760986328, "r": 426.1144104003906, "b": 525.6509094238281, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [{"self_ref": "#/tables/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/11"}], "content_layer": "body", "meta": null, "label": "table", "prov": [{"page_no": 8, "bbox": {"l": 187.03213500976562, "t": 313.766357421875, "r": 393.7676696777344, "b": 208.6341552734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"$ref": "#/texts/11"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 218.1761271158854, "t": 536.0111083984375, "r": 260.8811442057292, "b": 547.8941650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Material", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 299.78076171875, "t": 534.7379150390625, "r": 385.1907958984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Density / kg m-3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 217.7533162434896, "t": 562.7480061848959, "r": 260.8811442057292, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "concrete", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 560.6260172526041, "r": 364.8953450520833, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 228.7466837565104, "t": 588.6361083984375, "r": 249.88777669270834, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "iron", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 586.5141194661459, "r": 364.4725341796875, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.8 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 224.9412841796875, "t": 614.5242106119791, "r": 254.1159871419271, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "brass", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 613.2510172526041, "r": 364.4725341796875, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "8.6 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], "num_rows": 4, "num_cols": 2, "orientation": "rot_0", "grid": [[{"bbox": {"l": 218.1761271158854, "t": 536.0111083984375, "r": 260.8811442057292, "b": 547.8941650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "Material", "column_header": true, "row_header": false, "row_section": false, "fillable": false}, {"bbox": {"l": 299.78076171875, "t": 534.7379150390625, "r": 385.1907958984375, "b": 550.01611328125, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "Density / kg m-3", "column_header": true, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 217.7533162434896, "t": 562.7480061848959, "r": 260.8811442057292, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "concrete", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 560.6260172526041, "r": 364.8953450520833, "b": 574.2066650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2.4 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 228.7466837565104, "t": 588.6361083984375, "r": 249.88777669270834, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "iron", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 318.80775960286456, "t": 586.5141194661459, "r": 364.4725341796875, "b": 600.9435628255209, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "7.8 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}], [{"bbox": {"l": 224.9412841796875, "t": 614.5242106119791, "r": 254.1159871419271, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "brass", "column_header": false, "row_header": true, "row_section": false, "fillable": false}, {"bbox": {"l": 317.9621175130208, "t": 613.2510172526041, "r": 364.4725341796875, "b": 626.8316650390625, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "8.6 \u00d7 103", "column_header": false, "row_header": false, "row_section": false, "fillable": false}]]}, "annotations": []}], "key_value_items": [], "form_items": [], "pages": {"8": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 8}}} \ No newline at end of file diff --git a/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p9.json b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p9.json new file mode 100644 index 0000000..ef70376 --- /dev/null +++ b/api/services/docling/results/b1_rapid/b1-aqa-physics-7408-1-2022jun/p9.json @@ -0,0 +1 @@ +{"schema_name": "DoclingDocument", "version": "1.10.0", "name": "aqa-physics-7408-1-2022jun", "origin": {"mimetype": "application/pdf", "binary_hash": 17020260330108126598, "filename": "aqa-physics-7408-1-2022jun.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "content_layer": "furniture", "meta": null, "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"$ref": "#/texts/0"}, {"$ref": "#/groups/0"}, {"$ref": "#/texts/5"}, {"$ref": "#/pictures/0"}, {"$ref": "#/texts/7"}], "content_layer": "body", "meta": null, "name": "_root_", "label": "unspecified"}, "groups": [{"self_ref": "#/groups/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/1"}, {"$ref": "#/texts/2"}, {"$ref": "#/texts/3"}, {"$ref": "#/texts/4"}], "content_layer": "body", "meta": null, "name": "group", "label": "form_area"}], "texts": [{"self_ref": "#/texts/0", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_header", "prov": [{"page_no": 9, "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/1", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 105.2826639811198, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 4]}], "orig": "03.1", "text": "03.1", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/2", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 380.5397542317708, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 54]}], "orig": "Deduce which one of the three materials is used for A.", "text": "Deduce which one of the three materials is used for A.", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/3", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 484.553955078125, "t": 760.01171875, "r": 536.1382242838541, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 9]}], "orig": "[3 marks]", "text": "[3 marks]", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/4", "parent": {"$ref": "#/groups/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 187.31011962890625, "t": 418.37359619140625, "r": 391.5331217447917, "b": 403.09539794921875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 37]}], "orig": "Question 3 continues on the next page", "text": "Question 3 continues on the next page", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/5", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 8]}, {"page_no": 9, "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "charspan": [9, 34]}], "orig": "Turnover Donotwrite outsidethe box", "text": "Turnover Donotwrite outsidethe box", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/6", "parent": {"$ref": "#/pictures/0"}, "children": [], "content_layer": "body", "meta": null, "label": "text", "prov": [{"page_no": 9, "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9", "formatting": null, "hyperlink": null}, {"self_ref": "#/texts/7", "parent": {"$ref": "#/body"}, "children": [], "content_layer": "furniture", "meta": null, "label": "page_footer", "prov": [{"page_no": 9, "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 17]}], "orig": "IB/M/Jun22/7408/1", "text": "IB/M/Jun22/7408/1", "formatting": null, "hyperlink": null}], "pictures": [{"self_ref": "#/pictures/0", "parent": {"$ref": "#/body"}, "children": [{"$ref": "#/texts/6"}], "content_layer": "body", "meta": null, "label": "picture", "prov": [{"page_no": 9, "bbox": {"l": 43.875328063964844, "t": 53.1292724609375, "r": 99.22415161132812, "b": 17.6796875, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [], "references": [], "footnotes": [], "image": null, "annotations": []}], "tables": [], "key_value_items": [], "form_items": [], "pages": {"9": {"size": {"width": 595.3200073242188, "height": 841.9199829101562}, "image": null, "page_no": 9}}} \ No newline at end of file diff --git a/api/services/docling/results/final/INDEX.md b/api/services/docling/results/final/INDEX.md new file mode 100644 index 0000000..3923da1 --- /dev/null +++ b/api/services/docling/results/final/INDEX.md @@ -0,0 +1,37 @@ +# Final corpus output — exam-extraction spike + +Generated 2026-06-08T01:48:56. 7 paper-runs across 3 boards × 2 levels, both pipeline paths; 0 overlay debug images. + +Each `/` holds the machine artifacts (JSON) + `report.md`; geometry papers also have `overlays/template/` (human-review view, all pages) and `overlays/debug/` (raw-detection view). +Machine catalog: `catalog.json`. + +## Image-only / OCR-path (with geometry + overlays) + +| Paper | Board / level | Q/parts | Marks/max | Coverage | Answer regions | G6 | Images | +|---|---|---|---|---|---|---|---| +| [AQA A-level Biology 7402/1 2023 Jun (image-only OCR baseline)](b1-aqa-biology-7402-1-2023jun/report.md) | aqa A-level | 10/36 | None/None (None%) | 92.3% | 199 | warn | 0 | +| [AQA A-level Chemistry 7405/1 2022 Jun (image-only OCR baseline)](b1-aqa-chemistry-7405-1-2022jun/report.md) | aqa A-level | 8/36 | None/None (None%) | 76.6% | 150 | warn | 0 | +| [AQA A-level Physics 7408/1 2022 Jun (image-only OCR baseline)](b1-aqa-physics-7408-1-2022jun/report.md) | aqa A-level | 27/47 | 76/85 (89.4%) | 88.7% | 325 | warn | 0 | +| [AQA GCSE Biology 8461/1H 2022 Jun (image-only OCR baseline)](b1-aqa-biology-8461-1h-2022jun/report.md) | aqa GCSE | 7/40 | 94/100 (94.0%) | 93.0% | 246 | warn | 0 | +| [AQA GCSE Chemistry 8462/1H 2022 Jun (image-only OCR baseline)](b1-aqa-chemistry-8462-1h-2022jun/report.md) | aqa GCSE | 8/42 | 91/100 (91.0%) | 89.4% | 192 | warn | 0 | +| [AQA GCSE Combined Science Trilogy 8464/B/1H 2022 Jun (image-only OCR baseline)](b1-aqa-combined-8464-b1h-2022jun/report.md) | aqa GCSE | 6/32 | 62/70 (88.6%) | 88.9% | 214 | warn | 0 | +| [AQA GCSE Combined Science Trilogy 8464/C/1H 2022 Jun (image-only OCR baseline; 8465 not present in dev catalogue)](b1-aqa-combined-8464-c1h-2022jun/report.md) | aqa GCSE | 6/25 | 51/70 (72.9%) | 75.8% | 147 | warn | 0 | + +## Born-digital fast-path (CPU, no geometry) + +| Paper | Board / level | Q/parts | Marks/max | Coverage | G6 | +|---|---|---|---|---|---| + +## Per-paper directory layout +``` +/ + structured.json extract.py output (questions->parts->marks/bbox/regions) + validate.json G6 consistency judge (confidence + flags) + furniture.json recurring-furniture mask + content margins [geometry only] + bands.json main + part y-bands [geometry only] + page_roles.json per-page role + margin override [geometry only] + template.json editable first-pass template (source/confirmed) [geometry only] + overlays/template/ human-review view, all pages [geometry only] + overlays/debug/ raw-detection view, sample pages [geometry only] + report.md per-paper human summary +``` diff --git a/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/bands.json b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/bands.json new file mode 100644 index 0000000..eba7bcb --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/bands.json @@ -0,0 +1,499 @@ +{ + "board": "aqa", + "paper_code": "7402/1", + "coord_origin": "BOTTOMLEFT", + "pages": { + "2": { + "main": [ + { + "question": "01", + "y_start": 738.8, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "01.1", + "question": "01", + "y_start": 738.8, + "y_end": 493.9 + }, + { + "label": "01.2", + "question": "01", + "y_start": 493.9, + "y_end": 286.8 + }, + { + "label": "01.3", + "question": "01", + "y_start": 286.8, + "y_end": 0.0 + } + ] + }, + "3": { + "main": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "02.1", + "question": "02", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "4": { + "main": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.2", + "question": "02", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "6": { + "main": [ + { + "question": "03", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "03.1", + "question": "03", + "y_start": 775.7, + "y_end": 280.4 + }, + { + "label": "03.2", + "question": "03", + "y_start": 280.4, + "y_end": 0.0 + } + ] + }, + "7": { + "main": [ + { + "question": "03", + "y_start": 389.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.3", + "question": "03", + "y_start": 389.1, + "y_end": 0.0 + } + ] + }, + "8": { + "main": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.4", + "question": "03", + "y_start": 774.9, + "y_end": 529.1 + }, + { + "label": "03.5", + "question": "03", + "y_start": 529.1, + "y_end": 0.0 + } + ] + }, + "9": { + "main": [ + { + "question": "04", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "04.1", + "question": "04", + "y_start": 775.7, + "y_end": 0.0 + } + ] + }, + "11": { + "main": [ + { + "question": "04", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.2", + "question": "04", + "y_start": 774.9, + "y_end": 433.2 + }, + { + "label": "04.3", + "question": "04", + "y_start": 433.2, + "y_end": 0.0 + } + ] + }, + "12": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.1", + "question": "05", + "y_start": 722.2, + "y_end": 0.0 + } + ] + }, + "13": { + "main": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.2", + "question": "05", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "15": { + "main": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.3", + "question": "05", + "y_start": 775.3, + "y_end": 553.8 + }, + { + "label": "05.4", + "question": "05", + "y_start": 553.8, + "y_end": 422.6 + }, + { + "label": "05.5", + "question": "05", + "y_start": 422.6, + "y_end": 0.0 + } + ] + }, + "16": { + "main": [ + { + "question": "06", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.1", + "question": "06", + "y_start": 775.3, + "y_end": 477.8 + }, + { + "label": "06.2", + "question": "06", + "y_start": 477.8, + "y_end": 0.0 + } + ] + }, + "17": { + "main": [ + { + "question": "06", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.3", + "question": "06", + "y_start": 775.7, + "y_end": 643.7 + }, + { + "label": "06.4", + "question": "06", + "y_start": 643.7, + "y_end": 0.0 + } + ] + }, + "19": { + "main": [ + { + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "07.2", + "question": "07", + "y_start": 775.7, + "y_end": 0.0 + } + ] + }, + "20": { + "main": [ + { + "question": "08", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "08.1", + "question": "08", + "y_start": 775.7, + "y_end": 0.0 + } + ] + }, + "21": { + "main": [ + { + "question": "08", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "08.2", + "question": "08", + "y_start": 775.7, + "y_end": 0.0 + } + ] + }, + "23": { + "main": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "08.3", + "question": "08", + "y_start": 774.9, + "y_end": 490.9 + }, + { + "label": "08.4", + "question": "08", + "y_start": 490.9, + "y_end": 0.0 + } + ] + }, + "25": { + "main": [ + { + "question": "09", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "09.1", + "question": "09", + "y_start": 775.7, + "y_end": 555.0 + }, + { + "label": "09.2", + "question": "09", + "y_start": 555.0, + "y_end": 0.0 + } + ] + }, + "26": { + "main": [ + { + "question": "09", + "y_start": 406.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "09.3", + "question": "09", + "y_start": 406.1, + "y_end": 200.7 + }, + { + "label": "09.4", + "question": "09", + "y_start": 200.7, + "y_end": 0.0 + } + ] + }, + "29": { + "main": [ + { + "question": "09", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "09.5", + "question": "09", + "y_start": 774.9, + "y_end": 453.2 + }, + { + "label": "09.6", + "question": "09", + "y_start": 453.2, + "y_end": 0.0 + } + ] + }, + "30": { + "main": [ + { + "question": "10", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "10.1", + "question": "10", + "y_start": 774.4, + "y_end": 0.0 + } + ] + }, + "31": { + "main": [ + { + "question": "10", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "10.2", + "question": "10", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "32": { + "main": [ + { + "question": "10", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "10.3", + "question": "10", + "y_start": 776.1, + "y_end": 0.0 + } + ] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/furniture.json b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/furniture.json new file mode 100644 index 0000000..41f1d39 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/furniture.json @@ -0,0 +1 @@ +{"n_pages": 36, "freq_threshold": 0.4, "furniture_cells": {"3,1": 35, "3,32": 23, "12,34": 32, "21,1": 35, "24,32": 22}, "content_margins": {"content_x_band": {"x_left": 41.9, "x_right": 541.1}, "per_page": {"1": {"top": 797.6, "bottom": 12.2, "left": 35.9, "right": 550.9}, "2": {"top": 775.7, "bottom": 181.8, "left": 48.6, "right": 576.2}, "3": {"top": 776.1, "bottom": 132.8, "left": 48.6, "right": 535.7}, "4": {"top": 759.2, "bottom": 218.5, "left": 49.9, "right": 576.5}, "5": {"top": 789.0, "bottom": 57.6, "left": 39.2, "right": 541.1}, "6": {"top": 775.6, "bottom": 249.9, "left": 49.9, "right": 536.1}, "7": {"top": 773.6, "bottom": 56.8, "left": 47.1, "right": 538.7}, "8": {"top": 773.6, "bottom": 141.4, "left": 49.0, "right": 576.6}, "9": {"top": 773.6, "bottom": 57.2, "left": 114.2, "right": 538.7}, "10": {"top": 774.9, "bottom": 81.1, "left": 40.9, "right": 537.0}, "11": {"top": 773.2, "bottom": 57.2, "left": 49.9, "right": 576.6}, "12": {"top": 771.9, "bottom": 638.6, "left": 49.0, "right": 535.3}, "13": {"top": 774.0, "bottom": 58.1, "left": 112.5, "right": 537.8}, "14": {"top": 773.2, "bottom": 130.2, "left": 114.2, "right": 530.5}, "15": {"top": 772.7, "bottom": 57.2, "left": 49.0, "right": 569.1}, "16": {"top": 774.0, "bottom": 435.3, "left": 48.2, "right": 536.1}, "17": {"top": 774.0, "bottom": 56.8, "left": 49.5, "right": 564.9}, "18": {"top": 774.0, "bottom": 386.5, "left": 112.9, "right": 536.1}, "19": {"top": 774.9, "bottom": 56.8, "left": 113.3, "right": 575.9}, "20": {"top": 774.9, "bottom": 436.6, "left": 113.3, "right": 535.3}, "21": {"top": 774.0, "bottom": 57.2, "left": 113.3, "right": 538.7}, "22": {"top": 775.3, "bottom": 227.8, "left": 113.7, "right": 525.7}, "23": {"top": 774.0, "bottom": 57.2, "left": 49.5, "right": 569.5}, "24": {"top": 773.6, "bottom": 196.0, "left": 114.6, "right": 512.9}, "25": {"top": 773.6, "bottom": 57.2, "left": 50.3, "right": 538.7}, "26": {"top": 772.3, "bottom": 170.1, "left": 49.0, "right": 535.7}, "27": {"top": 775.7, "bottom": 58.1, "left": 188.2, "right": 538.7}, "28": {"top": 762.1, "bottom": 384.4, "left": 114.2, "right": 533.6}, "29": {"top": 773.6, "bottom": 57.2, "left": 48.2, "right": 576.8}, "30": {"top": 773.2, "bottom": 718.0, "left": 112.5, "right": 535.3}, "31": {"top": 775.3, "bottom": 56.4, "left": 48.6, "right": 538.7}, "32": {"top": 773.2, "bottom": 232.9, "left": 113.7, "right": 576.9}, "33": {"top": 775.3, "bottom": 420.9, "left": 173.8, "right": 403.8}, "34": {"top": 771.0, "bottom": 745.6, "left": 184.8, "right": 444.0}, "35": {"top": 775.3, "bottom": 745.6, "left": 184.8, "right": 580.5}, "36": {"top": 771.0, "bottom": 33.9, "left": 54.5, "right": 529.6}}}, "ab_test_figures": {"context_figure_before_mask": 67, "context_figure_after_mask": 27, "removed_as_furniture": 40, "removed_breakdown": {"cell 3,1": 35, "cell 3,32": 5}}, "text_furniture_removed": 140, "items": [{"page": 1, "kind": "text", "label": "text", "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 173.35699462890625, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "text": "AQA", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 726.4844970703125, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "text": "Please write clearly in block capitals.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 692.957275390625, "r": 130.65198771158853, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Centre number", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 692.957275390625, "r": 403.7949625651042, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatenumber", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.389678955078125, "t": 653.9129231770834, "r": 102.32291666666667, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Surname", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.389678955078125, "t": 628.44921875, "r": 120.08144124348958, "b": 614.8685709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Forename(s)", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 601.7123209635416, "r": 156.02130126953125, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "text": "Candidate signature", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 165.74620564778647, "t": 588.1316731770834, "r": 297.24383544921875, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "text": "I declare this is my own work.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 41.01373036702474, "t": 555.0288492838542, "r": 150.52461751302084, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "text": "A-level BIOLOGY", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 39.7452646891276, "t": 483.30605061848956, "r": 96.40340169270833, "b": 465.48146565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Paper 1", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 39.32244110107422, "t": 437.89577229817706, "r": 198.30350748697916, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "text": "Wednesday 7 June 2023", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 408.18813069661456, "r": 92.59801228841145, "b": 395.45627848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Materials", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 38.899620056152344, "t": 393.75868733723956, "r": 186.4644775390625, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "text": "For this paper you must have:", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 379.75364176432294, "r": 231.28361002604166, "b": 368.71938069661456, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7arulerwithmillimetremeasurements", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 367.44618733723956, "r": 156.44412231445312, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a scientific calculator.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.053975423177086, "t": 341.98248291015625, "r": 109.0880635579427, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "text": "Instructions", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 327.9774373372396, "r": 231.28361002604166, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "text": "Use black ink or black ball-point pen.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 300.8161417643229, "r": 158.13541666666666, "b": 287.2354939778646, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Answer all questions.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 314.39678955078125, "r": 239.31722005208334, "b": 299.96734619140625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Fill in the boxes at the top of this pa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 286.81109619140625, "r": 385.6136067708333, "b": 260.49859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "You must answer the questions in the spa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 260.0741984049479, "r": 424.5132649739583, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7If you need extra space for your answer", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 233.76169840494788, "r": 161.09516398111978, "b": 220.60544840494788, "coord_origin": "BOTTOMLEFT"}, "text": "Show all your working.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 220.60544840494788, "r": 402.9493408203125, "b": 195.56614176432288, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Do all rough work in this book. Cross t", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 181.56109619140625, "r": 106.12831624348958, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "text": "Information", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 166.28289794921875, "r": 300.20359293619794, "b": 155.24859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Themarksforthequestionsareshowninbracke", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.7452646891276, "t": 152.70220947265625, "r": 246.0823771158854, "b": 141.66794840494788, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7The maximum markfor thispaperis91.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 212.679443359375, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "JUN237402101", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 268.491943359375, "t": 438.32017008463544, "r": 332.76088460286456, "b": 421.76877848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Afternoon", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 402.5264892578125, "t": 438.74456787109375, "r": 545.4403076171875, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Time allowed: 2 hours", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 364.0497233072917, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/E9", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 485.8224283854167, "t": 35.14475504557288, "r": 550.93701171875, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "7402/1", "furniture": false}, {"page": 2, "kind": "text", "label": "page_header", "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 180.54498291015625, "t": 775.7143351236979, "r": 397.45263671875, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questionsinthespacesprovided.", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 738.7919616699219, "r": 102.32291666666667, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "01.1", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 737.5187683105469, "r": 533.601318359375, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Give the three structural features found", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 710.7818806966146, "r": 535.7154134114584, "b": 697.6256306966146, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 683.1961873372396, "r": 120.50426228841145, "b": 675.9814758300781, "coord_origin": "BOTTOMLEFT"}, "text": "1", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 659.0056762695312, "r": 122.19554646809895, "b": 647.1225992838541, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 633.1175537109375, "r": 121.77272542317708, "b": 622.9320882161459, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 608.0782470703125, "r": 265.95501708984375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "text": "Functionofonenamedfeature", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 493.91595458984375, "r": 107.3967793782552, "b": 478.21331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "01.2", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 112.04782104492188, "t": 492.21836344401044, "r": 413.9427083333333, "b": 477.36452229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why viruses are described as ace", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 478.63771565755206, "r": 536.1382242838541, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 286.81109619140625, "r": 102.32291666666667, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "text": "01.3", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 284.2647501627604, "r": 434.2381591796875, "b": 271.1085001627604, "coord_origin": "BOTTOMLEFT"}, "text": "Give one reason why antibiotics are not ", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 271.53289794921875, "r": 535.7154134114584, "b": 256.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 27.08127848307288, "r": 79.91335042317708, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 558.125, "t": 198.11252848307288, "r": 564.89013671875, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": false}, {"page": 2, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 528.5274658203125, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "02.1 Chitin is a polysaccharide. The chi", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 733.2748209635416, "r": 454.1107991536458, "b": 718.8453877766927, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1 shows the monomer that forms ch", "furniture": false}, {"page": 3, "kind": "text", "label": "section_header", "bbox": {"l": 302.3177083333333, "t": 707.38671875, "r": 347.5596516927083, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 356.8617350260417, "t": 673.4350992838541, "r": 369.9691975911458, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "text": "OH", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 275.67991129557294, "t": 641.1810709635416, "r": 295.1297200520833, "b": 628.44921875, "coord_origin": "BOTTOMLEFT"}, "text": "HO", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 328.9554850260417, "t": 627.6004231770834, "r": 360.6671142578125, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "text": "N(Ac)", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 278.21685791015625, "t": 594.4975992838541, "r": 309.50567626953125, "b": 580.4925537109375, "coord_origin": "BOTTOMLEFT"}, "text": "N(Ac)", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 412.2514241536458, "t": 594.4975992838541, "r": 443.5402425130208, "b": 580.4925537109375, "coord_origin": "BOTTOMLEFT"}, "text": "N(Ac)", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 317.53928629557294, "t": 577.9461873372395, "r": 335.2978108723958, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "text": "HH", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 454.1107991536458, "t": 579.643778483073, "r": 473.9833984375, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "text": "OH", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 174.2026570638021, "t": 545.692159016927, "r": 193.6524658203125, "b": 532.9603068033855, "coord_origin": "BOTTOMLEFT"}, "text": "HO", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 382.6538899739583, "t": 544.418965657552, "r": 408.8688151041667, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "text": "HH", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 225.78692626953125, "t": 530.4139404296875, "r": 257.07574462890625, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "text": "N(Ac)", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 364.0497233072917, "t": 530.4139404296875, "r": 395.3385416666667, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "text": "N(Ac)", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 502.4038492838542, "r": 313.73388671875, "b": 490.09637451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Chitin has a similar structure to cellul", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 474.81817626953125, "r": 523.03076171875, "b": 449.77886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 1 to describe three ways the ", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 447.23248291015625, "r": 535.7154134114584, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 341.55808512369794, "r": 120.92708333333333, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 447.23248291015625, "r": 535.7154134114584, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 341.55808512369794, "r": 120.92708333333333, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 147.18511962890625, "r": 391.1103108723958, "b": 132.75567626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Question 2 continues on the next page Tu", "furniture": false}, {"page": 3, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 104.43702189127605, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "02.2", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 759.1629282633463, "r": 342.4857991536458, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "Gas exchange does not occur in the trach", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 732.8504231770834, "r": 531.0643717447916, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Explain the importance of one adaptation", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 707.38671875, "r": 535.7154134114584, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 514.2869262695312, "r": 101.9000956217448, "b": 499.85748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "02].3", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 513.0137329101562, "r": 511.6145833333333, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Lignin is a polymer found in the walls o", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 472.27178955078125, "r": 477.788818359375, "b": 459.53993733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Explain the importance of the xylem bein", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 460.38873291015625, "r": 536.1382242838541, "b": 445.95928955078125, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 557.2793375651041, "t": 232.91290283203125, "r": 565.3129475911459, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": false}, {"page": 4, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 5, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 774.441151936849, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Turn overfor the nextquestion", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 445.95928955078125, "r": 397.0298258463542, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 286.25046793619794, "t": 809.2415542602539, "r": 292.16998291015625, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 104.43702189127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "03.1", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 774.0167541503906, "r": 514.5743408203125, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "The human disease, malaria, is caused by", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 734.5480041503906, "r": 519.2253824869791, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2 shows a diagram of Plasmodium v", "furniture": false}, {"page": 6, "kind": "text", "label": "caption", "bbox": {"l": 301.47206624348956, "t": 695.9280497233073, "r": 347.5596516927083, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 361.5127766927083, "t": 662.8252156575521, "r": 462.1444091796875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "Structures containing enzymes that allow", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 247.7736612955729, "t": 615.29296875, "r": 251.57906087239584, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 395.45627848307294, "r": 513.7286783854166, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Other than the Golgi apparatus, name one", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 370.41697184244794, "r": 535.7154134114584, "b": 355.98752848307294, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 280.4451700846354, "r": 104.85984293619792, "b": 267.2889200846354, "coord_origin": "BOTTOMLEFT"}, "text": "03.2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 279.59637451171875, "r": 434.6609700520833, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "text": "Describe two functions of the Golgi appa", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 264.31817626953125, "r": 536.1382242838541, "b": 249.88873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 361.5127766927083, "t": 662.8252156575521, "r": 462.1444091796875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "Structures containing enzymes that allow", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 247.7736612955729, "t": 615.29296875, "r": 251.57906087239584, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 6, "kind": "text", "label": "page_footer", "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 389.09035237630206, "r": 102.32291666666667, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "text": "03.3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 387.304931640625, "t": 638.2103068033854, "r": 514.9971516927084, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Central America Strain C1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 386.4592692057292, "t": 608.9270426432291, "r": 515.8427734375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "text": "Central AmericaStrain C2", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 386.4592692057292, "t": 581.7657470703125, "r": 507.8091634114583, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "text": "South America Strain S1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 134.03455607096353, "t": 543.1457926432292, "r": 171.2428995768229, "b": 529.9895426432292, "coord_origin": "BOTTOMLEFT"}, "text": "African", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 330.6467692057292, "t": 540.175028483073, "r": 416.9024658203125, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "text": "Europe Strain E1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 134.45738728841147, "t": 530.8383178710938, "r": 181.81343587239584, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "text": "Common", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 133.61173502604166, "t": 518.5308634440105, "r": 179.2765096028646, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Ancestor", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 386.882080078125, "t": 488.82322184244794, "r": 482.0170491536458, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "text": "EastAsiaStrainA1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 381.3854166666667, "t": 462.51072184244794, "r": 461.2987467447917, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "text": "- India Strain N1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 382.6538899739583, "t": 448.93007405598956, "r": 461.7215983072917, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "- India Strain N2", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 528.5274658203125, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "text": "P. vivax evolved from a common ancestor ", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 720.1185709635416, "r": 283.7135416666667, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "text": "P. vivax in other parts of the world.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 694.6548563639323, "r": 509.9232991536458, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3 shows a phylogenetic diagram of", "furniture": false}, {"page": 7, "kind": "text", "label": "caption", "bbox": {"l": 301.89487711588544, "t": 668.3423665364584, "r": 347.9824625651042, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 387.304931640625, "t": 638.2103068033854, "r": 514.9971516927084, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Central America Strain C1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 386.4592692057292, "t": 608.9270426432291, "r": 515.8427734375, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "text": "Central AmericaStrain C2", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 386.4592692057292, "t": 581.7657470703125, "r": 507.8091634114583, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "text": "South America Strain S1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 134.03455607096353, "t": 543.1457926432292, "r": 171.2428995768229, "b": 529.9895426432292, "coord_origin": "BOTTOMLEFT"}, "text": "African", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 330.6467692057292, "t": 540.175028483073, "r": 416.9024658203125, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "text": "Europe Strain E1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 134.45738728841147, "t": 530.8383178710938, "r": 181.81343587239584, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "text": "Common", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 133.61173502604166, "t": 518.5308634440105, "r": 179.2765096028646, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Ancestor", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 386.882080078125, "t": 488.82322184244794, "r": 482.0170491536458, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "text": "EastAsiaStrainA1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 381.3854166666667, "t": 462.51072184244794, "r": 461.2987467447917, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "text": "- India Strain N1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 382.6538899739583, "t": 448.93007405598956, "r": 461.7215983072917, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "- India Strain N2", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 270.1832275390625, "t": 416.25164794921875, "r": 298.0894775390625, "b": 402.67100016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Time", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 389.09035237630206, "r": 102.32291666666667, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "text": "03.3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 387.39276123046875, "r": 479.0572916666667, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "What does Figure 3 suggest is the order ", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 357.68511962890625, "r": 201.68607584635416, "b": 342.83127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 489.6278483072917, "t": 344.95322672526044, "r": 535.7154134114584, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 7, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 319.9139200846354, "r": 396.6070149739583, "b": 306.3332722981771, "coord_origin": "BOTTOMLEFT"}, "text": "Europe, India, East Asia, Central Americ", "furniture": false}, {"page": 7, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 282.9915568033854, "r": 396.1841634114583, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "text": "India,East Asia,Europe, South America,Ce", "furniture": false}, {"page": 7, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 246.06915283203125, "r": 396.6070149739583, "b": 232.91290283203125, "coord_origin": "BOTTOMLEFT"}, "text": "India,Europe,East Asia, Central America,", "furniture": false}, {"page": 7, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 209.57118733723962, "r": 396.6070149739583, "b": 195.99053955078125, "coord_origin": "BOTTOMLEFT"}, "text": "South America, Central America,East Asia", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 139.12156168619788, "r": 391.1103108723958, "b": 123.84340413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Question 3 continues on the next page", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 7, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 557.7021484375, "t": 157.79498291015625, "r": 565.3129475911459, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "03.4", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 502.7353108723958, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are an estimated 229 million cases", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 721.816151936849, "r": 478.6344401041667, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Use this information to calculate the nu", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 695.9280497233073, "r": 536.1382242838541, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 308.23720296223956, "t": 568.1850992838542, "r": 534.8697916666666, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "text": "Answer casesofmalaria", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 529.1407470703125, "r": 101.47727457682292, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "03.5", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 528.7163492838542, "r": 504.8494059244792, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "In Africa today, most of the human popul", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 490.09637451171875, "r": 528.1046142578125, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Use your knowledge of natural selection ", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 462.51072184244794, "r": 535.7154134114584, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 557.7021484375, "t": 157.79498291015625, "r": 565.3129475911459, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": true}, {"page": 8, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 105.2826639811198, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "04.1", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 520.9166666666666, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Some hospital patients suffer from diarr", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 720.54296875, "r": 506.9635416666667, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "text": "The toxins damage the cells lining the i", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 666.644775390625, "r": 494.2788899739583, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the damage to the cells lini", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 639.0591023763021, "r": 535.7154134114584, "b": 625.9028523763021, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 344.95322672526044, "r": 390.6875, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Question4continuesonthenextpage", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 9, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 10, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 407.1775309244792, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Not all patients in hospital with C. dif", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 747.7042541503906, "r": 532.3328450520834, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "text": "Scientists measured the anti-toxin antib", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 708.659901936849, "r": 428.3186442057292, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "text": "They measured the anti-toxin antibody co", "furniture": false}, {"page": 10, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 684.4693806966146, "r": 282.445068359375, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "text": "on admission to hospital (day 0)", "furniture": false}, {"page": 10, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 669.1911417643229, "r": 169.97442626953125, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "text": "on day 3", "furniture": false}, {"page": 10, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 656.8836873372396, "r": 169.97442626953125, "b": 644.1518351236979, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7on day 6", "furniture": false}, {"page": 10, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 643.3030395507812, "r": 311.19696044921875, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7on the day the patient left the hospita", "furniture": false}, {"page": 10, "kind": "text", "label": "caption", "bbox": {"l": 115.007568359375, "t": 618.2637329101562, "r": 298.51230875651044, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4 shows thescientists'results.", "furniture": false}, {"page": 10, "kind": "text", "label": "caption", "bbox": {"l": 268.06911214192706, "t": 594.0732014973959, "r": 312.88824462890625, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 566.487528483073, "r": 139.95407104492188, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "text": "2.5", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 487.97442626953125, "r": 141.2225341796875, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "2.0", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 52.42992146809896, "t": 438.32017008463544, "r": 82.02746073404948, "b": 426.43711344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Mean", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 52.42992146809896, "t": 426.01271565755206, "r": 98.51751708984375, "b": 414.55405680338544, "coord_origin": "BOTTOMLEFT"}, "text": "anti-toxin", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 52.007100423177086, "t": 415.40285237630206, "r": 96.40340169270833, "b": 401.39780680338544, "coord_origin": "BOTTOMLEFT"}, "text": "antibody", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 116.27604166666667, "t": 406.06614176432294, "r": 141.2225341796875, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "text": "1.5", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 52.42992146809896, "t": 400.97340901692706, "r": 120.50426228841145, "b": 391.21230061848956, "coord_origin": "BOTTOMLEFT"}, "text": "concentration", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 51.161458333333336, "t": 391.21230061848956, "r": 100.63162231445312, "b": 376.78289794921875, "coord_origin": "BOTTOMLEFT"}, "text": "/ arbitrary", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 51.58427937825521, "t": 378.05605061848956, "r": 77.79924011230469, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "units", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 329.2506306966146, "r": 144.18229166666666, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "1.0\u7c73", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 249.46433512369788, "r": 140.79971313476562, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "0.5", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 140.37689208984375, "t": 238.85447184244788, "r": 146.7192179361979, "b": 230.36655680338538, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 259.61269124348956, "t": 238.00567626953125, "r": 264.68654378255206, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 378.8484700520833, "t": 238.00567626953125, "r": 384.3451741536458, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 471.4464925130208, "t": 240.12762451171875, "r": 529.7958984375, "b": 226.97137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Day patient", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 273.1429850260417, "t": 231.63975016276038, "r": 369.9691975911458, "b": 218.05910237630212, "coord_origin": "BOTTOMLEFT"}, "text": "Hospital stay / days", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 471.023681640625, "t": 228.66896565755212, "r": 528.9502766927084, "b": 214.66392008463538, "coord_origin": "BOTTOMLEFT"}, "text": "left hospital", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 139.53125, "t": 211.69317626953125, "r": 160.6723429361979, "b": 197.26373291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 182.23626708984375, "t": 195.56614176432288, "r": 424.5132649739583, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "text": "PatientswithC.difficileinfectionbut nodi", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 182.6590779622396, "t": 179.86354573567712, "r": 355.59326171875, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "text": "PatientswithoutC.difficileinfection", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 140.37689208984375, "t": 162.46331787109375, "r": 147.56486002604166, "b": 155.24859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "?", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 181.390625, "t": 164.58530680338538, "r": 410.9829508463542, "b": 153.55100504557288, "coord_origin": "BOTTOMLEFT"}, "text": "PatientswithC.difficileinfectionanddiarr", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 10, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 11, "kind": "text", "label": "page_header", "bbox": {"l": 282.86789957682294, "t": 811.7879257202148, "r": 295.1297200520833, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 106.97395833333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "04.2", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 112.04782104492188, "t": 773.16796875, "r": 529.3730875651041, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "text": "The scientists suggest that the anti-tox", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 730.7284545898438, "r": 518.3797200520834, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 4 to suggest how this passive", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 703.5671590169271, "r": 535.7154134114584, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 433.22743733723956, "r": 101.9000956217448, "b": 418.79799397786456, "coord_origin": "BOTTOMLEFT"}, "text": "04.3", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 112.47064208984375, "t": 432.37864176432294, "r": 525.5677083333334, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "text": "To be used as passive immunity treatment", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 391.21230061848956, "r": 385.6136067708333, "b": 378.05605061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how the anti-toxin antibody wou", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 376.35850016276044, "r": 535.7154134114584, "b": 361.92905680338544, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 207.1827596028646, "t": 111.96026611328125, "r": 370.3920491536458, "b": 98.37961832682288, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverforthenextquestion", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 557.2793375651041, "t": 149.30710856119788, "r": 565.3129475911459, "b": 138.27276611328125, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 11, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 12, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 771.8947804768881, "r": 512.0373942057291, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "Astudentinvestigatedtheuseofcinnamonoila", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 722.2405497233073, "r": 102.74573771158855, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "text": "05.1", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 720.9673563639323, "r": 505.2722574869792, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "text": "The student added 1o0 mm? of each bacter", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 667.4935709635416, "r": 350.9422200520833, "b": 654.76171875, "coord_origin": "BOTTOMLEFT"}, "text": "Describe the aseptic techniques she shou", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 653.0641276041666, "r": 535.2926025390625, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 62.57765197753906, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 12, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 26.65688069661462, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 13, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 105.70548502604167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 105.70548502604167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 112.47064208984375, "t": 774.0167541503906, "r": 417.3252766927083, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "On each agar plate, the student cut a we", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 743.0359090169271, "r": 533.601318359375, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "text": "The well had a diameter of 6 mm. The stu", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 701.8695780436198, "r": 526.8361409505209, "b": 676.8302612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the minimum depth of the well ", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 675.9814758300781, "r": 338.6803792317708, "b": 663.2496134440104, "coord_origin": "BOTTOMLEFT"}, "text": "Use the following equation in your calcu", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 252.8475341796875, "t": 651.3665568033854, "r": 397.0298258463542, "b": 636.5127156575521, "coord_origin": "BOTTOMLEFT"}, "text": "Volume of a cylinder = \u03c0r2 x I", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 624.2052612304688, "r": 249.4649658203125, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Use 3.14 as the value for \u03c0.", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 599.1659545898438, "r": 211.83380126953125, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "text": "Show your working.", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 584.7365112304688, "r": 535.2926025390625, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 379.6941324869792, "t": 353.44114176432294, "r": 535.7154134114584, "b": 341.55808512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Answer mm", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 291.0550740559896, "r": 390.6875, "b": 277.0500284830729, "coord_origin": "BOTTOMLEFT"}, "text": "Question5 continueson thenextpage", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 13, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 14, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 773.16796875, "r": 354.7476399739583, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "The student kept the plates at 25 \u00b0C for", "furniture": false}, {"page": 14, "kind": "text", "label": "caption", "bbox": {"l": 115.007568359375, "t": 745.1578877766927, "r": 432.546875, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5 shows what one of her plates lo", "furniture": false}, {"page": 14, "kind": "text", "label": "caption", "bbox": {"l": 301.89487711588544, "t": 720.54296875, "r": 347.9824625651042, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 142.913818359375, "t": 692.957275390625, "r": 220.71305338541666, "b": 679.3766377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Bacterial cuture", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 142.913818359375, "t": 679.3766377766927, "r": 199.1491495768229, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "text": "growing on", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 142.49099731445312, "t": 668.3423665364584, "r": 186.4644775390625, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "text": "the agar.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 411.40576171875, "t": 642.8786417643229, "r": 489.6278483072917, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Well containing", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 414.3655192057292, "t": 628.0248209635416, "r": 477.3660074869792, "b": 617.8393351236979, "coord_origin": "BOTTOMLEFT"}, "text": "cinnamon oil", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 413.5198567708333, "t": 571.5802612304688, "r": 506.5406901041667, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "text": "Clearzonewithno", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 413.5198567708333, "t": 560.5459798177083, "r": 493.4332275390625, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "text": "bacterial growth", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 495.18914794921875, "r": 529.7958984375, "b": 470.57419840494794, "coord_origin": "BOTTOMLEFT"}, "text": "The student measured the diameter of the", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 456.14479573567706, "r": 243.96826171875, "b": 444.68609619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1 shows her results.", "furniture": false}, {"page": 14, "kind": "text", "label": "caption", "bbox": {"l": 304.4318033854167, "t": 430.68105061848956, "r": 344.5998942057292, "b": 418.79799397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 14, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 15, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "05.3", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 516.6884358723959, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest exactly what the student added t", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 745.1578877766927, "r": 535.7154134114584, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 553.7556762695312, "r": 106.97395833333333, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "text": "05.4", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 112.04782104492188, "t": 551.2092895507812, "r": 407.1775309244792, "b": 538.901835123698, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Table 1 to show the median and ", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 536.35546875, "r": 535.7154134114584, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 422.61757405598956, "r": 101.9000956217448, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "text": "05.5", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 421.34438069661456, "r": 431.2784016927083, "b": 408.18813069661456, "coord_origin": "BOTTOMLEFT"}, "text": "The mean \u00b1 2 standard deviations include", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 395.03188069661456, "r": 488.359375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "Use this information to consider whether", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 357.26072184244794, "r": 383.49951171875, "b": 343.25567626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Explain your answer, including at least ", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 344.95322672526044, "r": 536.5610758463541, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 121.29701741536462, "r": 370.8148600260417, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverfor thenextquestion", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 170.10243733723962, "r": 569.1183675130209, "b": 157.37058512369788, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 15, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 16, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 106.12831624348958, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "06.1", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 110.77935791015625, "t": 774.0167541503906, "r": 263.41807047526044, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Define genome and proteome.", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 758.3141377766927, "r": 536.1382242838541, "b": 743.8847045898438, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 732.0016377766927, "r": 157.71259562174478, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Genome", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 655.1861165364584, "r": 163.6321004231771, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "text": "Proteome", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 565.214335123698, "r": 533.601318359375, "b": 488.39882405598956, "coord_origin": "BOTTOMLEFT"}, "text": "The classification system used in the ea", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 477.78892008463544, "r": 102.74573771158855, "b": 462.08632405598956, "coord_origin": "BOTTOMLEFT"}, "text": "06.2", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 475.66697184244794, "r": 523.03076171875, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Consider the accuracy and limitations of", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 448.50567626953125, "r": 534.4469401041666, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 16, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 17, "kind": "text", "label": "page_header", "bbox": {"l": 284.1363525390625, "t": 810.9391352335612, "r": 295.1297200520833, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 482.4398600260417, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest why several bacterial species ha", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 759.1629282633463, "r": 535.2926025390625, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 643.7274373372396, "r": 101.9000956217448, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "text": "06.4", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 641.60546875, "r": 495.12451171875, "b": 628.8736165364584, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6 shows an image from an optical ", "furniture": false}, {"page": 17, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 612.7466023763021, "r": 348.4053141276042, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 396.30507405598956, "r": 396.1841634114583, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "text": "This bacterial cell is 2.3 \u03bcm long (excl", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 368.71938069661456, "r": 315.42519124348956, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the magnification of this imag", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 343.68007405598956, "r": 210.9881591796875, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "text": "Showyourworking.", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 330.94822184244794, "r": 535.7154134114584, "b": 316.5187784830729, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 284.98199462890625, "t": 152.70220947265625, "r": 361.5127766927083, "b": 137.42397054036462, "coord_origin": "BOTTOMLEFT"}, "text": "Magnification x", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 558.125, "t": 155.24859619140625, "r": 564.89013671875, "b": 145.91192626953125, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 116.20424397786462, "r": 370.3920491536458, "b": 103.04799397786462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverfor thenextquestion", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 17, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 18, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 504.0037841796875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon monoxide (CO) is released during ", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 746.0066731770834, "r": 433.3924967447917, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7 shows the dissociation curve fo", "furniture": false}, {"page": 18, "kind": "text", "label": "list_item", "bbox": {"l": 115.43039957682292, "t": 719.269785563151, "r": 220.29024251302084, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "text": "not exposed to CO", "furniture": false}, {"page": 18, "kind": "text", "label": "list_item", "bbox": {"l": 123.46400960286458, "t": 707.38671875, "r": 505.2722574869792, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "text": "exposed to CO such that 50% of the oxyge", "furniture": false}, {"page": 18, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 669.6155395507812, "r": 347.9824625651042, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 234.24336751302084, "t": 642.8786417643229, "r": 257.07574462890625, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "text": "100-", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 413.9427083333333, "t": 638.6347045898438, "r": 451.9966634114583, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "text": "No CO", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 239.74005126953125, "t": 607.2294514973959, "r": 256.65293375651044, "b": 593.6488037109375, "coord_origin": "BOTTOMLEFT"}, "text": "75-", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 175.47111002604166, "t": 584.7365112304688, "r": 234.24336751302084, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "text": "Percentage", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 175.8939412434896, "t": 572.4290568033855, "r": 227.90104166666666, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "text": "saturation", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 239.74005126953125, "t": 571.1558634440105, "r": 256.2301025390625, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 414.788330078125, "t": 570.3070678710938, "r": 473.5605875651042, "b": 558.848409016927, "coord_origin": "BOTTOMLEFT"}, "text": "50%COHb", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 175.47111002604166, "t": 563.0923665364583, "r": 214.3707275390625, "b": 544.8433634440105, "coord_origin": "BOTTOMLEFT"}, "text": "with O2", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 239.74005126953125, "t": 535.9310709635417, "r": 256.65293375651044, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "text": "25-", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 255.38446044921875, "t": 489.24761962890625, "r": 260.4583333333333, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 406.3319091796875, "t": 491.79396565755206, "r": 420.7078450520833, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 310.351318359375, "t": 481.18410237630206, "r": 361.0899658203125, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "text": "pO2 / kPa", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 451.05202229817706, "r": 533.1785074869791, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Using Figure 7, what can you conclude ab", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 413.70526123046875, "r": 218.1761271158854, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Explain your answer.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 400.97340901692706, "r": 536.1382242838541, "b": 386.54396565755206, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 18, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 19, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 106.97395833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "07.2", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 535.7154134114584, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "The World Health Organisation (WHO) sugg", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 735.3967997233073, "r": 394.9156901041667, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "WHO recommends that people should not be", "furniture": false}, {"page": 19, "kind": "text", "label": "list_item", "bbox": {"l": 115.43039957682292, "t": 709.0842997233073, "r": 352.6335042317708, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "text": "air with > 10 mg m-3 CO for more than 8 ", "furniture": false}, {"page": 19, "kind": "text", "label": "list_item", "bbox": {"l": 116.69886271158855, "t": 695.9280497233073, "r": 350.5194091796875, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "text": "air with > 30 mg m-3 CO for more than 1 ", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 670.4643351236979, "r": 501.4668375651042, "b": 645.8494262695312, "coord_origin": "BOTTOMLEFT"}, "text": "Scientists have used a mathematical mode", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 631.4199829101562, "r": 293.4384358723958, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "text": "Table2showsthescientists'results.", "furniture": false}, {"page": 19, "kind": "text", "label": "caption", "bbox": {"l": 304.85463460286456, "t": 606.3806762695312, "r": 345.022705078125, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 455.29600016276044, "r": 487.5137125651042, "b": 430.68105061848956, "coord_origin": "BOTTOMLEFT"}, "text": "The scientists suggest that the WHO reco", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 417.52480061848956, "r": 284.98199462890625, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Evaluate the scientists'conclusion.", "furniture": false}, {"page": 19, "kind": "text", "label": "section_header", "bbox": {"l": 207.1827596028646, "t": 125.54091389973962, "r": 370.8148600260417, "b": 111.96026611328125, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for the next question", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 404.79294840494794, "r": 535.7154134114584, "b": 390.36354573567706, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 70.36960856119788, "r": 538.2523600260416, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 558.125, "t": 177.31715901692712, "r": 564.89013671875, "b": 167.55605061848962, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 20, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "08.1", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "08.1", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 512.8830159505209, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Scientists investigated a drug called Mi", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 733.2748209635416, "r": 509.9232991536458, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8 shows drawings of cancer cells ", "furniture": false}, {"page": 20, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 706.113525390625, "r": 267.64630126953125, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7sampletreatedwithMiTMAB", "furniture": false}, {"page": 20, "kind": "text", "label": "list_item", "bbox": {"l": 122.19554646809895, "t": 693.8060709635416, "r": 200.8404337565104, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "text": "control sample.", "furniture": false}, {"page": 20, "kind": "text", "label": "caption", "bbox": {"l": 301.89487711588544, "t": 668.7667643229166, "r": 347.9824625651042, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 230.4379679361979, "t": 642.0298665364584, "r": 239.31722005208334, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 415.6339925130208, "t": 642.0298665364584, "r": 424.9360758463542, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 487.97442626953125, "r": 457.9161783854167, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "The cells in drawing A can be identified", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 463.78387451171875, "r": 176.73958333333334, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why.", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 449.77886962890625, "r": 535.2926025390625, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 20, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "08.2", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 774.0167541503906, "r": 473.9833984375, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "MiTMAB acts as a non-competitive inhibit", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 747.2798563639323, "r": 418.59375, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest howMiTMAB can cause dynamin to b", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 734.1236063639323, "r": 535.7154134114584, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 440.01776123046875, "r": 390.6875, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Question8continueson thenextpage", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 23.68609619140625, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 21, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 22, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 316.2708333333333, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "When active, dynamin has two functions:", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 745.582285563151, "r": 241.85416666666666, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "it stimulates cytokinesis", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 222.40435791015625, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7it inhibits cell death.", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 702.7183736165365, "r": 486.6680908203125, "b": 689.9865112304688, "coord_origin": "BOTTOMLEFT"}, "text": "The scientists treated actively growing ", "furniture": false}, {"page": 22, "kind": "text", "label": "section_header", "bbox": {"l": 114.16192626953125, "t": 678.9522399902344, "r": 194.9209187825521, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "text": "They incubated:", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 652.2153523763021, "r": 392.3787841796875, "b": 639.9078776041666, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7one sample of 2500 cellswithout MiTMAB ", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 639.0591023763021, "r": 502.3125, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7eight samples, each with 2500 cells and", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 614.019775390625, "r": 481.17138671875, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "text": "After 72 hours, the scientists measured ", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 588.1316731770834, "r": 298.93511962890625, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9 shows the scientists' results.", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 563.5167643229167, "r": 513.3058675130209, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "text": "A negative value for proportion of contr", "furniture": false}, {"page": 22, "kind": "text", "label": "caption", "bbox": {"l": 301.89487711588544, "t": 522.7748209635417, "r": 347.9824625651042, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 176.3167521158854, "t": 493.06715901692706, "r": 194.9209187825521, "b": 478.63771565755206, "coord_origin": "BOTTOMLEFT"}, "text": "1.2", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 176.3167521158854, "t": 463.78387451171875, "r": 195.34375, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "text": "1.0", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 176.3167521158854, "t": 434.92502848307294, "r": 194.49810791015625, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "0.8", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 175.04829915364584, "t": 406.49053955078125, "r": 195.76656087239584, "b": 395.03188069661456, "coord_origin": "BOTTOMLEFT"}, "text": "0.6", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 116.27604166666667, "t": 389.93914794921875, "r": 169.97442626953125, "b": 375.93410237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Proportion", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 116.69886271158855, "t": 376.78289794921875, "r": 165.3233846028646, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "text": "of control", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 176.3167521158854, "t": 378.05605061848956, "r": 194.9209187825521, "b": 366.59739176432294, "coord_origin": "BOTTOMLEFT"}, "text": "0.4", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 364.47544352213544, "r": 152.63872273763022, "b": 352.59234619140625, "coord_origin": "BOTTOMLEFT"}, "text": "growth", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 175.8939412434896, "t": 350.47039794921875, "r": 195.34375, "b": 337.31414794921875, "coord_origin": "BOTTOMLEFT"}, "text": "0.2", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 175.8939412434896, "t": 322.0359090169271, "r": 194.9209187825521, "b": 309.3040568033854, "coord_origin": "BOTTOMLEFT"}, "text": "0.0", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 169.55160522460938, "t": 293.1770222981771, "r": 195.34375, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "text": "-0.2", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 169.1287841796875, "t": 265.1669718424479, "r": 196.6122029622396, "b": 253.28387451171875, "coord_origin": "BOTTOMLEFT"}, "text": "-0.4", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 189.8470662434896, "t": 255.40586344401038, "r": 205.06864420572916, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 290.4786783854167, "t": 255.40586344401038, "r": 311.6197916666667, "b": 243.09840901692712, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 391.1103108723958, "t": 255.40586344401038, "r": 418.1708984375, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "text": "1000", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 255.83026123046875, "r": 525.1448567708334, "b": 243.94720458984375, "coord_origin": "BOTTOMLEFT"}, "text": "10000", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 260.8811442057292, "t": 241.40081787109375, "r": 439.7348225911458, "b": 227.82017008463538, "coord_origin": "BOTTOMLEFT"}, "text": "Concentration of MiTMAB / \u03bcg dm-3", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 22, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 23, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "08.3", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 774.0167541503906, "r": 453.26513671875, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "Use all the information given to explain", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 760.4361114501953, "r": 536.1382242838541, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 490.94517008463544, "r": 104.43702189127605, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "08.4", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 110.35652669270833, "t": 492.21836344401044, "r": 409.7144775390625, "b": 473.12058512369794, "coord_origin": "BOTTOMLEFT"}, "text": "0.01 dm? of MiTMAB solution was added to", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 462.93511962890625, "r": 533.601318359375, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the increase in mass of MiTMAB", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 424.73952229817706, "r": 211.41097005208334, "b": 409.88572184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Show your working.", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 410.73447672526044, "r": 535.7154134114584, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 553.0511067708334, "t": 238.00567626953125, "r": 569.5411783854166, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 322.6131591796875, "t": 231.63975016276038, "r": 361.5127766927083, "b": 219.75665283203125, "coord_origin": "BOTTOMLEFT"}, "text": "Answer", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 520.4938151041666, "t": 230.36655680338538, "r": 535.7154134114584, "b": 218.48350016276038, "coord_origin": "BOTTOMLEFT"}, "text": "\u03bcg", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 207.1827596028646, "t": 156.52178955078125, "r": 369.9691975911458, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for the next question", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 63.00047302246094, "t": 25.80808512369788, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "page_footer", "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 419.0165608723958, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Dengue fever is a human disease caused b", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 745.582285563151, "r": 496.8157958984375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "Scientists designed an ELiSA test to det", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 707.38671875, "r": 508.6548258463542, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10 shows a diagram of this test a", "furniture": false}, {"page": 24, "kind": "text", "label": "caption", "bbox": {"l": 298.93511962890625, "t": 682.7717997233073, "r": 350.5194091796875, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 325.15008544921875, "t": 625.9028523763021, "r": 331.06960042317706, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "text": "X", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 609.7758382161459, "r": 267.2234700520833, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Diffusion from X", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 598.3171590169271, "r": 255.80729166666666, "b": 585.160909016927, "coord_origin": "BOTTOMLEFT"}, "text": "of anti-human", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 186.8873087565104, "t": 586.0097045898438, "r": 253.27034505208334, "b": 574.1266276041667, "coord_origin": "BOTTOMLEFT"}, "text": "antibody with", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 186.8873087565104, "t": 572.8534545898438, "r": 273.1429850260417, "b": 561.8191731770833, "coord_origin": "BOTTOMLEFT"}, "text": "enzyme attached", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 383.0767008463542, "t": 559.2728068033855, "r": 462.1444091796875, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Diffusion from Y", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 383.0767008463542, "t": 546.965352376302, "r": 438.4663899739583, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "text": "of patient's", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 382.2310384114583, "t": 535.5066731770833, "r": 449.882568359375, "b": 521.5016276041667, "coord_origin": "BOTTOMLEFT"}, "text": "blood sample", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 459.96433512369794, "r": 512.8830159505209, "b": 434.92502848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 11 shows the negative and positiv", "furniture": false}, {"page": 24, "kind": "text", "label": "caption", "bbox": {"l": 298.93511962890625, "t": 423.04197184244794, "r": 350.0965983072917, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 11", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 221.98152669270834, "t": 393.75868733723956, "r": 271.02886962890625, "b": 377.63169352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Negative", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 380.9625651041667, "t": 392.90989176432294, "r": 425.35888671875, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Positive", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 24, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 104.85984293619792, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "09.1", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 523.4535725911459, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest what is on the test at line T an", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 747.2798563639323, "r": 534.8697916666666, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 555.0288492838542, "r": 101.9000956217448, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "text": "09.2", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 552.9068806966145, "r": 322.6131591796875, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "text": "A line at C shows that the test has work", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 528.7163492838542, "r": 426.2045491536458, "b": 514.2869262695312, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest one reason why a line at C shows", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 515.9844970703125, "r": 535.7154134114584, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 374.66090901692706, "r": 390.6875, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Question9continuesonthenextpage", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 240.16288248697916, "t": 691.684092203776, "r": 410.1372884114583, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Inject rabbit with human antibodies", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 246.0823771158854, "t": 641.60546875, "r": 404.640625, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "text": "Collect blood samplefromrabbit", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 206.75992838541666, "t": 593.2244262695312, "r": 443.9630533854167, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "text": "FuseBcellsfromblood samplewithcancer cel", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 194.49810791015625, "t": 541.8725992838542, "r": 456.647705078125, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "text": "Select fused cells that produce anti-hum", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 192.38399251302084, "t": 491.79396565755206, "r": 457.9161783854167, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Culture these cells and extract the secr", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 252.00189208984375, "t": 442.56414794921875, "r": 397.45263671875, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Add enzymetotheantibodies", "furniture": false}, {"page": 26, "kind": "text", "label": "caption", "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 529.7958984375, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 12 shows a flowchart of how the a", "furniture": false}, {"page": 26, "kind": "text", "label": "caption", "bbox": {"l": 299.3579508463542, "t": 731.152842203776, "r": 350.9422200520833, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 12", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 240.16288248697916, "t": 691.684092203776, "r": 410.1372884114583, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Inject rabbit with human antibodies", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 246.0823771158854, "t": 641.60546875, "r": 404.640625, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "text": "Collect blood samplefromrabbit", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 206.75992838541666, "t": 593.2244262695312, "r": 443.9630533854167, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "text": "FuseBcellsfromblood samplewithcancer cel", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 194.49810791015625, "t": 541.8725992838542, "r": 456.647705078125, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "text": "Select fused cells that produce anti-hum", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 192.38399251302084, "t": 491.79396565755206, "r": 457.9161783854167, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Culture these cells and extract the secr", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 252.00189208984375, "t": 442.56414794921875, "r": 397.45263671875, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Add enzymetotheantibodies", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 406.06614176432294, "r": 103.16855875651042, "b": 390.78794352213544, "coord_origin": "BOTTOMLEFT"}, "text": "09.3", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 404.36855061848956, "r": 517.1112467447916, "b": 391.63669840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest why the fused cells allow contin", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 391.63669840494794, "r": 535.7154134114584, "b": 378.48044840494794, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 200.65887451171875, "r": 103.5913798014323, "b": 184.95627848307288, "coord_origin": "BOTTOMLEFT"}, "text": "09.4", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 198.11252848307288, "r": 434.6609700520833, "b": 184.53188069661462, "coord_origin": "BOTTOMLEFT"}, "text": "Evaluate the ethics of theproduction pro", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 184.95627848307288, "r": 535.7154134114584, "b": 170.10243733723962, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 80.75899251302083, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 26, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 26.65688069661462, "r": 539.0979817708334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 27, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "27", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 775.7143351236979, "r": 390.6875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "Question 9 continues on the next page", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 398.7211100260417, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 27.08127848307288, "r": 81.1818135579427, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 762.1336924235026, "r": 520.4938151041666, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "the same symptoms. Early identification ", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 722.2405497233073, "r": 505.2722574869792, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "text": "Scientists compared the effectiveness of", "furniture": false}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 117.12168375651042, "t": 695.503651936849, "r": 533.601318359375, "b": 670.4643351236979, "coord_origin": "BOTTOMLEFT"}, "text": "Laboratory-basedtest-apatient'sbloodsamp", "furniture": false}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 670.4643351236979, "r": 313.3110758463542, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Current test used in the doctor's clinic", "furniture": false}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 657.3080851236979, "r": 531.4871826171875, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "text": "New test to be used in the doctor's clin", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 619.1125284830729, "r": 328.9554850260417, "b": 607.2294514973959, "coord_origin": "BOTTOMLEFT"}, "text": "Thescientists'resultsareshowninTable3.", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 593.2244262695312, "r": 509.07763671875, "b": 568.1850992838542, "coord_origin": "BOTTOMLEFT"}, "text": "A blood sample from each patient with co", "furniture": false}, {"page": 28, "kind": "text", "label": "section_header", "bbox": {"l": 304.0089925130208, "t": 555.4532470703125, "r": 345.8683675130208, "b": 542.2969970703125, "coord_origin": "BOTTOMLEFT"}, "text": "Table 3", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 28, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "09.5", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 515.4199625651041, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "text": "The scientists recommend that the new te", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 735.3967997233073, "r": 408.8688151041667, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "text": "Discuss this recommendation. Use all the", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 721.816151936849, "r": 535.2926025390625, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 453.17401123046875, "r": 102.32291666666667, "b": 437.04697672526044, "coord_origin": "BOTTOMLEFT"}, "text": "09.6", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 436.62261962890625, "r": 261.30397542317706, "b": 425.16392008463544, "coord_origin": "BOTTOMLEFT"}, "text": "capillaries into the tissue fluid.", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 412.00767008463544, "r": 468.0639241536458, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how this would affect the return", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 399.27581787109375, "r": 536.5610758463541, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 207.1827596028646, "t": 162.88771565755212, "r": 370.3920491536458, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverforthenextquestion", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 25.80808512369788, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 249.88873291015625, "r": 568.6955159505209, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 29, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 797.3584899902344, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 106.97395833333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "10.1", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 112.47064208984375, "t": 773.16796875, "r": 429.164306640625, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how a quaternary protein is for", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 743.8847045898438, "r": 390.6875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Do not include the process of translatio", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 732.426035563151, "r": 535.2926025390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 81.1818135579427, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.7193756103516, "r": 585.1855875651041, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Do not write outsidethe box", "furniture": true}, {"page": 30, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 812.6367162068685, "r": 296.398193359375, "b": 798.2072804768881, "coord_origin": "BOTTOMLEFT"}, "text": "31", "furniture": true}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 438.4663899739583, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "10.2 Describe the structure of DNA and ", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 759.5873209635416, "r": 536.1382242838541, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 185.1960245768229, "t": 110.26275634765625, "r": 393.2244059244792, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Question10 continueson the nextpage", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 56.36456298828125, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 26.23248291015625, "r": 79.4905293782552, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "31", "furniture": true}, {"page": 31, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 32, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "10.3", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 457.9161783854167, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Mutation can result in an increase in ge", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 747.7042541503906, "r": 528.1046142578125, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Describe and explain the other processes", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 720.1185709635416, "r": 535.7154134114584, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 231.28361002604166, "t": 244.37160237630212, "r": 346.7139892578125, "b": 232.91290283203125, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOFQUESTIONS", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 313.9723917643229, "r": 569.9639892578125, "b": 299.96734619140625, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 32, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 539.5208333333334, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 33, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "33", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "33", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 445.11049397786456, "r": 398.7211100260417, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 33, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 34, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "34", "furniture": true}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 54.96685282389323, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 774.8655446370443, "r": 584.7627766927084, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 34, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 35, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "35", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.65151468912761, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 541.2121175130209, "t": 775.2899424235026, "r": 580.5345458984375, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 35, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 36, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "36", "furniture": true}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 36, "kind": "text", "label": "section_header", "bbox": {"l": 184.773193359375, "t": 771.0459899902344, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page, if required. Write the ", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 36, "kind": "text", "label": "section_header", "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Copyrightinformation", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "text": "For confidentialitypurposes,all acknowle", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "CopyrightTeam.", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Copyright?2023AQAand itslicensors.Allrig", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 65.11458333333333, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 380.5397542317708, "t": 43.63271077473962, "r": 509.5004475911458, "b": 33.87156168619788, "coord_origin": "BOTTOMLEFT"}, "text": "236A7402/1", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 775.2899424235026, "r": 584.7627766927084, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 36, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun23/7402/1", "furniture": true}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 38.75285720825195, "t": 797.5618782043457, "r": 168.73263549804688, "b": 750.7547225952148, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 41.738304138183594, "t": 53.39813232421875, "r": 232.82923889160156, "b": 17.52978515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 43.79362869262695, "t": 53.08154296875, "r": 99.09292602539062, "b": 17.36419677734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 545.0670776367188, "t": 223.08392333984375, "r": 576.2114868164062, "b": 181.8350830078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 43.670082092285156, "t": 53.06951904296875, "r": 98.925537109375, "b": 17.565185546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 174.68348693847656, "t": 678.4638214111328, "r": 473.4761657714844, "b": 517.2424621582031, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 113.6479721069336, "t": 446.2611999511719, "r": 535.0597534179688, "b": 202.7186279296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 43.827579498291016, "t": 53.08203125, "r": 99.175048828125, "b": 17.63958740234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 545.1842651367188, "t": 258.13323974609375, "r": 576.4935913085938, "b": 218.5069580078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 39.210819244384766, "t": 788.9965972900391, "r": 541.126708984375, "b": 74.01202392578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 43.505149841308594, "t": 53.05731201171875, "r": 99.4954605102539, "b": 16.613525390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 83.32060241699219, "t": 775.6388702392578, "r": 104.85667419433594, "b": 759.4894866943359, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 43.60575485229492, "t": 53.17462158203125, "r": 99.0291748046875, "b": 17.504150390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 185.11962890625, "t": 665.8579711914062, "r": 461.7964782714844, "b": 414.4193115234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 47.08686065673828, "t": 390.10565185546875, "r": 105.59192657470703, "b": 372.57489013671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 43.7526969909668, "t": 53.21405029296875, "r": 99.15525817871094, "b": 17.678466796875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 133.25204467773438, "t": 638.6665191650391, "r": 515.5753784179688, "b": 405.51715087890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 544.9602661132812, "t": 183.20513916015625, "r": 576.623291015625, "b": 141.35186767578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 43.66440200805664, "t": 53.15325927734375, "r": 99.01779174804688, "b": 17.54901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 43.81245040893555, "t": 53.08746337890625, "r": 99.12252807617188, "b": 17.7144775390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 40.93195724487305, "t": 577.9063415527344, "r": 537.04541015625, "b": 81.12896728515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 43.6055793762207, "t": 53.30047607421875, "r": 99.07133483886719, "b": 17.55902099609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 43.76731872558594, "t": 53.1451416015625, "r": 99.2094497680664, "b": 17.8843994140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 545.2431030273438, "t": 174.44384765625, "r": 576.5680541992188, "b": 134.07025146484375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 43.73418426513672, "t": 53.0821533203125, "r": 99.10938262939453, "b": 17.3834228515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 48.139076232910156, "t": 775.6809158325195, "r": 103.93136596679688, "b": 759.4694137573242, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 43.70768356323242, "t": 53.1370849609375, "r": 99.12738037109375, "b": 17.514892578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 43.5362548828125, "t": 53.17645263671875, "r": 98.98401641845703, "b": 17.7249755859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 142.4031219482422, "t": 719.0232009887695, "r": 505.2492980957031, "b": 511.989501953125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 43.770362854003906, "t": 53.152099609375, "r": 99.1795425415039, "b": 17.470947265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 43.74127197265625, "t": 53.10418701171875, "r": 99.16690063476562, "b": 17.5113525390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 43.769287109375, "t": 53.2208251953125, "r": 99.2181396484375, "b": 17.799560546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 223.7501678466797, "t": 584.8180236816406, "r": 425.0548400878906, "b": 410.3366394042969, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 46.14360427856445, "t": 776.3026504516602, "r": 105.09618377685547, "b": 759.3049163818359, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 43.57915496826172, "t": 53.1851806640625, "r": 99.00019836425781, "b": 17.6298828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 174.9173583984375, "t": 642.5787658691406, "r": 473.54656982421875, "b": 467.1842956542969, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 45.22420883178711, "t": 776.5735702514648, "r": 105.89710998535156, "b": 758.970817565918, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 43.63395309448242, "t": 53.15869140625, "r": 98.9942855834961, "b": 17.73187255859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 545.2316284179688, "t": 201.66522216796875, "r": 575.9176025390625, "b": 161.1776123046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 45.190303802490234, "t": 776.6559371948242, "r": 105.86597442626953, "b": 758.5201568603516, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 43.63211441040039, "t": 53.179931640625, "r": 99.04114532470703, "b": 17.34979248046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 150.9450225830078, "t": 617.3224029541016, "r": 313.2983703613281, "b": 503.0533142089844, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 334.0459899902344, "t": 617.4680633544922, "r": 496.58880615234375, "b": 502.9727478027344, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 43.76779556274414, "t": 53.100830078125, "r": 99.30591583251953, "b": 17.63604736328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 43.62015914916992, "t": 53.1810302734375, "r": 99.0409927368164, "b": 17.2210693359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 115.98562622070312, "t": 490.761474609375, "r": 525.6766967773438, "b": 228.09912109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 43.774227142333984, "t": 53.1300048828125, "r": 99.13195037841797, "b": 17.39892578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 45.659908294677734, "t": 776.9897079467773, "r": 81.86409759521484, "b": 758.8364791870117, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 43.52434539794922, "t": 53.19195556640625, "r": 99.01769256591797, "b": 17.4388427734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 186.83546447753906, "t": 681.4509887695312, "r": 461.82470703125, "b": 475.6357116699219, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 208.346923828125, "t": 394.1239929199219, "r": 439.4477844238281, "b": 196.01318359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 43.770870208740234, "t": 53.0679931640625, "r": 99.18653869628906, "b": 17.40289306640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 181.8665771484375, "t": 702.0701293945312, "r": 466.7599792480469, "b": 421.53448486328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 43.65751266479492, "t": 53.2117919921875, "r": 99.11640167236328, "b": 17.35589599609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 43.4676628112793, "t": 53.09393310546875, "r": 99.56715393066406, "b": 16.8975830078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 43.65123748779297, "t": 53.13800048828125, "r": 99.01586151123047, "b": 17.35797119140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 43.823516845703125, "t": 53.09564208984375, "r": 99.14620971679688, "b": 17.60443115234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 545.1295776367188, "t": 274.22503662109375, "r": 576.8034057617188, "b": 232.59393310546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 43.74403762817383, "t": 53.09490966796875, "r": 99.15995025634766, "b": 17.37774658203125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 43.771995544433594, "t": 53.10174560546875, "r": 99.37220764160156, "b": 17.5792236328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 43.77596664428711, "t": 53.02545166015625, "r": 99.17550659179688, "b": 17.2506103515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 544.9116821289062, "t": 337.0838623046875, "r": 576.8983764648438, "b": 296.21673583984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 33, "kind": "picture", "label": "picture", "bbox": {"l": 43.492340087890625, "t": 52.9921875, "r": 99.49662780761719, "b": 16.61517333984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 34, "kind": "picture", "label": "picture", "bbox": {"l": 43.72754669189453, "t": 53.10546875, "r": 99.3370132446289, "b": 17.23223876953125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 35, "kind": "picture", "label": "picture", "bbox": {"l": 43.70325469970703, "t": 53.17596435546875, "r": 99.36039733886719, "b": 16.9381103515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 36, "kind": "picture", "label": "picture", "bbox": {"l": 43.66989517211914, "t": 53.25164794921875, "r": 99.0889892578125, "b": 17.10797119140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 36, "kind": "picture", "label": "picture", "bbox": {"l": 365.30670166015625, "t": 70.7662353515625, "r": 529.5682373046875, "b": 34.24615478515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "table", "label": "table", "bbox": {"l": 443.3661193847656, "t": 404.91436767578125, "r": 544.3709106445312, "b": 170.28326416015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 14, "kind": "table", "label": "table", "bbox": {"l": 117.84334564208984, "t": 406.4332580566406, "r": 530.4790649414062, "b": 130.2188720703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "table", "label": "table", "bbox": {"l": 117.88717651367188, "t": 582.575439453125, "r": 530.2239990234375, "b": 468.1828918457031, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 28, "kind": "table", "label": "table", "bbox": {"l": 117.90519714355469, "t": 530.8365783691406, "r": 530.6185913085938, "b": 384.3605651855469, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}]} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/page_roles.json b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/page_roles.json new file mode 100644 index 0000000..cf79dad --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/page_roles.json @@ -0,0 +1,256 @@ +{ + "pages": { + "1": { + "role": "cover", + "chars": 792, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "2": { + "role": "question", + "chars": 353, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "3": { + "role": "question", + "chars": 394, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "4": { + "role": "question", + "chars": 353, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "5": { + "role": "blank", + "chars": 123, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "6": { + "role": "question", + "chars": 490, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "7": { + "role": "question", + "chars": 861, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "8": { + "role": "question", + "chars": 499, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "9": { + "role": "question", + "chars": 554, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "10": { + "role": "continuation", + "chars": 612, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "11": { + "role": "question", + "chars": 459, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "12": { + "role": "question", + "chars": 338, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "13": { + "role": "question", + "chars": 400, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "14": { + "role": "continuation", + "chars": 379, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "15": { + "role": "question", + "chars": 461, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "16": { + "role": "question", + "chars": 616, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "17": { + "role": "question", + "chars": 353, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "18": { + "role": "continuation", + "chars": 443, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "19": { + "role": "question", + "chars": 621, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "20": { + "role": "question", + "chars": 329, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "21": { + "role": "question", + "chars": 203, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "22": { + "role": "continuation", + "chars": 606, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "23": { + "role": "question", + "chars": 351, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "24": { + "role": "continuation", + "chars": 469, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "25": { + "role": "question", + "chars": 268, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "26": { + "role": "question", + "chars": 718, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "27": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "28": { + "role": "continuation", + "chars": 618, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "29": { + "role": "question", + "chars": 356, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "30": { + "role": "question", + "chars": 157, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "31": { + "role": "question", + "chars": 150, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "32": { + "role": "question", + "chars": 223, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "33": { + "role": "blank", + "chars": 127, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "34": { + "role": "blank", + "chars": 127, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "35": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "36": { + "role": "appendix", + "chars": 430, + "margins_enabled": true, + "source": "auto", + "confirmed": false + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/report.md b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/report.md new file mode 100644 index 0000000..50a77c1 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/report.md @@ -0,0 +1,15 @@ +# AQA A-level Biology 7402/1 2023 Jun (image-only OCR baseline) + +- **slug:** `b1-aqa-biology-7402-1-2023jun` · **board:** aqa · **level:** A-level · **path:** B1 image-only OCR (RapidOCR margin-pass) +- **questions/parts:** 10 / 36 +- **marks:** None/None +- **coverage vs GT:** 92.3% (missed ['02.3', '07.1', '89.6']) +- **G6 verdict:** warn +- **answer-region count:** 199 + +**Flags (human-review hints):** +- [info] C1_marks_sum: no official max available to check the sum against +- [warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks — unread/garbled mark tokens +- [warn] C5_coverage: 71.4% vs GT (30/42); missed ['01.4', '02.3', '02.4', '04.4', '04.5', '07.1', '07.3', '08.5', '11.1', '11.2'] + +**Artifacts:** `structured.json`, `validate.json`, `furniture.json`, `bands.json`, `page_roles.json`, `template.json`, `overlays/` (0 images) diff --git a/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/structured.json b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/structured.json new file mode 100644 index 0000000..fb87a84 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/structured.json @@ -0,0 +1,3397 @@ +{ + "board": "aqa", + "paper_code": "7402/1", + "front_matter": { + "exam_board": "AQA", + "paper_code": "7402/1", + "qualification": "ALEVEL", + "subject": "Biology", + "time_allowed": "2 hours", + "session": "Jun 2023" + }, + "path": "aqa-docling+rapidocr (v1)", + "pages": [], + "questions": [ + { + "question": "01", + "parts": [ + { + "label": "01.1", + "page": 2, + "bbox": { + "l": 49.04734802246094, + "t": 738.7919616699219, + "r": 102.32291666666667, + "b": 723.5137329101562, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.2", + "page": 2, + "bbox": { + "l": 48.62452697753906, + "t": 493.91595458984375, + "r": 107.3967793782552, + "b": 478.21331787109375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.3", + "page": 2, + "bbox": { + "l": 48.62452697753906, + "t": 286.81109619140625, + "r": 102.32291666666667, + "b": 270.6841023763021, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "02", + "parts": [ + { + "label": "02.1", + "page": 3, + "bbox": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 528.5274658203125, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.2", + "page": 4, + "bbox": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 104.43702189127605, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "03", + "parts": [ + { + "label": "03.1", + "page": 6, + "bbox": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 104.43702189127605, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": null, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.2", + "page": 6, + "bbox": { + "l": 49.89299011230469, + "t": 280.4451700846354, + "r": 104.85984293619792, + "b": 267.2889200846354, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.3", + "page": 7, + "bbox": { + "l": 48.201700846354164, + "t": 389.09035237630206, + "r": 102.32291666666667, + "b": 373.38771565755206, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.4", + "page": 8, + "bbox": { + "l": 48.62452697753906, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.5", + "page": 8, + "bbox": { + "l": 49.04734802246094, + "t": 529.1407470703125, + "r": 101.47727457682292, + "b": 515.1357014973958, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "04", + "parts": [ + { + "label": "04.1", + "page": 9, + "bbox": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 105.2826639811198, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.2", + "page": 11, + "bbox": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 106.97395833333333, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.3", + "page": 11, + "bbox": { + "l": 49.89299011230469, + "t": 433.22743733723956, + "r": 101.9000956217448, + "b": 418.79799397786456, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "05", + "parts": [ + { + "label": "05.1", + "page": 12, + "bbox": { + "l": 49.04734802246094, + "t": 722.2405497233073, + "r": 102.74573771158855, + "b": 708.659901936849, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.2", + "page": 13, + "bbox": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 105.70548502604167, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.3", + "page": 15, + "bbox": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.4", + "page": 15, + "bbox": { + "l": 49.04734802246094, + "t": 553.7556762695312, + "r": 106.97395833333333, + "b": 538.4774373372395, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.5", + "page": 15, + "bbox": { + "l": 49.04734802246094, + "t": 422.61757405598956, + "r": 101.9000956217448, + "b": 408.61252848307294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "06", + "parts": [ + { + "label": "06.1", + "page": 16, + "bbox": { + "l": 49.89299011230469, + "t": 775.2899424235026, + "r": 106.12831624348958, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.2", + "page": 16, + "bbox": { + "l": 48.201700846354164, + "t": 477.78892008463544, + "r": 102.74573771158855, + "b": 462.08632405598956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.3", + "page": 17, + "bbox": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.4", + "page": 17, + "bbox": { + "l": 49.47016906738281, + "t": 643.7274373372396, + "r": 101.9000956217448, + "b": 629.2980143229166, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "07", + "parts": [ + { + "label": "07.2", + "page": 19, + "bbox": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 106.97395833333333, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": true, + "extended": false + } + ] + }, + { + "question": "08", + "parts": [ + { + "label": "08.1", + "page": 20, + "bbox": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 103.5913798014323, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.2", + "page": 21, + "bbox": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.3", + "page": 23, + "bbox": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.4", + "page": 23, + "bbox": { + "l": 49.47016906738281, + "t": 490.94517008463544, + "r": 104.43702189127605, + "b": 476.51572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "09", + "parts": [ + { + "label": "09.1", + "page": 25, + "bbox": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 104.85984293619792, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "09.2", + "page": 25, + "bbox": { + "l": 50.31581115722656, + "t": 555.0288492838542, + "r": 101.9000956217448, + "b": 540.5994262695312, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "09.3", + "page": 26, + "bbox": { + "l": 49.89299011230469, + "t": 406.06614176432294, + "r": 103.16855875651042, + "b": 390.78794352213544, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "09.4", + "page": 26, + "bbox": { + "l": 49.04734802246094, + "t": 200.65887451171875, + "r": 103.5913798014323, + "b": 184.95627848307288, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "09.5", + "page": 29, + "bbox": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "09.6", + "page": 29, + "bbox": { + "l": 48.201700846354164, + "t": 453.17401123046875, + "r": 102.32291666666667, + "b": 437.04697672526044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "10", + "parts": [ + { + "label": "10.1", + "page": 30, + "bbox": { + "l": 49.47016906738281, + "t": 774.441151936849, + "r": 106.97395833333333, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "10.2", + "page": 31, + "bbox": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 438.4663899739583, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "10.3", + "page": 32, + "bbox": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + } + ] + } + ], + "regions": [ + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 41.01373036702474, + "t": 555.0288492838542, + "r": 150.52461751302084, + "b": 496.03794352213544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A-level BIOLOGY" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 408.18813069661456, + "r": 92.59801228841145, + "b": 395.45627848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Materials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 379.75364176432294, + "r": 231.28361002604166, + "b": 368.71938069661456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7arulerwithmillimetremeasurements" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 367.44618733723956, + "r": 156.44412231445312, + "b": 355.56313069661456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a scientific calculator." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 341.98248291015625, + "r": 109.0880635579427, + "b": 328.4018351236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Instructions" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 327.9774373372396, + "r": 231.28361002604166, + "b": 313.9723917643229, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Use black ink or black ball-point pen." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 300.8161417643229, + "r": 158.13541666666666, + "b": 287.2354939778646, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Answer all questions." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 314.39678955078125, + "r": 239.31722005208334, + "b": 299.96734619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Fill in the boxes at the top of this page." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 286.81109619140625, + "r": 385.6136067708333, + "b": 260.49859619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You must answer the questions in the spaces provided. Do not write outside the b" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 260.0741984049479, + "r": 424.5132649739583, + "b": 233.76169840494788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7If you need extra space for your answer(s), use the lined pages at the end of t" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 233.76169840494788, + "r": 161.09516398111978, + "b": 220.60544840494788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Show all your working." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 220.60544840494788, + "r": 402.9493408203125, + "b": 195.56614176432288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be ma" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 181.56109619140625, + "r": 106.12831624348958, + "b": 168.82924397786462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Information" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 166.28289794921875, + "r": 300.20359293619794, + "b": 155.24859619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Themarksforthequestionsareshowninbrackets." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.7452646891276, + "t": 152.70220947265625, + "r": 246.0823771158854, + "b": 141.66794840494788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7The maximum markfor thispaperis91." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 402.5264892578125, + "t": 438.74456787109375, + "r": 545.4403076171875, + "b": 423.04197184244794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Time allowed: 2 hours" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 316.2708333333333, + "t": 20.71531168619788, + "r": 364.0497233072917, + "b": 12.227437337239621, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/E9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 485.8224283854167, + "t": 35.14475504557288, + "r": 550.93701171875, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 2, + "bbox": { + "l": 285.4048258463542, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 2, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 3, + "bbox": { + "l": 302.3177083333333, + "t": 707.38671875, + "r": 347.5596516927083, + "b": 692.957275390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 3, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 4, + "bbox": { + "l": 479.4801025390625, + "t": 26.65688069661462, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 5, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 5, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 286.25046793619794, + "t": 809.2415542602539, + "r": 292.16998291015625, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 6, + "bbox": { + "l": 301.47206624348956, + "t": 695.9280497233073, + "r": 347.5596516927083, + "b": 681.4986063639323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 6, + "bbox": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 7, + "bbox": { + "l": 301.89487711588544, + "t": 668.3423665364584, + "r": 347.9824625651042, + "b": 653.488525390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 7, + "bbox": { + "l": 115.007568359375, + "t": 319.9139200846354, + "r": 396.6070149739583, + "b": 306.3332722981771, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Europe, India, East Asia, Central America, South America" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 7, + "bbox": { + "l": 114.16192626953125, + "t": 282.9915568033854, + "r": 396.1841634114583, + "b": 270.6841023763021, + "coord_origin": "BOTTOMLEFT" + }, + "text": "India,East Asia,Europe, South America,Central America" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 7, + "bbox": { + "l": 114.16192626953125, + "t": 246.06915283203125, + "r": 396.6070149739583, + "b": 232.91290283203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "India,Europe,East Asia, Central America,South America" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 7, + "bbox": { + "l": 114.58474731445312, + "t": 209.57118733723962, + "r": 396.6070149739583, + "b": 195.99053955078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "South America, Central America,East Asia,Europe, India" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 7, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 8, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 9, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 10, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 10, + "bbox": { + "l": 116.27604166666667, + "t": 684.4693806966146, + "r": 282.445068359375, + "b": 668.7667643229166, + "coord_origin": "BOTTOMLEFT" + }, + "text": "on admission to hospital (day 0)" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 10, + "bbox": { + "l": 113.73910522460938, + "t": 669.1911417643229, + "r": 169.97442626953125, + "b": 656.8836873372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "on day 3" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 10, + "bbox": { + "l": 113.73910522460938, + "t": 656.8836873372396, + "r": 169.97442626953125, + "b": 644.1518351236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7on day 6" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 10, + "bbox": { + "l": 116.27604166666667, + "t": 643.3030395507812, + "r": 311.19696044921875, + "b": 631.8443806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7on the day the patient left the hospital." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 10, + "bbox": { + "l": 115.007568359375, + "t": 618.2637329101562, + "r": 298.51230875651044, + "b": 605.5318806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4 shows thescientists'results." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 10, + "bbox": { + "l": 268.06911214192706, + "t": 594.0732014973959, + "r": 312.88824462890625, + "b": 578.7949829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 10, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 11, + "bbox": { + "l": 282.86789957682294, + "t": 811.7879257202148, + "r": 295.1297200520833, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 11, + "bbox": { + "l": 479.4801025390625, + "t": 26.65688069661462, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 12, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 12, + "bbox": { + "l": 479.4801025390625, + "t": 26.65688069661462, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 13, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 13, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 14, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "14" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 14, + "bbox": { + "l": 115.007568359375, + "t": 745.1578877766927, + "r": 432.546875, + "b": 732.426035563151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5 shows what one of her plates looked like after 24 hours." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 14, + "bbox": { + "l": 301.89487711588544, + "t": 720.54296875, + "r": 347.9824625651042, + "b": 705.6891377766927, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 14, + "bbox": { + "l": 304.4318033854167, + "t": 430.68105061848956, + "r": 344.5998942057292, + "b": 418.79799397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 14, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 15, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "15" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 15, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 16, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 16, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 17, + "bbox": { + "l": 284.1363525390625, + "t": 810.9391352335612, + "r": 295.1297200520833, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "17" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 17, + "bbox": { + "l": 302.3177083333333, + "t": 612.7466023763021, + "r": 348.4053141276042, + "b": 598.3171590169271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 6" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 17, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 18, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 18, + "bbox": { + "l": 115.43039957682292, + "t": 719.269785563151, + "r": 220.29024251302084, + "b": 707.8111063639323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "not exposed to CO" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 18, + "bbox": { + "l": 123.46400960286458, + "t": 707.38671875, + "r": 505.2722574869792, + "b": 680.6498209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "exposed to CO such that 50% of the oxygen binding sites are occupied by CO (50% " + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 18, + "bbox": { + "l": 302.3177083333333, + "t": 669.6155395507812, + "r": 347.9824625651042, + "b": 655.1861165364584, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 18, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 19, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "19" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 19, + "bbox": { + "l": 115.43039957682292, + "t": 709.0842997233073, + "r": 352.6335042317708, + "b": 696.7768351236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "air with > 10 mg m-3 CO for more than 8 hours" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 19, + "bbox": { + "l": 116.69886271158855, + "t": 695.9280497233073, + "r": 350.5194091796875, + "b": 683.1961873372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "air with > 30 mg m-3 CO for more than 1 hour." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 19, + "bbox": { + "l": 304.85463460286456, + "t": 606.3806762695312, + "r": 345.022705078125, + "b": 594.4975992838541, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 2" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 19, + "bbox": { + "l": 207.1827596028646, + "t": 125.54091389973962, + "r": 370.8148600260417, + "b": 111.96026611328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Turn over for the next question" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 20, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 20, + "bbox": { + "l": 113.73910522460938, + "t": 706.113525390625, + "r": 267.64630126953125, + "b": 695.503651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7sampletreatedwithMiTMAB" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 20, + "bbox": { + "l": 122.19554646809895, + "t": 693.8060709635416, + "r": 200.8404337565104, + "b": 680.6498209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "control sample." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 20, + "bbox": { + "l": 301.89487711588544, + "t": 668.7667643229166, + "r": 347.9824625651042, + "b": 654.3373209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 20, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 21, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 22, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 113.73910522460938, + "t": 745.582285563151, + "r": 241.85416666666666, + "b": 732.0016377766927, + "coord_origin": "BOTTOMLEFT" + }, + "text": "it stimulates cytokinesis" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 114.58474731445312, + "t": 729.4552612304688, + "r": 222.40435791015625, + "b": 718.4209899902344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7it inhibits cell death." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 22, + "bbox": { + "l": 114.16192626953125, + "t": 678.9522399902344, + "r": 194.9209187825521, + "b": 663.6740112304688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "They incubated:" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 113.73910522460938, + "t": 652.2153523763021, + "r": 392.3787841796875, + "b": 639.9078776041666, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7one sample of 2500 cellswithout MiTMAB as a control" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 116.27604166666667, + "t": 639.0591023763021, + "r": 502.3125, + "b": 627.6004231770834, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7eight samples, each with 2500 cells and a different concentration of MiTMAB." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 22, + "bbox": { + "l": 301.89487711588544, + "t": 522.7748209635417, + "r": 347.9824625651042, + "b": 506.64780680338544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 22, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 23, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 23, + "bbox": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 24, + "bbox": { + "l": 298.93511962890625, + "t": 682.7717997233073, + "r": 350.5194091796875, + "b": 668.3423665364584, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 24, + "bbox": { + "l": 298.93511962890625, + "t": 423.04197184244794, + "r": 350.0965983072917, + "b": 408.61252848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 11" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 24, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "text": "26" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 26, + "bbox": { + "l": 114.58474731445312, + "t": 772.3191782633463, + "r": 529.7958984375, + "b": 746.85546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 12 shows a flowchart of how the anti-human antibodies with enzyme attache" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 26, + "bbox": { + "l": 299.3579508463542, + "t": 731.152842203776, + "r": 350.9422200520833, + "b": 716.7234090169271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 12" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 26, + "bbox": { + "l": 479.9029134114583, + "t": 26.65688069661462, + "r": 539.0979817708334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 27, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 474.40625, + "t": 69.52081298828125, + "r": 538.6751708984375, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Turn over" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 117.12168375651042, + "t": 695.503651936849, + "r": 533.601318359375, + "b": 670.4643351236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Laboratory-basedtest-apatient'sbloodsampleissentfromthedoctor'sclinictoa laborat" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 116.27604166666667, + "t": 670.4643351236979, + "r": 313.3110758463542, + "b": 658.1568806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Current test used in the doctor's clinic." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 114.16192626953125, + "t": 657.3080851236979, + "r": 531.4871826171875, + "b": 630.1467895507812, + "coord_origin": "BOTTOMLEFT" + }, + "text": "New test to be used in the doctor's clinic - the ELISA test shown in Figures 10 " + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 28, + "bbox": { + "l": 304.0089925130208, + "t": 555.4532470703125, + "r": 345.8683675130208, + "b": 542.2969970703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 28, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "29" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 29, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 797.3584899902344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "30" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 30, + "bbox": { + "l": 479.9029134114583, + "t": 25.38368733723962, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 281.1765950520833, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 798.2072804768881, + "coord_origin": "BOTTOMLEFT" + }, + "text": "31" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 31, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 32, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "text": "32" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 32, + "bbox": { + "l": 479.9029134114583, + "t": 25.38368733723962, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 33, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "33" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 33, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 34, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "34" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 34, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 35, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "35" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 35, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 36, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "36" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 36, + "bbox": { + "l": 184.773193359375, + "t": 771.0459899902344, + "r": 443.9630533854167, + "b": 746.0066731770834, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Additional page, if required. Write the questionnumbers in the left-hand margin." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 36, + "bbox": { + "l": 106.12831624348958, + "t": 195.99053955078125, + "r": 187.73295084635416, + "b": 184.10748291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Copyrightinformation" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 36, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun23/7402/1" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 38.75285720825195, + "t": 797.5618782043457, + "r": 168.73263549804688, + "b": 750.7547225952148, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 41.738304138183594, + "t": 53.39813232421875, + "r": 232.82923889160156, + "b": 17.52978515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 43.79362869262695, + "t": 53.08154296875, + "r": 99.09292602539062, + "b": 17.36419677734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 545.0670776367188, + "t": 223.08392333984375, + "r": 576.2114868164062, + "b": 181.8350830078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 43.670082092285156, + "t": 53.06951904296875, + "r": 98.925537109375, + "b": 17.565185546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 174.68348693847656, + "t": 678.4638214111328, + "r": 473.4761657714844, + "b": 517.2424621582031, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 113.6479721069336, + "t": 446.2611999511719, + "r": 535.0597534179688, + "b": 202.7186279296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 43.827579498291016, + "t": 53.08203125, + "r": 99.175048828125, + "b": 17.63958740234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 545.1842651367188, + "t": 258.13323974609375, + "r": 576.4935913085938, + "b": 218.5069580078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 39.210819244384766, + "t": 788.9965972900391, + "r": 541.126708984375, + "b": 74.01202392578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 43.505149841308594, + "t": 53.05731201171875, + "r": 99.4954605102539, + "b": 16.613525390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 83.32060241699219, + "t": 775.6388702392578, + "r": 104.85667419433594, + "b": 759.4894866943359, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 43.60575485229492, + "t": 53.17462158203125, + "r": 99.0291748046875, + "b": 17.504150390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 185.11962890625, + "t": 665.8579711914062, + "r": 461.7964782714844, + "b": 414.4193115234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 47.08686065673828, + "t": 390.10565185546875, + "r": 105.59192657470703, + "b": 372.57489013671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 43.7526969909668, + "t": 53.21405029296875, + "r": 99.15525817871094, + "b": 17.678466796875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 133.25204467773438, + "t": 638.6665191650391, + "r": 515.5753784179688, + "b": 405.51715087890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 544.9602661132812, + "t": 183.20513916015625, + "r": 576.623291015625, + "b": 141.35186767578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 43.66440200805664, + "t": 53.15325927734375, + "r": 99.01779174804688, + "b": 17.54901123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 43.81245040893555, + "t": 53.08746337890625, + "r": 99.12252807617188, + "b": 17.7144775390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 40.93195724487305, + "t": 577.9063415527344, + "r": 537.04541015625, + "b": 81.12896728515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 43.6055793762207, + "t": 53.30047607421875, + "r": 99.07133483886719, + "b": 17.55902099609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 43.76731872558594, + "t": 53.1451416015625, + "r": 99.2094497680664, + "b": 17.8843994140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 545.2431030273438, + "t": 174.44384765625, + "r": 576.5680541992188, + "b": 134.07025146484375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 43.73418426513672, + "t": 53.0821533203125, + "r": 99.10938262939453, + "b": 17.3834228515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 48.139076232910156, + "t": 775.6809158325195, + "r": 103.93136596679688, + "b": 759.4694137573242, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 43.70768356323242, + "t": 53.1370849609375, + "r": 99.12738037109375, + "b": 17.514892578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 43.5362548828125, + "t": 53.17645263671875, + "r": 98.98401641845703, + "b": 17.7249755859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 142.4031219482422, + "t": 719.0232009887695, + "r": 505.2492980957031, + "b": 511.989501953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 43.770362854003906, + "t": 53.152099609375, + "r": 99.1795425415039, + "b": 17.470947265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 43.74127197265625, + "t": 53.10418701171875, + "r": 99.16690063476562, + "b": 17.5113525390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 43.769287109375, + "t": 53.2208251953125, + "r": 99.2181396484375, + "b": 17.799560546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 223.7501678466797, + "t": 584.8180236816406, + "r": 425.0548400878906, + "b": 410.3366394042969, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 46.14360427856445, + "t": 776.3026504516602, + "r": 105.09618377685547, + "b": 759.3049163818359, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 43.57915496826172, + "t": 53.1851806640625, + "r": 99.00019836425781, + "b": 17.6298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 174.9173583984375, + "t": 642.5787658691406, + "r": 473.54656982421875, + "b": 467.1842956542969, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 45.22420883178711, + "t": 776.5735702514648, + "r": 105.89710998535156, + "b": 758.970817565918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 43.63395309448242, + "t": 53.15869140625, + "r": 98.9942855834961, + "b": 17.73187255859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 545.2316284179688, + "t": 201.66522216796875, + "r": 575.9176025390625, + "b": 161.1776123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 45.190303802490234, + "t": 776.6559371948242, + "r": 105.86597442626953, + "b": 758.5201568603516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 43.63211441040039, + "t": 53.179931640625, + "r": 99.04114532470703, + "b": 17.34979248046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 150.9450225830078, + "t": 617.3224029541016, + "r": 313.2983703613281, + "b": 503.0533142089844, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 334.0459899902344, + "t": 617.4680633544922, + "r": 496.58880615234375, + "b": 502.9727478027344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 43.76779556274414, + "t": 53.100830078125, + "r": 99.30591583251953, + "b": 17.63604736328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 43.62015914916992, + "t": 53.1810302734375, + "r": 99.0409927368164, + "b": 17.2210693359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 115.98562622070312, + "t": 490.761474609375, + "r": 525.6766967773438, + "b": 228.09912109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 43.774227142333984, + "t": 53.1300048828125, + "r": 99.13195037841797, + "b": 17.39892578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 45.659908294677734, + "t": 776.9897079467773, + "r": 81.86409759521484, + "b": 758.8364791870117, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 43.52434539794922, + "t": 53.19195556640625, + "r": 99.01769256591797, + "b": 17.4388427734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 186.83546447753906, + "t": 681.4509887695312, + "r": 461.82470703125, + "b": 475.6357116699219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 208.346923828125, + "t": 394.1239929199219, + "r": 439.4477844238281, + "b": 196.01318359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 43.770870208740234, + "t": 53.0679931640625, + "r": 99.18653869628906, + "b": 17.40289306640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 181.8665771484375, + "t": 702.0701293945312, + "r": 466.7599792480469, + "b": 421.53448486328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 43.65751266479492, + "t": 53.2117919921875, + "r": 99.11640167236328, + "b": 17.35589599609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 43.4676628112793, + "t": 53.09393310546875, + "r": 99.56715393066406, + "b": 16.8975830078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 43.65123748779297, + "t": 53.13800048828125, + "r": 99.01586151123047, + "b": 17.35797119140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 43.823516845703125, + "t": 53.09564208984375, + "r": 99.14620971679688, + "b": 17.60443115234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 545.1295776367188, + "t": 274.22503662109375, + "r": 576.8034057617188, + "b": 232.59393310546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 43.74403762817383, + "t": 53.09490966796875, + "r": 99.15995025634766, + "b": 17.37774658203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 43.771995544433594, + "t": 53.10174560546875, + "r": 99.37220764160156, + "b": 17.5792236328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 43.77596664428711, + "t": 53.02545166015625, + "r": 99.17550659179688, + "b": 17.2506103515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 544.9116821289062, + "t": 337.0838623046875, + "r": 576.8983764648438, + "b": 296.21673583984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 33, + "bbox": { + "l": 43.492340087890625, + "t": 52.9921875, + "r": 99.49662780761719, + "b": 16.61517333984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 34, + "bbox": { + "l": 43.72754669189453, + "t": 53.10546875, + "r": 99.3370132446289, + "b": 17.23223876953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 35, + "bbox": { + "l": 43.70325469970703, + "t": 53.17596435546875, + "r": 99.36039733886719, + "b": 16.9381103515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 36, + "bbox": { + "l": 43.66989517211914, + "t": 53.25164794921875, + "r": 99.0889892578125, + "b": 17.10797119140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 36, + "bbox": { + "l": 365.30670166015625, + "t": 70.7662353515625, + "r": 529.5682373046875, + "b": 34.24615478515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 1, + "bbox": { + "l": 443.3661193847656, + "t": 404.91436767578125, + "r": 544.3709106445312, + "b": 170.28326416015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 14, + "bbox": { + "l": 117.84334564208984, + "t": 406.4332580566406, + "r": 530.4790649414062, + "b": 130.2188720703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 19, + "bbox": { + "l": 117.88717651367188, + "t": 582.575439453125, + "r": 530.2239990234375, + "b": 468.1828918457031, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 28, + "bbox": { + "l": 117.90519714355469, + "t": 530.8365783691406, + "r": 530.6185913085938, + "b": 384.3605651855469, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + } + ], + "tables": [ + { + "page": 14, + "n_rows": 10, + "n_cols": 4, + "grid": [ + [ + "", + "Diameterofclearzone/ mm", + "", + "" + ], + [ + "Bacterial culture", + "Cinnamon oil", + "Positive control", + "Negative control" + ], + [ + "Bacillus spp.", + "15", + "14", + "0" + ], + [ + "Staphylococcus aureus", + "20", + "17", + "0" + ], + [ + "Listeria monocytogenes", + "18", + "12", + "0" + ], + [ + "Escherichia coli", + "16", + "12", + "0" + ], + [ + "Klebsiella spp.", + "14", + "12", + "0" + ], + [ + "Median for all cultures", + "", + "", + "0" + ], + [ + "Mean for all cultures", + "", + "", + "0" + ], + [ + "Standarddeviationforallcultures", + "2.4", + "2.2", + "0" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 0, + "for_part": null + }, + { + "page": 19, + "n_rows": 4, + "n_cols": 3, + "grid": [ + [ + "Exposure duration at rest / hours", + "CO concentration in the air / mg m-3 resultingin2.5%COHb", + "" + ], + [ + "", + "Child", + "Adult" + ], + [ + "1", + "31.2", + "40.2" + ], + [ + "8", + "9.6", + "10.6" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 1, + "for_part": "07.2" + }, + { + "page": 28, + "n_rows": 5, + "n_cols": 5, + "grid": [ + [ + "Time after onset of symptoms / days", + "Number of confirmed dengue fever patients tested", + "Number of positive results", + "", + "" + ], + [ + "", + "", + "Laboratory- based test", + "Current test", + "New test" + ], + [ + "1-2", + "14", + "10", + "0", + "6" + ], + [ + "3-4", + "38", + "28", + "6", + "24" + ], + [ + "5-7", + "18", + "8", + "14", + "14" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 2, + "for_part": null + } + ], + "stats": { + "n_questions": 10, + "n_parts": 36, + "marks_parts_known": 35, + "marks_sum": 83, + "marks_check": null, + "gemma_answer_regions": 0, + "gemma_marks_filled": 0, + "gemma_marks_gapfilled": 0, + "n_data_tables": 3, + "n_furniture_tables": 1, + "table_sources": { + "docling-standard": 3 + }, + "table_pages": [ + 14, + 19, + 28 + ], + "region_type_counts": { + "context_caption": 16, + "context_data": 4, + "context_figure": 67, + "furniture": 69, + "heading": 11, + "instruction": 28, + "mcq_option": 4 + } + }, + "coverage": { + "coverage_pct": 71.4, + "recovered": 30, + "total": 42, + "missed": [ + "01.4", + "02.3", + "02.4", + "04.4", + "04.5", + "07.1", + "07.3", + "08.5", + "11.1", + "11.2", + "11.3", + "11.4" + ], + "source": "builtin-physics-gt" + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/template.json b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/template.json new file mode 100644 index 0000000..438667a --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/template.json @@ -0,0 +1,4382 @@ +{ + "meta": { + "schema": "exam-template/first-pass/v1", + "board": "aqa", + "paper_code": "7402/1", + "source_pdf": "samples/b1/aqa-biology-7402-1-2023jun.pdf", + "n_pages": 36, + "coord_origin": "BOTTOMLEFT", + "units": "pdf_points", + "generated_at": "2026-06-08T01:48:57", + "ui_principle": "directional limits = draggable axis-locked lines; object footprints = boxes", + "confirmed": false, + "confirmed_by": null, + "confirmed_at": null + }, + "margins": [ + { + "edge": "left", + "axis": "x", + "value": 41.9, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "right", + "axis": "x", + "value": 541.1, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "top", + "axis": "y", + "value": 775.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 2 + }, + { + "edge": "bottom", + "axis": "y", + "value": 181.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 2 + }, + { + "edge": "top", + "axis": "y", + "value": 776.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "bottom", + "axis": "y", + "value": 132.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "top", + "axis": "y", + "value": 759.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "bottom", + "axis": "y", + "value": 218.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "top", + "axis": "y", + "value": 775.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "bottom", + "axis": "y", + "value": 249.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "bottom", + "axis": "y", + "value": 141.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "bottom", + "axis": "y", + "value": 81.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "top", + "axis": "y", + "value": 771.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "bottom", + "axis": "y", + "value": 638.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "bottom", + "axis": "y", + "value": 130.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "bottom", + "axis": "y", + "value": 435.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "bottom", + "axis": "y", + "value": 386.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "bottom", + "axis": "y", + "value": 436.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "bottom", + "axis": "y", + "value": 227.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "bottom", + "axis": "y", + "value": 196.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "bottom", + "axis": "y", + "value": 170.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "top", + "axis": "y", + "value": 762.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + }, + { + "edge": "bottom", + "axis": "y", + "value": 384.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "bottom", + "axis": "y", + "value": 718.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 31 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 31 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "bottom", + "axis": "y", + "value": 232.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "top", + "axis": "y", + "value": 771.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 36 + }, + { + "edge": "bottom", + "axis": "y", + "value": 33.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 36 + } + ], + "pages": { + "1": { + "role": "cover", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [], + "figures": [ + { + "box": { + "l": 38.75285720825195, + "t": 797.5618782043457, + "r": 168.73263549804688, + "b": 750.7547225952148, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 41.738304138183594, + "t": 53.39813232421875, + "r": 232.82923889160156, + "b": 17.52978515625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "2": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 738.8, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.1", + "question": "01", + "y_start": 738.8, + "y_end": 493.9, + "label_box": { + "l": 49.04734802246094, + "t": 738.7919616699219, + "r": 102.32291666666667, + "b": 723.5137329101562, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 738.8, + "r": 541.1, + "b": 493.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.2", + "question": "01", + "y_start": 493.9, + "y_end": 286.8, + "label_box": { + "l": 48.62452697753906, + "t": 493.91595458984375, + "r": 107.3967793782552, + "b": 478.21331787109375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 493.9, + "r": 541.1, + "b": 286.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.3", + "question": "01", + "y_start": 286.8, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 286.81109619140625, + "r": 102.32291666666667, + "b": 270.6841023763021, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 286.8, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.4048258463542, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 27.08127848307288, + "r": 79.91335042317708, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.79362869262695, + "t": 53.08154296875, + "r": 99.09292602539062, + "b": 17.36419677734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.0670776367188, + "t": 223.08392333984375, + "r": 576.2114868164062, + "b": 181.8350830078125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "3": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.1", + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 528.5274658203125, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 776.1, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.670082092285156, + "t": 53.06951904296875, + "r": 98.925537109375, + "b": 17.565185546875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 174.68348693847656, + "t": 678.4638214111328, + "r": 473.4761657714844, + "b": 517.2424621582031, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 113.6479721069336, + "t": 446.2611999511719, + "r": 535.0597534179688, + "b": 202.7186279296875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "4": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.2", + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 104.43702189127605, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 776.1, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 26.65688069661462, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.827579498291016, + "t": 53.08203125, + "r": 99.175048828125, + "b": 17.63958740234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.1842651367188, + "t": 258.13323974609375, + "r": 576.4935913085938, + "b": 218.5069580078125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "5": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.11049397786462, + "r": 78.22206115722656, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.505149841308594, + "t": 53.05731201171875, + "r": 99.4954605102539, + "b": 16.613525390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "6": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.1", + "question": "03", + "y_start": 775.7, + "y_end": 280.4, + "label_box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 104.43702189127605, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 541.1, + "b": 280.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.2", + "question": "03", + "y_start": 280.4, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 280.4451700846354, + "r": 104.85984293619792, + "b": 267.2889200846354, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 280.4, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 286.25046793619794, + "t": 809.2415542602539, + "r": 292.16998291015625, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.11049397786462, + "r": 78.22206115722656, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.60575485229492, + "t": 53.17462158203125, + "r": 99.0291748046875, + "b": 17.504150390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 185.11962890625, + "t": 665.8579711914062, + "r": 461.7964782714844, + "b": 414.4193115234375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "7": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 389.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.3", + "question": "03", + "y_start": 389.1, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 389.09035237630206, + "r": 102.32291666666667, + "b": 373.38771565755206, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 389.1, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7526969909668, + "t": 53.21405029296875, + "r": 99.15525817871094, + "b": 17.678466796875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 133.25204467773438, + "t": 638.6665191650391, + "r": 515.5753784179688, + "b": 405.51715087890625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "8": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.4", + "question": "03", + "y_start": 774.9, + "y_end": 529.1, + "label_box": { + "l": 48.62452697753906, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 541.1, + "b": 529.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.5", + "question": "03", + "y_start": 529.1, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 529.1407470703125, + "r": 101.47727457682292, + "b": 515.1357014973958, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 529.1, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.75899251302083, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.66440200805664, + "t": 53.15325927734375, + "r": 99.01779174804688, + "b": 17.54901123046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 544.9602661132812, + "t": 183.20513916015625, + "r": 576.623291015625, + "b": 141.35186767578125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "9": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.1", + "question": "04", + "y_start": 775.7, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 105.2826639811198, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.81245040893555, + "t": 53.08746337890625, + "r": 99.12252807617188, + "b": 17.7144775390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "10": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.6055793762207, + "t": 53.30047607421875, + "r": 99.07133483886719, + "b": 17.55902099609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "11": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.2", + "question": "04", + "y_start": 774.9, + "y_end": 433.2, + "label_box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 106.97395833333333, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 541.1, + "b": 433.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.3", + "question": "04", + "y_start": 433.2, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 433.22743733723956, + "r": 101.9000956217448, + "b": 418.79799397786456, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 433.2, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.86789957682294, + "t": 811.7879257202148, + "r": 295.1297200520833, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 26.65688069661462, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.76731872558594, + "t": 53.1451416015625, + "r": 99.2094497680664, + "b": 17.8843994140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.2431030273438, + "t": 174.44384765625, + "r": 576.5680541992188, + "b": 134.07025146484375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "12": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.1", + "question": "05", + "y_start": 722.2, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 722.2405497233073, + "r": 102.74573771158855, + "b": 708.659901936849, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 722.2, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 62.57765197753906, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 26.65688069661462, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73418426513672, + "t": 53.0821533203125, + "r": 99.10938262939453, + "b": 17.3834228515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "13": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.2", + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 105.70548502604167, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.70768356323242, + "t": 53.1370849609375, + "r": 99.12738037109375, + "b": 17.514892578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "14": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.5362548828125, + "t": 53.17645263671875, + "r": 98.98401641845703, + "b": 17.7249755859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 142.4031219482422, + "t": 719.0232009887695, + "r": 505.2492980957031, + "b": 511.989501953125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [ + { + "box": null, + "n_rows": 10, + "n_cols": 4, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "15": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.3", + "question": "05", + "y_start": 775.3, + "y_end": 553.8, + "label_box": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 541.1, + "b": 553.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.4", + "question": "05", + "y_start": 553.8, + "y_end": 422.6, + "label_box": { + "l": 49.04734802246094, + "t": 553.7556762695312, + "r": 106.97395833333333, + "b": 538.4774373372395, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 553.8, + "r": 541.1, + "b": 422.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.5", + "question": "05", + "y_start": 422.6, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 422.61757405598956, + "r": 101.9000956217448, + "b": 408.61252848307294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 422.6, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.770362854003906, + "t": 53.152099609375, + "r": 99.1795425415039, + "b": 17.470947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "16": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.1", + "question": "06", + "y_start": 775.3, + "y_end": 477.8, + "label_box": { + "l": 49.89299011230469, + "t": 775.2899424235026, + "r": 106.12831624348958, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 541.1, + "b": 477.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.2", + "question": "06", + "y_start": 477.8, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 477.78892008463544, + "r": 102.74573771158855, + "b": 462.08632405598956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 477.8, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 23.68609619140625, + "r": 78.22206115722656, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74127197265625, + "t": 53.10418701171875, + "r": 99.16690063476562, + "b": 17.5113525390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "17": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.3", + "question": "06", + "y_start": 775.7, + "y_end": 643.7, + "label_box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 541.1, + "b": 643.7, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.4", + "question": "06", + "y_start": 643.7, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 643.7274373372396, + "r": 101.9000956217448, + "b": 629.2980143229166, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 643.7, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 284.1363525390625, + "t": 810.9391352335612, + "r": 295.1297200520833, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.769287109375, + "t": 53.2208251953125, + "r": 99.2181396484375, + "b": 17.799560546875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 223.7501678466797, + "t": 584.8180236816406, + "r": 425.0548400878906, + "b": 410.3366394042969, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "18": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 46.14360427856445, + "t": 776.3026504516602, + "r": 105.09618377685547, + "b": 759.3049163818359, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_picture", + "docling_label": "picture", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.57915496826172, + "t": 53.1851806640625, + "r": 99.00019836425781, + "b": 17.6298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 174.9173583984375, + "t": 642.5787658691406, + "r": 473.54656982421875, + "b": 467.1842956542969, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "19": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.2", + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 106.97395833333333, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.22206115722656, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.63395309448242, + "t": 53.15869140625, + "r": 98.9942855834961, + "b": 17.73187255859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.2316284179688, + "t": 201.66522216796875, + "r": 575.9176025390625, + "b": 161.1776123046875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [ + { + "box": null, + "n_rows": 4, + "n_cols": 3, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "20": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.1", + "question": "08", + "y_start": 775.7, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 103.5913798014323, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.63211441040039, + "t": 53.179931640625, + "r": 99.04114532470703, + "b": 17.34979248046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 150.9450225830078, + "t": 617.3224029541016, + "r": 313.2983703613281, + "b": 503.0533142089844, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 334.0459899902344, + "t": 617.4680633544922, + "r": 496.58880615234375, + "b": 502.9727478027344, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "21": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.2", + "question": "08", + "y_start": 775.7, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 23.68609619140625, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.76779556274414, + "t": 53.100830078125, + "r": 99.30591583251953, + "b": 17.63604736328125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "22": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.62015914916992, + "t": 53.1810302734375, + "r": 99.0409927368164, + "b": 17.2210693359375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 115.98562622070312, + "t": 490.761474609375, + "r": 525.6766967773438, + "b": 228.09912109375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "23": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.3", + "question": "08", + "y_start": 774.9, + "y_end": 490.9, + "label_box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 541.1, + "b": 490.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "08.4", + "question": "08", + "y_start": 490.9, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 490.94517008463544, + "r": 104.43702189127605, + "b": 476.51572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 490.9, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 63.00047302246094, + "t": 25.80808512369788, + "r": 79.4905293782552, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.774227142333984, + "t": 53.1300048828125, + "r": 99.13195037841797, + "b": 17.39892578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "24": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.441151936849, + "r": 78.22206115722656, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 45.659908294677734, + "t": 776.9897079467773, + "r": 81.86409759521484, + "b": 758.8364791870117, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_picture", + "docling_label": "picture", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.52434539794922, + "t": 53.19195556640625, + "r": 99.01769256591797, + "b": 17.4388427734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 186.83546447753906, + "t": 681.4509887695312, + "r": 461.82470703125, + "b": 475.6357116699219, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 208.346923828125, + "t": 394.1239929199219, + "r": 439.4477844238281, + "b": 196.01318359375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "25": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "09", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "09.1", + "question": "09", + "y_start": 775.7, + "y_end": 555.0, + "label_box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 104.85984293619792, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 541.1, + "b": 555.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "09.2", + "question": "09", + "y_start": 555.0, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 555.0288492838542, + "r": 101.9000956217448, + "b": 540.5994262695312, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 555.0, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.770870208740234, + "t": 53.0679931640625, + "r": 99.18653869628906, + "b": 17.40289306640625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "26": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "09", + "y_start": 406.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "09.3", + "question": "09", + "y_start": 406.1, + "y_end": 200.7, + "label_box": { + "l": 49.89299011230469, + "t": 406.06614176432294, + "r": 103.16855875651042, + "b": 390.78794352213544, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 406.1, + "r": 541.1, + "b": 200.7, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "09.4", + "question": "09", + "y_start": 200.7, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 200.65887451171875, + "r": 103.5913798014323, + "b": 184.95627848307288, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 200.7, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 26.65688069661462, + "r": 539.0979817708334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.65751266479492, + "t": 53.2117919921875, + "r": 99.11640167236328, + "b": 17.35589599609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 181.8665771484375, + "t": 702.0701293945312, + "r": 466.7599792480469, + "b": 421.53448486328125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "27": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.4676628112793, + "t": 53.09393310546875, + "r": 99.56715393066406, + "b": 16.8975830078125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "28": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 27.08127848307288, + "r": 81.1818135579427, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.65123748779297, + "t": 53.13800048828125, + "r": 99.01586151123047, + "b": 17.35797119140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [ + { + "box": null, + "n_rows": 5, + "n_cols": 5, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "29": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "09", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "09.5", + "question": "09", + "y_start": 774.9, + "y_end": 453.2, + "label_box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 541.1, + "b": 453.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "09.6", + "question": "09", + "y_start": 453.2, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 453.17401123046875, + "r": 102.32291666666667, + "b": 437.04697672526044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 453.2, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 25.80808512369788, + "r": 80.33617146809895, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.823516845703125, + "t": 53.09564208984375, + "r": 99.14620971679688, + "b": 17.60443115234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.1295776367188, + "t": 274.22503662109375, + "r": 576.8034057617188, + "b": 232.59393310546875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "30": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "10", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "10.1", + "question": "10", + "y_start": 774.4, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 774.441151936849, + "r": 106.97395833333333, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.4, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 797.3584899902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 26.65688069661462, + "r": 81.1818135579427, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.7193756103516, + "r": 585.1855875651041, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.38368733723962, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74403762817383, + "t": 53.09490966796875, + "r": 99.15995025634766, + "b": 17.37774658203125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "31": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "10", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "10.2", + "question": "10", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 438.4663899739583, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 798.2072804768881, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 26.23248291015625, + "r": 79.4905293782552, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.771995544433594, + "t": 53.10174560546875, + "r": 99.37220764160156, + "b": 17.5792236328125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "32": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "10", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "10.3", + "question": "10", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 776.1, + "r": 541.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 27.93007405598962, + "r": 80.33617146809895, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.38368733723962, + "r": 539.5208333333334, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.77596664428711, + "t": 53.02545166015625, + "r": 99.17550659179688, + "b": 17.2506103515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 544.9116821289062, + "t": 337.0838623046875, + "r": 576.8983764648438, + "b": 296.21673583984375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "33": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.492340087890625, + "t": 52.9921875, + "r": 99.49662780761719, + "b": 16.61517333984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "34": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.96685282389323, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.463541666666664, + "t": 25.38368733723962, + "r": 67.22869364420573, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 774.8655446370443, + "r": 584.7627766927084, + "b": 748.5530497233073, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.72754669189453, + "t": 53.10546875, + "r": 99.3370132446289, + "b": 17.23223876953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "35": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.463541666666664, + "t": 25.38368733723962, + "r": 67.65151468912761, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 26.23248291015625, + "r": 79.4905293782552, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.70325469970703, + "t": 53.17596435546875, + "r": 99.36039733886719, + "b": 16.9381103515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "36": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.463541666666664, + "t": 25.38368733723962, + "r": 67.22869364420573, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.11458333333333, + "t": 25.80808512369788, + "r": 79.91335042317708, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 775.2899424235026, + "r": 584.7627766927084, + "b": 748.128651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.66989517211914, + "t": 53.25164794921875, + "r": 99.0889892578125, + "b": 17.10797119140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 365.30670166015625, + "t": 70.7662353515625, + "r": 529.5682373046875, + "b": 34.24615478515625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/validate.json b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/validate.json new file mode 100644 index 0000000..c3a8e0c --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-7402-1-2023jun/validate.json @@ -0,0 +1,142 @@ +{ + "paper_code": "7402/1", + "board": "aqa", + "summary": { + "worst_severity": "warn", + "needs_priority_review": true, + "n_flags": 3, + "marks_sum": 83, + "official_max": null, + "parts_total": 36, + "parts_low_conf": 1, + "questions_expected": 10, + "questions_recovered": 10 + }, + "flags": [ + "[info] C1_marks_sum: no official max available to check the sum against", + "[warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens", + "[warn] C5_coverage: 71.4% vs GT (30/42); missed ['01.4', '02.3', '02.4', '04.4', '04.5', '07.1', '07.3', '08.5', '11.1', '11.2']" + ], + "checks": [ + { + "id": "C1_marks_sum", + "severity": "info", + "status": "unknown", + "detail": "no official max available to check the sum against" + }, + { + "id": "C2_part_marks", + "severity": "warn", + "status": "missing", + "detail": "1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens" + }, + { + "id": "C3_question_seq", + "severity": "info", + "status": "ok", + "detail": "questions 1-10 contiguous" + }, + { + "id": "C4_subpart_seq", + "severity": "info", + "status": "ok", + "detail": "sub-parts contiguous within every question" + }, + { + "id": "C5_coverage", + "severity": "warn", + "status": "missed", + "detail": "71.4% vs GT (30/42); missed ['01.4', '02.3', '02.4', '04.4', '04.5', '07.1', '07.3', '08.5', '11.1', '11.2']" + } + ], + "part_confidence": { + "01.1": "high", + "01.2": "high", + "01.3": "high", + "02.1": "high", + "02.2": "high", + "03.1": "low", + "03.2": "high", + "03.3": "high", + "03.4": "high", + "03.5": "high", + "04.1": "high", + "04.2": "high", + "04.3": "high", + "05.1": "high", + "05.2": "high", + "05.3": "high", + "05.4": "high", + "05.5": "high", + "06.1": "high", + "06.2": "high", + "06.3": "high", + "06.4": "high", + "07.2": "high", + "08.1": "high", + "08.2": "high", + "08.3": "high", + "08.4": "high", + "09.1": "high", + "09.2": "high", + "09.3": "high", + "09.4": "high", + "09.5": "high", + "09.6": "high", + "10.1": "high", + "10.2": "high", + "10.3": "high" + }, + "question_sequence": [ + { + "n": 1, + "label": "01", + "recovered": true + }, + { + "n": 2, + "label": "02", + "recovered": true + }, + { + "n": 3, + "label": "03", + "recovered": true + }, + { + "n": 4, + "label": "04", + "recovered": true + }, + { + "n": 5, + "label": "05", + "recovered": true + }, + { + "n": 6, + "label": "06", + "recovered": true + }, + { + "n": 7, + "label": "07", + "recovered": true + }, + { + "n": 8, + "label": "08", + "recovered": true + }, + { + "n": 9, + "label": "09", + "recovered": true + }, + { + "n": 10, + "label": "10", + "recovered": true + } + ] +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/bands.json b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/bands.json new file mode 100644 index 0000000..450f224 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/bands.json @@ -0,0 +1,583 @@ +{ + "board": "aqa", + "paper_code": "8461/1", + "coord_origin": "BOTTOMLEFT", + "pages": { + "3": { + "main": [ + { + "question": "01", + "y_start": 738.8, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "01.1", + "question": "01", + "y_start": 698.1, + "y_end": 275.8 + }, + { + "label": "01.2", + "question": "01", + "y_start": 275.8, + "y_end": 158.2 + }, + { + "label": "01.3", + "question": "01", + "y_start": 158.2, + "y_end": 0.0 + } + ] + }, + "4": { + "main": [ + { + "question": "01", + "y_start": 495.2, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.4", + "question": "01", + "y_start": 495.2, + "y_end": 230.4 + }, + { + "label": "01.5", + "question": "01", + "y_start": 230.4, + "y_end": 0.0 + } + ] + }, + "5": { + "main": [ + { + "question": "01", + "y_start": 724.4, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.6", + "question": "01", + "y_start": 724.4, + "y_end": 0.0 + } + ] + }, + "6": { + "main": [ + { + "question": "01", + "y_start": 448.5, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.7", + "question": "01", + "y_start": 448.5, + "y_end": 0.0 + } + ] + }, + "8": { + "main": [ + { + "question": "01", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.9", + "question": "01", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "9": { + "main": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "02.1", + "question": "02", + "y_start": 491.4, + "y_end": 361.9 + }, + { + "label": "02.2", + "question": "02", + "y_start": 361.9, + "y_end": 0.0 + } + ] + }, + "10": { + "main": [ + { + "question": "02", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.3", + "question": "02", + "y_start": 775.7, + "y_end": 0.0 + } + ] + }, + "11": { + "main": [ + { + "question": "02", + "y_start": 697.6, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.4", + "question": "02", + "y_start": 697.6, + "y_end": 433.2 + }, + { + "label": "02.5", + "question": "02", + "y_start": 433.2, + "y_end": 0.0 + } + ] + }, + "12": { + "main": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.6", + "question": "02", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "14": { + "main": [ + { + "question": "03", + "y_start": 478.6, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "03.1", + "question": "03", + "y_start": 478.6, + "y_end": 0.0 + } + ] + }, + "15": { + "main": [ + { + "question": "03", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.2", + "question": "03", + "y_start": 775.7, + "y_end": 0.0 + } + ] + }, + "16": { + "main": [ + { + "question": "03", + "y_start": 539.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.3", + "question": "03", + "y_start": 539.3, + "y_end": 0.0 + } + ] + }, + "17": { + "main": [ + { + "question": "03", + "y_start": 468.0, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.4", + "question": "03", + "y_start": 468.0, + "y_end": 288.1 + }, + { + "label": "03.5", + "question": "03", + "y_start": 288.1, + "y_end": 0.0 + } + ] + }, + "18": { + "main": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "04.1", + "question": "04", + "y_start": 723.1, + "y_end": 0.0 + } + ] + }, + "19": { + "main": [ + { + "question": "04", + "y_start": 494.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.2", + "question": "04", + "y_start": 494.3, + "y_end": 0.0 + } + ] + }, + "20": { + "main": [ + { + "question": "04", + "y_start": 575.4, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.3", + "question": "04", + "y_start": 575.4, + "y_end": 0.0 + } + ] + }, + "21": { + "main": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.4", + "question": "04", + "y_start": 775.3, + "y_end": 452.3 + }, + { + "label": "04.5", + "question": "04", + "y_start": 452.3, + "y_end": 0.0 + } + ] + }, + "23": { + "main": [ + { + "question": "05", + "y_start": 709.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.1", + "question": "05", + "y_start": 709.9, + "y_end": 527.0 + }, + { + "label": "05.2", + "question": "05", + "y_start": 527.0, + "y_end": 332.2 + }, + { + "label": "05.3", + "question": "05", + "y_start": 332.2, + "y_end": 0.0 + } + ] + }, + "24": { + "main": [ + { + "question": "05", + "y_start": 441.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.4", + "question": "05", + "y_start": 441.3, + "y_end": 0.0 + } + ] + }, + "25": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.5", + "question": "05", + "y_start": 774.9, + "y_end": 0.0 + } + ] + }, + "26": { + "main": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.1", + "question": "06", + "y_start": 494.8, + "y_end": 222.3 + }, + { + "label": "06.2", + "question": "06", + "y_start": 222.3, + "y_end": 0.0 + } + ] + }, + "27": { + "main": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.3", + "question": "06", + "y_start": 774.9, + "y_end": 0.0 + } + ] + }, + "29": { + "main": [ + { + "question": "06", + "y_start": 772.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.4", + "question": "06", + "y_start": 772.3, + "y_end": 0.0 + } + ] + }, + "30": { + "main": [ + { + "question": "06", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.5", + "question": "06", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "32": { + "main": [ + { + "question": "07", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "07.1", + "question": "07", + "y_start": 732.9, + "y_end": 192.2 + }, + { + "label": "07.3", + "question": "07", + "y_start": 192.2, + "y_end": 0.0 + } + ] + }, + "33": { + "main": [ + { + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.4", + "question": "07", + "y_start": 775.7, + "y_end": 474.8 + }, + { + "label": "07.5", + "question": "07", + "y_start": 474.8, + "y_end": 0.0 + } + ] + }, + "34": { + "main": [ + { + "question": "07", + "y_start": 735.8, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.6", + "question": "07", + "y_start": 735.8, + "y_end": 0.0 + } + ] + }, + "35": { + "main": [ + { + "question": "07", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.8", + "question": "07", + "y_start": 776.1, + "y_end": 0.0 + } + ] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/furniture.json b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/furniture.json new file mode 100644 index 0000000..0834dc0 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/furniture.json @@ -0,0 +1 @@ +{"n_pages": 40, "freq_threshold": 0.4, "furniture_cells": {"3,1": 39, "3,32": 18, "12,34": 36, "21,1": 40, "21,3": 16, "24,32": 22}, "content_margins": {"content_x_band": {"x_left": 41.9, "x_right": 536.1}, "per_page": {"1": {"top": 797.5, "bottom": 12.2, "left": 35.9, "right": 543.7}, "2": {"top": 788.4, "bottom": 420.9, "left": 188.6, "right": 578.8}, "3": {"top": 775.7, "bottom": 77.6, "left": 46.9, "right": 536.6}, "4": {"top": 773.2, "bottom": 187.9, "left": 48.2, "right": 536.1}, "5": {"top": 776.1, "bottom": 362.4, "left": 48.6, "right": 535.7}, "6": {"top": 775.7, "bottom": 315.7, "left": 45.7, "right": 535.7}, "7": {"top": 788.3, "bottom": 77.3, "left": 39.6, "right": 539.8}, "8": {"top": 773.2, "bottom": 597.9, "left": 113.7, "right": 566.2}, "9": {"top": 773.6, "bottom": 107.7, "left": 48.2, "right": 535.7}, "10": {"top": 772.7, "bottom": 582.6, "left": 113.7, "right": 535.7}, "11": {"top": 774.9, "bottom": 128.5, "left": 49.0, "right": 536.1}, "12": {"top": 773.2, "bottom": 367.0, "left": 113.3, "right": 535.7}, "13": {"top": 634.3, "bottom": 503.7, "left": 216.9, "right": 575.9}, "14": {"top": 774.9, "bottom": 173.9, "left": 48.2, "right": 536.1}, "15": {"top": 773.2, "bottom": 308.5, "left": 114.2, "right": 535.7}, "16": {"top": 774.4, "bottom": 99.2, "left": 49.0, "right": 536.1}, "17": {"top": 774.9, "bottom": 82.3, "left": 47.4, "right": 568.3}, "18": {"top": 774.0, "bottom": 461.2, "left": 47.8, "right": 535.7}, "19": {"top": 775.3, "bottom": 281.3, "left": 45.8, "right": 536.1}, "20": {"top": 774.4, "bottom": 450.2, "left": 45.5, "right": 535.7}, "21": {"top": 773.6, "bottom": 234.2, "left": 48.2, "right": 574.8}, "22": {"top": 775.3, "bottom": 421.3, "left": 173.8, "right": 403.8}, "23": {"top": 774.4, "bottom": 124.7, "left": 48.2, "right": 536.1}, "24": {"top": 774.4, "bottom": 373.4, "left": 46.2, "right": 536.1}, "25": {"top": 773.6, "bottom": 488.8, "left": 113.7, "right": 567.8}, "26": {"top": 772.7, "bottom": 149.7, "left": 48.2, "right": 535.7}, "27": {"top": 772.3, "bottom": 469.7, "left": 114.2, "right": 536.1}, "28": {"top": 773.6, "bottom": 337.9, "left": 114.6, "right": 499.3}, "29": {"top": 773.6, "bottom": 385.7, "left": 114.2, "right": 535.3}, "30": {"top": 772.7, "bottom": 126.8, "left": 114.6, "right": 567.4}, "31": {"top": 789.2, "bottom": 71.2, "left": 38.6, "right": 541.3}, "32": {"top": 773.2, "bottom": 149.7, "left": 47.8, "right": 536.1}, "33": {"top": 773.2, "bottom": 205.3, "left": 48.6, "right": 536.1}, "34": {"top": 773.6, "bottom": 317.4, "left": 48.2, "right": 536.6}, "35": {"top": 789.3, "bottom": 76.1, "left": 39.1, "right": 566.2}, "36": {"top": 775.3, "bottom": 421.3, "left": 173.8, "right": 403.8}, "37": {"top": 788.9, "bottom": 745.6, "left": 184.8, "right": 580.5}, "38": {"top": 771.0, "bottom": 745.6, "left": 184.8, "right": 444.0}, "39": {"top": 788.9, "bottom": 741.3, "left": 55.4, "right": 580.5}, "40": {"top": 774.9, "bottom": 30.9, "left": 52.9, "right": 528.1}}}, "ab_test_figures": {"context_figure_before_mask": 67, "context_figure_after_mask": 25, "removed_as_furniture": 42, "removed_breakdown": {"cell 3,1": 39, "cell 3,32": 3}}, "text_furniture_removed": 160, "items": [{"page": 1, "kind": "text", "label": "text", "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "text": "AQA", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 726.0600992838541, "r": 233.8205362955729, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Please write clearly in block capitals.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Centre number", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatenumber", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Surname", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 54.96685282389323, "t": 628.8736165364584, "r": 120.50426228841145, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "text": "Forename(s)", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 601.7123209635416, "r": 156.02130126953125, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "text": "Candidate signature", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 165.74620564778647, "t": 588.5560709635416, "r": 309.92848714192706, "b": 576.2486165364583, "coord_origin": "BOTTOMLEFT"}, "text": "I declare this is my own work.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 150.52461751302084, "b": 497.31109619140625, "coord_origin": "BOTTOMLEFT"}, "text": "GCSE BIOLOGY", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 41.01373036702474, "t": 482.45729573567706, "r": 198.30350748697916, "b": 465.48146565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Higher Tier Paper 1H", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 398.42702229817706, "r": 92.17519124348958, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Materials", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 38.053975423177086, "t": 384.42197672526044, "r": 186.04166666666666, "b": 370.41697184244794, "coord_origin": "BOTTOMLEFT"}, "text": "For this paper you must have:", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 369.99257405598956, "r": 84.14157104492188, "b": 358.53387451171875, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a ruler", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 356.83632405598956, "r": 156.02130126953125, "b": 345.80202229817706, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a scientific calculator.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 331.37261962890625, "r": 109.0880635579427, "b": 318.6407267252604, "coord_origin": "BOTTOMLEFT"}, "text": "Instructions", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 317.7919718424479, "r": 231.28361002604166, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Use black ink or black ball-point pen.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 291.4794718424479, "r": 241.0085245768229, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Fill in the boxes at the top of this pa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.01373036702474, "t": 305.06011962890625, "r": 243.12261962890625, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Pencil should only be used for drawing.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 277.47442626953125, "r": 270.60605875651044, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questions in the spaces provi", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 238.43007405598962, "r": 402.9493408203125, "b": 212.54197184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Do all rough work in this book. Cross th", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 263.4693806966146, "r": 424.9360758463542, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "text": "o pua au pe sabed paus aun asn (shlamsue", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 210.84438069661462, "r": 356.0160725911458, "b": 197.26373291015625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7In all calculations, show clearly how y", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 39.32244110107422, "t": 184.10748291015625, "r": 106.12831624348958, "b": 172.64882405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Information", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 170.52683512369788, "r": 251.57906087239584, "b": 158.21938069661462, "coord_origin": "BOTTOMLEFT"}, "text": "The maximum mark for this paper is 100.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 156.52178955078125, "r": 282.02223714192706, "b": 144.21433512369788, "coord_origin": "BOTTOMLEFT"}, "text": "The marks for questions are shown in bra", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 143.78993733723962, "r": 323.88161214192706, "b": 130.20928955078125, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7You are expected to use a calculator wh", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 129.78489176432288, "r": 391.1103108723958, "b": 104.32118733723962, "coord_origin": "BOTTOMLEFT"}, "text": "You areremindedoftheneedforgoodEnglishan", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 66.80586751302083, "t": 24.95928955078125, "r": 227.47821044921875, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "1UN2284611H0", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 488.359375, "t": 551.6336873372395, "r": 536.1382242838541, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 330.6467692057292, "t": 428.13470458984375, "r": 543.7490234375, "b": 413.28086344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Time allowed: 1 hour 45 minutes", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 321.3446858723958, "t": 20.71531168619788, "r": 372.928955078125, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/E20", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 473.1377766927083, "t": 33.87156168619788, "r": 551.3598225911459, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "8461/1H", "furniture": true}, {"page": 2, "kind": "text", "label": "page_header", "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 194.07527669270834, "t": 774.8655446370443, "r": 383.49951171875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions on this page", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 188.5785929361979, "t": 445.11049397786456, "r": 398.2982991536458, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 538.6751708984375, "t": 788.4461924235026, "r": 578.84326171875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 2, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 3, "kind": "text", "label": "page_header", "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.015625, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 179.6993408203125, "t": 775.7143351236979, "r": 397.45263671875, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questions in the spaces provi", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 738.7919616699219, "r": 79.4905293782552, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "01", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 737.9431660970052, "r": 317.53928629557294, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about cells and transpo", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 698.0500183105469, "r": 101.9000956217448, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "text": "01.1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 696.3524373372396, "r": 206.33711751302084, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Table 1.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 683.6205851236979, "r": 536.5610758463541, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "section_header", "bbox": {"l": 303.58616129557294, "t": 658.1568806966146, "r": 345.022705078125, "b": 645.0006306966146, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 152.21590169270834, "t": 623.7808634440104, "r": 243.12261962890625, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "text": "Name of cell part", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 354.7476399739583, "t": 624.6296590169271, "r": 462.1444091796875, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "text": "Function of cell part", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 337.83473714192706, "t": 573.277852376302, "r": 477.788818359375, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "text": "Contains genetic information", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 164.47774251302084, "t": 502.8282470703125, "r": 229.16949462890625, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Mitochondria", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 294.28407796223956, "t": 436.62261962890625, "r": 522.1850992838541, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Controls the movement of substances into", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 338.16294352213544, "r": 270.1832275390625, "b": 324.15789794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Cells in potatoes are plant cells.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 312.6991984049479, "r": 334.0293375651042, "b": 299.5429484049479, "coord_origin": "BOTTOMLEFT"}, "text": "Cells in potatoes do not contain chlorop", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 275.7768351236979, "r": 103.16855875651042, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "text": "01.2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 273.65484619140625, "r": 292.59279378255206, "b": 259.22540283203125, "coord_origin": "BOTTOMLEFT"}, "text": "What is the function of chloroplasts?", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 260.0741984049479, "r": 536.1382242838541, "b": 245.64479573567712, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 46.93323771158854, "t": 158.21938069661462, "r": 102.32291666666667, "b": 140.81915283203125, "coord_origin": "BOTTOMLEFT"}, "text": "01.3", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 155.67299397786462, "r": 475.2518717447917, "b": 140.81915283203125, "coord_origin": "BOTTOMLEFT"}, "text": "Name one type of cell in a potato plant ", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 489.6278483072917, "t": 142.09234619140625, "r": 535.7154134114584, "b": 127.66290283203125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 90.74053955078125, "r": 390.6875, "b": 77.58428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Question 1 continueson the nextpage", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "page_footer", "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.16796875, "r": 471.023681640625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "A student investigated the effect of sal", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 234.66617838541666, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "text": "This is the method used.", "furniture": false}, {"page": 4, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 722.6649373372396, "r": 339.10321044921875, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "text": "Cut three pieces of potato of the same s", "furniture": false}, {"page": 4, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 697.2012329101562, "r": 314.15671793619794, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Record the mass of each potato piece.", "furniture": false}, {"page": 4, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 671.7375183105469, "r": 383.9223225911458, "b": 659.8544514973959, "coord_origin": "BOTTOMLEFT"}, "text": "3.Add 150cm?of 0.4mol/dm3salt solution t", "furniture": false}, {"page": 4, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 647.5469970703125, "r": 322.6131591796875, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "text": "Place each potato piece into the beaker.", "furniture": false}, {"page": 4, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 621.6588948567709, "r": 531.0643717447916, "b": 607.2294514973959, "coord_origin": "BOTTOMLEFT"}, "text": "After 30 minutes, remove each potato pie", "furniture": false}, {"page": 4, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 596.6195882161459, "r": 314.57952880859375, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "text": "Record the mass of each potato piece.", "furniture": false}, {"page": 4, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 571.1558634440105, "r": 444.8087158203125, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "text": "Repeat steps 1 to 6 using different conc", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 495.18914794921875, "r": 102.32291666666667, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "01.4", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 492.64276123046875, "r": 375.8887125651042, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "What is the independent variable in the ", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 479.48651123046875, "r": 536.1382242838541, "b": 465.05706787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 467.17905680338544, "r": 201.26324462890625, "b": 451.90081787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 4, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.8532206217448, "t": 427.71030680338544, "r": 256.65293375651044, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Concentrationofsaltsolution", "furniture": false}, {"page": 4, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 391.63669840494794, "r": 216.90767415364584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Mass of potato piece", "furniture": false}, {"page": 4, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 355.13873291015625, "r": 275.25710042317706, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Time potato is left in salt solution", "furniture": false}, {"page": 4, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.73910522460938, "t": 318.21636962890625, "r": 226.20975748697916, "b": 304.6357218424479, "coord_origin": "BOTTOMLEFT"}, "text": "Volume of salt solution", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 230.36655680338538, "r": 102.32291666666667, "b": 214.66392008463538, "coord_origin": "BOTTOMLEFT"}, "text": "01.5", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 227.82017008463538, "r": 482.0170491536458, "b": 201.08327229817712, "coord_origin": "BOTTOMLEFT"}, "text": "Why did the student dry the surface of e", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 203.62965901692712, "r": 535.7154134114584, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 4, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 5, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 776.1387329101562, "r": 486.6680908203125, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "The student calculated the percentage ch", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 724.3625183105469, "r": 102.74573771158855, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "text": "01.6", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 722.2405497233073, "r": 219.8674112955729, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "text": "For one potato piece:", "furniture": false}, {"page": 5, "kind": "text", "label": "list_item", "bbox": {"l": 115.007568359375, "t": 703.1427612304688, "r": 260.8811442057292, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "text": "the starting mass was 2.5 g", "furniture": false}, {"page": 5, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 684.4693806966146, "r": 246.0823771158854, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "text": "the end mass was 2.7 g.", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 645.4250284830729, "r": 418.59375, "b": 632.2687784830729, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the percentage increase in mas", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 632.2687784830729, "r": 535.7154134114584, "b": 619.1125284830729, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 619.5369262695312, "r": 201.26324462890625, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "text": "Use the equation:", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 154.33001708984375, "t": 595.3463948567709, "r": 427.0501708984375, "b": 567.3363037109375, "coord_origin": "BOTTOMLEFT"}, "text": "increase in mass percentage increase in ", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 208.45123291015625, "t": 426.86151123046875, "r": 518.8025309244791, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Percentage increase in mass : %", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 375.50970458984375, "r": 390.6875, "b": 362.35345458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Question1continueson thenextpage", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 5, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 448.50567626953125, "r": 104.01420084635417, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "01.7", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 77.79924011230469, "t": 24.95928955078125, "r": 84.56439208984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 775.7143351236979, "r": 534.8697916666666, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "text": "The student used the results from each p", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 736.2455851236979, "r": 243.54545084635416, "b": 724.3625183105469, "coord_origin": "BOTTOMLEFT"}, "text": "Table2showstheresults.", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 446.80808512369794, "r": 212.25663248697916, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Figure 1.", "furniture": false}, {"page": 6, "kind": "text", "label": "section_header", "bbox": {"l": 113.73910522460938, "t": 420.07118733723956, "r": 174.6254679361979, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "text": "You should:", "furniture": false}, {"page": 6, "kind": "text", "label": "list_item", "bbox": {"l": 115.007568359375, "t": 401.39780680338544, "r": 200.4176025390625, "b": 387.39276123046875, "coord_origin": "BOTTOMLEFT"}, "text": "label the x-axis", "furniture": false}, {"page": 6, "kind": "text", "label": "list_item", "bbox": {"l": 116.69886271158855, "t": 381.45123291015625, "r": 289.63303629557294, "b": 368.71938069661456, "coord_origin": "BOTTOMLEFT"}, "text": "useasuitablescalefor thex-axis", "furniture": false}, {"page": 6, "kind": "text", "label": "list_item", "bbox": {"l": 118.39014689127605, "t": 361.50465901692706, "r": 254.538818359375, "b": 349.19720458984375, "coord_origin": "BOTTOMLEFT"}, "text": "plot the data from Table 2", "furniture": false}, {"page": 6, "kind": "text", "label": "list_item", "bbox": {"l": 117.5445048014323, "t": 341.55808512369794, "r": 229.59232584635416, "b": 330.09942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "drawa line ofbest fit.", "furniture": false}, {"page": 6, "kind": "text", "label": "caption", "bbox": {"l": 304.85463460286456, "t": 708.2355041503906, "r": 345.022705078125, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 328.82623291015625, "r": 535.7154134114584, "b": 315.66998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 6, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 282.86789957682294, "t": 172.64882405598962, "r": 361.9355875651042, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Concentration=", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 173.07322184244788, "r": 528.1046142578125, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "mol/dm3", "furniture": false}, {"page": 7, "kind": "text", "label": "section_header", "bbox": {"l": 303.16335042317706, "t": 775.2899424235026, "r": 346.7139892578125, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 106.12831624348958, "t": 724.7869160970052, "r": 130.22916666666666, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "text": "10.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 112.04782104492188, "t": 695.503651936849, "r": 130.22916666666666, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "text": "9.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 667.91796875, "r": 131.0748087565104, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "text": "8.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 639.4834798177084, "r": 130.65198771158853, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "text": "7.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 611.0490112304688, "r": 130.65198771158853, "b": 598.3171590169271, "coord_origin": "BOTTOMLEFT"}, "text": "6.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 583.0389404296875, "r": 131.0748087565104, "b": 569.8826904296875, "coord_origin": "BOTTOMLEFT"}, "text": "5.0-", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 573.277852376302, "r": 78.22206115722656, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "text": "Mean", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 560.9703776041667, "r": 106.97395833333333, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "text": "percentage", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 110.77935791015625, "t": 554.1800537109375, "r": 129.80634562174478, "b": 542.7213948567708, "coord_origin": "BOTTOMLEFT"}, "text": "4.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 549.0873209635417, "r": 107.81960042317708, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "text": "(%) change", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 536.35546875, "r": 88.79261271158855, "b": 523.6236165364583, "coord_origin": "BOTTOMLEFT"}, "text": "inmass", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 525.3211873372395, "r": 130.65198771158853, "b": 513.862528483073, "coord_origin": "BOTTOMLEFT"}, "text": "3.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 497.73549397786456, "r": 130.65198771158853, "b": 485.00364176432294, "coord_origin": "BOTTOMLEFT"}, "text": "2.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 112.04782104492188, "t": 468.87664794921875, "r": 129.80634562174478, "b": 456.99355061848956, "coord_origin": "BOTTOMLEFT"}, "text": "1.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 112.04782104492188, "t": 440.44215901692706, "r": 130.22916666666666, "b": 428.98350016276044, "coord_origin": "BOTTOMLEFT"}, "text": "0.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 105.2826639811198, "t": 412.43206787109375, "r": 130.65198771158853, "b": 400.12461344401044, "coord_origin": "BOTTOMLEFT"}, "text": "-1.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 104.43702189127605, "t": 383.57322184244794, "r": 130.65198771158853, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "-2.0", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 269.8353068033854, "r": 80.75899251302083, "b": 257.5278523763021, "coord_origin": "BOTTOMLEFT"}, "text": "01", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 268.98651123046875, "r": 466.3726399739583, "b": 240.97642008463538, "coord_origin": "BOTTOMLEFT"}, "text": "What concentration of salt solution was ", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 226.54697672526038, "r": 184.35038248697916, "b": 213.81512451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 1.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 213.81512451171875, "r": 535.7154134114584, "b": 200.65887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 282.86789957682294, "t": 172.64882405598962, "r": 361.9355875651042, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Concentration=", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 173.07322184244788, "r": 528.1046142578125, "b": 161.19012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "mol/dm3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 110.26275634765625, "r": 391.1103108723958, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Question 1 continues on the next page", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 7, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 775.2899424235026, "r": 103.5913798014323, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "01.9", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 535.7154134114584, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the potato pieces in the 0.4", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 550.93701171875, "t": 610.6246134440104, "r": 566.1586100260416, "b": 597.8927612304688, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": true}, {"page": 8, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 80.33617146809895, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 358.1302083333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "Plant cells and fungal cells are similar", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 747.7042541503906, "r": 256.65293375651044, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2 shows a fungal cell", "furniture": false}, {"page": 9, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 314.15671793619794, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 491.36956787109375, "r": 102.74573771158855, "b": 475.66697184244794, "coord_origin": "BOTTOMLEFT"}, "text": "02.1", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 489.24761962890625, "r": 520.0710042317709, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "text": "Name one structure in Figure 2 which is ", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 463.35947672526044, "r": 535.7154134114584, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 361.92905680338544, "r": 105.2826639811198, "b": 345.80202229817706, "coord_origin": "BOTTOMLEFT"}, "text": "02.2", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 112.47064208984375, "t": 360.23146565755206, "r": 302.7405192057292, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Which disease is caused by a fungus?", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 346.65081787109375, "r": 535.7154134114584, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 333.07017008463544, "r": 200.4176025390625, "b": 318.6407267252604, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (v) one box.", "furniture": false}, {"page": 9, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 294.8746134440104, "r": 174.2026570638021, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Gonorrhoea", "furniture": false}, {"page": 9, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.3162841796875, "t": 258.8010457356771, "r": 152.21590169270834, "b": 244.79600016276038, "coord_origin": "BOTTOMLEFT"}, "text": "Malaria", "furniture": false}, {"page": 9, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 220.60544840494788, "r": 157.28976440429688, "b": 208.72239176432288, "coord_origin": "BOTTOMLEFT"}, "text": "Measles", "furniture": false}, {"page": 9, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 184.10748291015625, "r": 194.49810791015625, "b": 171.37563069661462, "coord_origin": "BOTTOMLEFT"}, "text": "Rose black spot", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 121.72141520182288, "r": 391.1103108723958, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Question2continuesonthenextpage", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 9, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 10, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "02.3", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 328.9554850260417, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "A fungal cell divides once every 90 minu", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 747.2798563639323, "r": 396.6070149739583, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "text": "How many times would this fungal cell di", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 734.5480041503906, "r": 535.7154134114584, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 191.11551920572916, "t": 593.6488037109375, "r": 396.1841634114583, "b": 582.6145426432292, "coord_origin": "BOTTOMLEFT"}, "text": "Numberoftimescelldividesin24hours=", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 10, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 11, "kind": "text", "label": "page_header", "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 432.9696858723958, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Some types of fungal cell are grown to p", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 749.8262329101562, "r": 417.3252766927083, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "The high-protein food can be used to mak", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 697.6256306966146, "r": 101.9000956217448, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "text": "02.4", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 695.9280497233073, "r": 396.6070149739583, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "text": "Where is protein digested in the human d", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 682.347401936849, "r": 536.1382242838541, "b": 667.91796875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 670.0399373372396, "r": 201.26324462890625, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.73910522460938, "t": 632.6931762695312, "r": 188.15576171875, "b": 617.4149373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Large intestine", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.3162841796875, "t": 594.9219970703125, "r": 141.2225341796875, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "text": "Liver", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 558.848409016927, "r": 190.69270833333334, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "text": "Salivary glands", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 521.0772298177083, "r": 159.82670084635416, "b": 507.9209798177083, "coord_origin": "BOTTOMLEFT"}, "text": "Stomach", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 433.22743733723956, "r": 103.16855875651042, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "text": "02.5", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 431.10544840494794, "r": 445.2315266927083, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Which chemical could be used to test if ", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 417.52480061848956, "r": 536.1382242838541, "b": 403.09539794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 405.21734619140625, "r": 201.26324462890625, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 367.02178955078125, "r": 208.02840169270834, "b": 353.01674397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Benedict's reagent", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 329.2506306966146, "r": 185.61883544921875, "b": 316.5187784830729, "coord_origin": "BOTTOMLEFT"}, "text": "Biuret reagent", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 293.1770222981771, "r": 153.90719604492188, "b": 280.0207722981771, "coord_origin": "BOTTOMLEFT"}, "text": "Ethanol", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 256.2546590169271, "r": 186.8873087565104, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "text": "lodine solution", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 142.51674397786462, "r": 390.2646484375, "b": 128.51169840494788, "coord_origin": "BOTTOMLEFT"}, "text": "Question2continueson thenextpage", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 11, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 12, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 47.356058756510414, "t": 776.1387329101562, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "02.6", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 773.16796875, "r": 450.3053792317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "text": "Table 3 shows some information about bur", "furniture": false}, {"page": 12, "kind": "text", "label": "caption", "bbox": {"l": 304.0089925130208, "t": 729.8796590169271, "r": 345.8683675130208, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "text": "Table 3", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 438.32017008463544, "r": 509.9232991536458, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "text": "Evaluate the use of burgers made from me", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 394.60748291015625, "r": 384.7679850260417, "b": 380.60243733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Use information fromTable3and your ownkn", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 381.45123291015625, "r": 535.7154134114584, "b": 367.02178955078125, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 546.7087809244791, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 12, "kind": "text", "label": "page_footer", "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 13, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 552.6282958984375, "t": 609.3514404296875, "r": 567.8498942057291, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 552.6282958984375, "t": 609.3514404296875, "r": 567.8498942057291, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 216.90767415364584, "t": 516.8332926432292, "r": 361.0899658203125, "b": 503.6770426432292, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for next question", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 73.76470947265625, "r": 544.171875, "b": 60.18406168619788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": true}, {"page": 13, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.38368733723962, "r": 545.4403076171875, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 14, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 296.398193359375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "03 A student prepared some onion cells.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 743.8847045898438, "r": 406.7547200520833, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "text": "The student viewed the onion cells using", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 706.5379231770834, "r": 235.0890096028646, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "text": "This is the method used.", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 681.07421875, "r": 342.4857991536458, "b": 667.4935709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Cut an onion into pieces using a sharp k", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 655.1861165364584, "r": 434.6609700520833, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Peel off a thin layer of onion epidermis", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 630.1467895507812, "r": 471.4464925130208, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "Place the onion epidermis onto a microsc", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 605.1074829101562, "r": 293.4384358723958, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Add three drops of iodine solution.", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 579.643778483073, "r": 429.164306640625, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "text": "Slowly lower a cover slip at an angle on", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 554.1800537109375, "r": 353.4791666666667, "b": 540.5994262695312, "coord_origin": "BOTTOMLEFT"}, "text": "Place the slide on the stage of the micr", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 478.63771565755206, "r": 104.01420084635417, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "03.1", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 477.36452229817706, "r": 374.6202392578125, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Table 4 shows a risk assessment for this", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 450.62762451171875, "r": 206.33711751302084, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Table 4.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 437.89577229817706, "r": 536.1382242838541, "b": 424.73952229817706, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 14, "kind": "text", "label": "section_header", "bbox": {"l": 304.0089925130208, "t": 400.54901123046875, "r": 345.445556640625, "b": 387.39276123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Table 4", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 14, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 15, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "03.2", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 403.7949625651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Give a reason for each of the following ", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 760.01171875, "r": 535.7154134114584, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 721.3917541503906, "r": 307.81439208984375, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "text": "A thin layer of onion epidermis is used.", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 593.2244262695312, "r": 351.3650309244792, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "text": "lodine solution is added to the onion ep", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 463.78387451171875, "r": 421.1306559244792, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "text": "The cover slip is lowered onto the onion", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 322.0359090169271, "r": 390.6875, "b": 308.45526123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Question3 continueson thenextpage", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 15, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 16, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 496.8157958984375, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3 shows what the student saw unde", "furniture": false}, {"page": 16, "kind": "text", "label": "caption", "bbox": {"l": 268.06911214192706, "t": 736.6699829101562, "r": 314.15671793619794, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 360.6671142578125, "t": 704.4159545898438, "r": 395.7613525390625, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "text": "CellZ", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 357.2845458984375, "t": 635.6639404296875, "r": 385.6136067708333, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "text": "\u00d7400", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 245.23673502604166, "t": 599.1659545898438, "r": 280.7537841796875, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "text": "4.8 cm", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 539.3262329101562, "r": 101.47727457682292, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "text": "03.3", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 538.0530395507812, "r": 315.42519124348956, "b": 524.472391764323, "coord_origin": "BOTTOMLEFT"}, "text": "The length of cell Z in Figure 3 is 4.8c", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 499.00868733723956, "r": 276.94838460286456, "b": 486.70123291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Calculatethereal length of cell Z.", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 474.81817626953125, "r": 304.4318033854167, "b": 460.38873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Give your answer in micrometres (\u03bcm).", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 461.66192626953125, "r": 536.1382242838541, "b": 447.23248291015625, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 253.69317626953125, "t": 111.96026611328125, "r": 362.3583984375, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "text": "Real lengthofcellZ=", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 507.3863525390625, "t": 109.41396077473962, "r": 523.8764241536459, "b": 99.65281168619788, "coord_origin": "BOTTOMLEFT"}, "text": "\u03bcm", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 360.6671142578125, "t": 704.4159545898438, "r": 395.7613525390625, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "text": "CellZ", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 357.2845458984375, "t": 635.6639404296875, "r": 385.6136067708333, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "text": "\u00d7400", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 245.23673502604166, "t": 599.1659545898438, "r": 280.7537841796875, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "text": "4.8 cm", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 16, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 17, "kind": "text", "label": "page_header", "bbox": {"l": 283.29071044921875, "t": 811.3635304768881, "r": 295.97536214192706, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 391.1103108723958, "t": 604.6830851236979, "r": 405.4862467447917, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "text": "\u81ea", "furniture": false}, {"page": 17, "kind": "text", "label": "section_header", "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 359.8214925130208, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4 shows thestudent's drawingofFig", "furniture": false}, {"page": 17, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 737.0943806966146, "r": 314.57952880859375, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4", "furniture": false}, {"page": 17, "kind": "text", "label": "section_header", "bbox": {"l": 224.9412841796875, "t": 696.3524373372396, "r": 322.19032796223956, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "text": "ONION CELLS", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 391.1103108723958, "t": 604.6830851236979, "r": 405.4862467447917, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "text": "\u81ea", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 468.02785237630206, "r": 101.9000956217448, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "text": "03.4", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 466.75465901692706, "r": 437.1979166666667, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Give two ways the student could improve ", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 453.17401123046875, "r": 536.1382242838541, "b": 440.01776123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 374.23651123046875, "r": 121.77272542317708, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 17, "kind": "text", "label": "list_item", "bbox": {"l": 47.356058756510414, "t": 288.08428955078125, "r": 380.5397542317708, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "text": "03.5 Onion cells can be seen using an el", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 262.1961873372396, "r": 484.1311442057292, "b": 235.45928955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Give two ways onion cells would look dif", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 236.73248291015625, "r": 536.5610758463541, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 156.94618733723962, "r": 121.77272542317708, "b": 148.45831298828125, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 207.1827596028646, "t": 95.83331298828125, "r": 370.3920491536458, "b": 82.25266520182288, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for thenextquestion", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 157.37058512369788, "r": 568.272705078125, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 17, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 18, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "04", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.0167541503906, "r": 364.8953450520833, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Plants and animals have many defence res", "furniture": false}, {"page": 18, "kind": "text", "label": "checkbox_selected", "bbox": {"l": 47.77887980143229, "t": 723.0893351236979, "r": 295.1297200520833, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "text": "04.1 Table5 showssomeplant defences.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 683.6205851236979, "r": 535.7154134114584, "b": 645.0006306966146, "coord_origin": "BOTTOMLEFT"}, "text": "Identify whether each defence is a chemi", "furniture": false}, {"page": 18, "kind": "text", "label": "section_header", "bbox": {"l": 304.4318033854167, "t": 633.1175537109375, "r": 345.445556640625, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "text": "Table 5", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 79.06770833333333, "t": 24.53489176432288, "r": 84.14157104492188, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 18, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 19, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 494.34035237630206, "r": 101.9000956217448, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "text": "04.2", "furniture": false}, {"page": 19, "kind": "text", "label": "caption", "bbox": {"l": 304.0089925130208, "t": 711.2062683105469, "r": 349.6737467447917, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 247.7736612955729, "t": 557.575215657552, "r": 285.82763671875, "b": 545.692159016927, "coord_origin": "BOTTOMLEFT"}, "text": "Hornet", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 350.5194091796875, "t": 557.9996134440105, "r": 416.9024658203125, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Hornet Moth", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 446.0771484375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Mimicry is a mechanical adaptation seen ", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.9774373372396, "r": 252.00189208984375, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5 shows two insects.", "furniture": false}, {"page": 19, "kind": "text", "label": "caption", "bbox": {"l": 304.0089925130208, "t": 711.2062683105469, "r": 349.6737467447917, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 247.7736612955729, "t": 557.575215657552, "r": 285.82763671875, "b": 545.692159016927, "coord_origin": "BOTTOMLEFT"}, "text": "Hornet", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 350.5194091796875, "t": 557.9996134440105, "r": 416.9024658203125, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Hornet Moth", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 494.34035237630206, "r": 101.9000956217448, "b": 479.91090901692706, "coord_origin": "BOTTOMLEFT"}, "text": "04.2", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 493.06715901692706, "r": 407.6003824869792, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Hornets are insects that sting other ani", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 462.93511962890625, "r": 313.73388671875, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Hornetmothsdonotstingother animals.", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 423.46636962890625, "r": 374.1974283854167, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest howmimicry helps thehornet moth ", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 411.15887451171875, "r": 536.1382242838541, "b": 396.72947184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 295.29901123046875, "r": 390.6875, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "text": "Question4continueson thenextpage", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.3262125651041, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 20, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 575.3998209635417, "r": 101.9000956217448, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "text": "04.3", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.441151936849, "r": 358.5530192057292, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Adult hornet moths lay eggs that hatch i", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 749.4018351236979, "r": 329.3782958984375, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6 shows the larvae of a hornet mo", "furniture": false}, {"page": 20, "kind": "text", "label": "section_header", "bbox": {"l": 302.3177083333333, "t": 723.9381306966146, "r": 348.4053141276042, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 391.5331217447917, "t": 644.5762329101562, "r": 413.5198567708333, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "text": "J", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 575.3998209635417, "r": 101.9000956217448, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "text": "04.3", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 574.1266276041667, "r": 262.5724283854167, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "text": "The larvae of the hornet moth:", "furniture": false}, {"page": 20, "kind": "text", "label": "list_item", "bbox": {"l": 115.007568359375, "t": 553.7556762695312, "r": 260.4583333333333, "b": 541.8725992838542, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7live inside the roots of trees", "furniture": false}, {"page": 20, "kind": "text", "label": "list_item", "bbox": {"l": 119.2357889811198, "t": 533.809102376302, "r": 308.6600341796875, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "text": "usethetreerootsasasourceoffood", "furniture": false}, {"page": 20, "kind": "text", "label": "list_item", "bbox": {"l": 119.2357889811198, "t": 514.7113037109375, "r": 280.33095296223956, "b": 502.4038492838542, "coord_origin": "BOTTOMLEFT"}, "text": "causedamage to the treeroots.", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 476.51572672526044, "r": 430.4327392578125, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why a tree might die if the root", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 463.35947672526044, "r": 535.7154134114584, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 24.53489176432288, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 391.5331217447917, "t": 644.5762329101562, "r": 413.5198567708333, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "text": "J", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 20, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 390.78794352213544, "r": 566.5814208984375, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "04.4", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 469.7552083333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "The larvae of the hornet moth form when ", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 413.5198567708333, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how mitosis produces two geneti", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 734.5480041503906, "r": 536.1382242838541, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 452.32521565755206, "r": 103.16855875651042, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "04.5", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 451.47642008463544, "r": 493.0104166666667, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "text": "The cells which are first formed from th", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 411.15887451171875, "r": 467.6410725911458, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Name the process by which these stem cel", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 399.27581787109375, "r": 536.1382242838541, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 390.78794352213544, "r": 566.5814208984375, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 246.06915283203125, "r": 370.8148600260417, "b": 234.18609619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverforthenextquestion", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": true}, {"page": 21, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 22, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 64.26893615722656, "t": 26.23248291015625, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 22, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 23, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "05 Water and carbon dioxide are exchange", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 760.4361114501953, "r": 260.03550211588544, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "throughpores called stomata.", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 709.9330851236979, "r": 100.63162231445312, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "text": "05.1", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 708.659901936849, "r": 439.7348225911458, "b": 693.3816731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Name the cells that control the opening ", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 695.0792541503906, "r": 536.1382242838541, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 577.9461873372395, "r": 388.5733642578125, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "text": "Water moves through a plant in the trans", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 527.018778483073, "r": 108.24242146809895, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 105.70548502604167, "t": 524.8967895507812, "r": 490.0506591796875, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Describe two differences between the tra", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 510.8917643229167, "r": 536.1382242838541, "b": 497.73549397786456, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 332.22137451171875, "r": 533.1785074869791, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "text": "05.3 Which environmental conditions woul", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 304.2113240559896, "r": 535.7154134114584, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 289.7818806966146, "r": 201.26324462890625, "b": 274.92803955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 23, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 249.88873291015625, "r": 224.09564208984375, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "text": "Coldwithlowhumidity", "furniture": false}, {"page": 23, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 212.96636962890625, "r": 227.90104166666666, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Cold with high humidity", "furniture": false}, {"page": 23, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 175.61956787109375, "r": 230.86079915364584, "b": 162.03892008463538, "coord_origin": "BOTTOMLEFT"}, "text": "Warmwithlowhumidity", "furniture": false}, {"page": 23, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 139.54595947265625, "r": 234.66617838541666, "b": 124.69211832682288, "coord_origin": "BOTTOMLEFT"}, "text": "Warm with high humidity", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 64.26893615722656, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 394.4928792317708, "t": 686.1669616699219, "r": 416.9024658203125, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 104.85984293619792, "t": 674.7082926432291, "r": 126.42376708984375, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 404.2177734375, "t": 660.2788492838541, "r": 529.7958984375, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "text": "-- Low atmospheric CO2", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 51.161458333333336, "t": 636.0883382161459, "r": 108.66524251302083, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Meanwidth", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 420.2850341796875, "t": 636.0883382161459, "r": 509.9232991536458, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Normal conditions", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 51.161458333333336, "t": 624.2052612304688, "r": 104.85984293619792, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "text": "ofstomata", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 617.4149373372396, "r": 125.15530395507812, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 612.7466023763021, "r": 104.85984293619792, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "text": "in arbitrary", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 600.0147298177084, "r": 76.95359802246094, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "text": "units", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 118.39014689127605, "t": 558.848409016927, "r": 125.15530395507812, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 106.97395833333333, "t": 549.0873209635417, "r": 151.3702596028646, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "text": "Midnight", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 223.67281087239584, "t": 550.784891764323, "r": 261.30397542317706, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Midday", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 334.45216878255206, "t": 549.9361165364583, "r": 378.0028483072917, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Midnight", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 213.94791666666666, "t": 521.0772298177083, "r": 271.87451171875, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Time of day", "furniture": false}, {"page": 24, "kind": "text", "label": "caption", "bbox": {"l": 114.58474731445312, "t": 774.441151936849, "r": 479.9029134114583, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7 shows information about the mea", "furniture": false}, {"page": 24, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 729.0308736165365, "r": 313.73388671875, "b": 714.6014302571615, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 394.4928792317708, "t": 686.1669616699219, "r": 416.9024658203125, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 104.85984293619792, "t": 674.7082926432291, "r": 126.42376708984375, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 404.2177734375, "t": 660.2788492838541, "r": 529.7958984375, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "text": "-- Low atmospheric CO2", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 51.161458333333336, "t": 636.0883382161459, "r": 108.66524251302083, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Meanwidth", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 420.2850341796875, "t": 636.0883382161459, "r": 509.9232991536458, "b": 624.6296590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Normal conditions", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 51.161458333333336, "t": 624.2052612304688, "r": 104.85984293619792, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "text": "ofstomata", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 617.4149373372396, "r": 125.15530395507812, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 612.7466023763021, "r": 104.85984293619792, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "text": "in arbitrary", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 600.0147298177084, "r": 76.95359802246094, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "text": "units", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 118.39014689127605, "t": 558.848409016927, "r": 125.15530395507812, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 106.97395833333333, "t": 549.0873209635417, "r": 151.3702596028646, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "text": "Midnight", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 223.67281087239584, "t": 550.784891764323, "r": 261.30397542317706, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Midday", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 334.45216878255206, "t": 549.9361165364583, "r": 378.0028483072917, "b": 535.082275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Midnight", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 213.94791666666666, "t": 521.0772298177083, "r": 271.87451171875, "b": 506.64780680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Time of day", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 441.29095458984375, "r": 101.054443359375, "b": 428.13470458984375, "coord_origin": "BOTTOMLEFT"}, "text": "05.4", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 440.44215901692706, "r": 470.600830078125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "The changes in the mean width of the sto", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 400.97340901692706, "r": 178.0080362955729, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 387.81715901692706, "r": 536.1382242838541, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 24, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "05.5", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 509.5004475911458, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "The changes in the mean width of the sto", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 732.8504231770834, "r": 462.9900309244792, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how the difference helps the pla", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 707.38671875, "r": 535.7154134114584, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 502.4038492838542, "r": 370.3920491536458, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Turn overfor the nextquestion", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 552.2054850260416, "t": 584.3121134440105, "r": 567.8498942057291, "b": 572.004659016927, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 78.22206115722656, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 153.90719604492188, "t": 705.2647399902344, "r": 209.296875, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "text": "Organism", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 154.33001708984375, "t": 670.0399373372396, "r": 164.90056355794272, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 154.75283813476562, "t": 644.1518351236979, "r": 164.90056355794272, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 154.33001708984375, "t": 619.1125284830729, "r": 165.74620564778647, "b": 603.4098917643229, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 154.75283813476562, "t": 591.9512329101562, "r": 164.90056355794272, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 154.75283813476562, "t": 566.0631306966145, "r": 164.47774251302084, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "E", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 231.28361002604166, "t": 709.5086873372396, "r": 299.3579508463542, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "text": "Surface area", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 248.61930338541666, "t": 699.3232116699219, "r": 281.59942626953125, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "text": "in m2", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 235.93465169270834, "t": 670.4643351236979, "r": 294.7069091796875, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "text": "6.04 x 10-8", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 235.93465169270834, "t": 644.5762329101562, "r": 294.7069091796875, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "text": "3.21 x 10-3", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 235.93465169270834, "t": 618.6881306966146, "r": 294.7069091796875, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "text": "9.96 x 10-3", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 235.5118408203125, "t": 592.3756306966146, "r": 293.86126708984375, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "text": "4.61 x 10-1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 238.4715779622396, "t": 566.487528483073, "r": 291.7471516927083, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "text": "1.99 \u00d7 101", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 394.9156901041667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Table 6 shows information about five dif", "furniture": false}, {"page": 26, "kind": "text", "label": "section_header", "bbox": {"l": 304.4318033854167, "t": 744.309092203776, "r": 345.445556640625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "Table 6", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 337.83473714192706, "t": 709.9330851236979, "r": 379.6941324869792, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "text": "Volume", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 342.4857991536458, "t": 699.7475992838541, "r": 375.4659016927083, "b": 684.4693806966146, "coord_origin": "BOTTOMLEFT"}, "text": "in m3", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 327.68701171875, "t": 670.8887329101562, "r": 390.2646484375, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "text": "1.65 \u00d7 10-12", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 328.9554850260417, "t": 645.4250284830729, "r": 388.5733642578125, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "text": "1.25 \u00d7 10-6", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 329.80112711588544, "t": 619.1125284830729, "r": 387.7277425130208, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "text": "1.35 \u00d7 10-4", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 329.3782958984375, "t": 593.2244262695312, "r": 388.5733642578125, "b": 579.643778483073, "coord_origin": "BOTTOMLEFT"}, "text": "1.57 \u00d7 10-2", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 331.49241129557294, "t": 566.487528483073, "r": 386.0364583333333, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "text": "6.12 \u00d7 100", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 410.9829508463542, "t": 710.3574829101562, "r": 493.0104166666667, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "text": "Surface area to", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 418.59375, "t": 696.7768351236979, "r": 485.8224283854167, "b": 685.3181660970052, "coord_origin": "BOTTOMLEFT"}, "text": "volumeratio", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 431.2784016927083, "t": 670.8887329101562, "r": 473.1377766927083, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "text": "36606:1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 437.1979166666667, "t": 645.0006306966146, "r": 473.1377766927083, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "text": "2568:1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 453.6879475911458, "t": 619.1125284830729, "r": 473.5605875651042, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "text": "X:1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 449.0369059244792, "t": 592.8000284830729, "r": 473.1377766927083, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "text": "29:1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 455.3792317708333, "t": 566.487528483073, "r": 473.5605875651042, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "3:1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 494.76475016276044, "r": 101.47727457682292, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "06.1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 492.64276123046875, "r": 255.80729166666666, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "text": "CalculatevalueXinTable6.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 468.02785237630206, "r": 346.7139892578125, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Give your answer to the nearest whole nu", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 454.02280680338544, "r": 535.2926025390625, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 321.3446858723958, "t": 274.0792439778646, "r": 459.1846516927083, "b": 259.22540283203125, "coord_origin": "BOTTOMLEFT"}, "text": "X (nearest whole number) =", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 222.30303955078125, "r": 103.5913798014323, "b": 206.17604573567712, "coord_origin": "BOTTOMLEFT"}, "text": "06.2", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 204.47845458984375, "r": 194.49810791015625, "b": 191.74660237630212, "coord_origin": "BOTTOMLEFT"}, "text": "to volume ratio?", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 177.31715901692712, "r": 178.43086751302084, "b": 164.58530680338538, "coord_origin": "BOTTOMLEFT"}, "text": "Use Table 6.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 164.16090901692712, "r": 535.7154134114584, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 64.26893615722656, "t": 27.08127848307288, "r": 86.25567626953125, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 26, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 27, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "27", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 102.32291666666667, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 484.553955078125, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Organism B exchanges gases with the envi", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 743.0359090169271, "r": 504.8494059244792, "b": 729.8796590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Organism D exchanges gases with the envi", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 688.2889302571615, "r": 254.1159871419271, "b": 674.7082926432291, "coord_origin": "BOTTOMLEFT"}, "text": "require a respiratory system.", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 676.4058736165365, "r": 536.1382242838541, "b": 661.9764404296875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 483.73044840494794, "r": 390.2646484375, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Question6continuesonthenextpage", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 479.4801025390625, "t": 73.76470947265625, "r": 543.7490234375, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 63.84611511230469, "t": 27.08127848307288, "r": 87.10132853190105, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "section_header", "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 245.23673502604166, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Table6 isrepeatedbelow.", "furniture": false}, {"page": 28, "kind": "text", "label": "caption", "bbox": {"l": 303.58616129557294, "t": 746.0066731770834, "r": 345.8683675130208, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "text": "Table 6", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 495.18914794921875, "r": 416.4796142578125, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Table 7 shows information about organism", "furniture": false}, {"page": 28, "kind": "text", "label": "caption", "bbox": {"l": 304.4318033854167, "t": 456.99355061848956, "r": 345.8683675130208, "b": 443.83730061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Table 7", "furniture": false}, {"page": 28, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 772.3191782633463, "r": 101.47727457682292, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "06.4", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 772.3191782633463, "r": 101.47727457682292, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "06.4", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 487.9365234375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "Organisms D and E both keep a constant b", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 732.0016377766927, "r": 512.8830159505209, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the metabolic rate of organi", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 694.6548563639323, "r": 323.88161214192706, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Use informationfromTable6 and Table 7.", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 681.4986063639323, "r": 535.2926025390625, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 399.70021565755206, "r": 390.6875, "b": 385.69517008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Question6continuesonthenextpage", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.18406168619788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 29, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 789.7193756103516, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 103.16855875651042, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "06.5", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 468.9095458984375, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Organism D and organism E both have alve", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 732.8504231770834, "r": 328.10984293619794, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure8showssomealveoliandsomevilli.", "furniture": false}, {"page": 30, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 694.6548563639323, "r": 314.15671793619794, "b": 679.801025390625, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 234.24336751302084, "t": 496.46230061848956, "r": 272.72015380859375, "b": 483.30605061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Alveoli", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 397.8754475911458, "t": 496.03794352213544, "r": 420.2850341796875, "b": 483.30605061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Villi", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 429.83229573567706, "r": 468.0639241536458, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how the alveoli and the villi a", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 417.10044352213544, "r": 535.7154134114584, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 553.0511067708334, "t": 139.97035725911462, "r": 567.4270833333334, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 66.38304646809895, "t": 24.53489176432288, "r": 72.30255635579427, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 77.79924011230469, "t": 24.95928955078125, "r": 84.56439208984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": true}, {"page": 30, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "31", "furniture": true}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 207.1827596028646, "t": 775.2899424235026, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover for thenext question", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 24.95928955078125, "r": 72.72537740071614, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 74.18910725911462, "r": 543.7490234375, "b": 60.60845947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 31, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 32, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 80.33617146809895, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "07", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 732.8504231770834, "r": 101.47727457682292, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "07.1", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 368.2779134114583, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "Human immunodeficiency virus (Hiv) is a ", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 731.152842203776, "r": 437.6207275390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "text": "Give one way HiV can spread from one per", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 600.863525390625, "r": 468.4867350260417, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Table 8 shows information about new case", "furniture": false}, {"page": 32, "kind": "text", "label": "section_header", "bbox": {"l": 304.4318033854167, "t": 572.8534545898438, "r": 345.445556640625, "b": 560.9703776041667, "coord_origin": "BOTTOMLEFT"}, "text": "Table8", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 363.20225016276044, "r": 422.8219401041667, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "07]. 2 Describe the trends shown in Tabl", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 192.17100016276038, "r": 102.32291666666667, "b": 174.77077229817712, "coord_origin": "BOTTOMLEFT"}, "text": "07.3", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 64.26893615722656, "t": 27.08127848307288, "r": 86.67849731445312, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 175.19517008463538, "r": 191.9611612955729, "b": 163.73651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "2014 and 2018.", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 346.65081787109375, "r": 535.7154134114584, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 162.88771565755212, "r": 535.7154134114584, "b": 149.73150634765625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 718.8453877766927, "r": 536.1382242838541, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.1855875651041, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 32, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 25.80808512369788, "r": 545.4403076171875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 33, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "33", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "07.4", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 534.4469401041666, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the ratio of new cases of HIV ", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 746.85546875, "r": 312.0426025390625, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Giveyouranswerto3significant figures.", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 734.5480041503906, "r": 536.1382242838541, "b": 720.1185709635416, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 241.0085245768229, "t": 553.331278483073, "r": 383.49951171875, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "text": "Ratio (3 significant figures)=", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 474.81817626953125, "r": 101.9000956217448, "b": 459.53993733723956, "coord_origin": "BOTTOMLEFT"}, "text": "07.5", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 474.39377848307294, "r": 504.0037841796875, "b": 448.93007405598956, "coord_origin": "BOTTOMLEFT"}, "text": "In the UK population the total number of", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 436.62261962890625, "r": 514.9971516927084, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "The data in Table 8 is used to compare t", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 399.70021565755206, "r": 528.5274658203125, "b": 373.81211344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest how the data could be presented ", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 373.38771565755206, "r": 535.7154134114584, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 219.33229573567712, "r": 390.6875, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "text": "Question7continuesonthenextpage", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 479.0572916666667, "t": 73.76470947265625, "r": 543.3262125651041, "b": 61.03285725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 64.26893615722656, "t": 26.65688069661462, "r": 86.25567626953125, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "33", "furniture": true}, {"page": 33, "kind": "text", "label": "page_footer", "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 34, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "34", "furniture": true}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 478.6344401041667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Scientists have been working to produce ", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 735.8211873372396, "r": 102.32291666666667, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "07.6", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 471.023681640625, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how a vaccine for HiV could work", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 706.5379231770834, "r": 536.5610758463541, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 422.61757405598956, "r": 350.0965983072917, "b": 410.31011962890625, "coord_origin": "BOTTOMLEFT"}, "text": "A person with late stage HIV infection h", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 397.15386962890625, "r": 391.1103108723958, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Scientists have produced monoclonal anti", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 384.42197672526044, "r": 525.5677083333334, "b": 372.11452229817706, "coord_origin": "BOTTOMLEFT"}, "text": "The monoclonal antibodies can prevent a ", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 347.07521565755206, "r": 105.70548502604167, "b": 331.37261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "220", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 112.47064208984375, "t": 345.80202229817706, "r": 429.5871175130208, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how the monoclonal antibody for", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 333.07017008463544, "r": 536.1382242838541, "b": 317.3675740559896, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 85.83285522460938, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "34", "furniture": true}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 34, "kind": "text", "label": "page_footer", "bbox": {"l": 480.7485758463542, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 35, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "35", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "07.8", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 338.6803792317708, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9 shows how HIV enters a human ce", "furniture": false}, {"page": 35, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 734.1236063639323, "r": 347.5596516927083, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 147.56486002604166, "t": 690.8353068033854, "r": 163.6321004231771, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "text": "HIV", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 230.86079915364584, "t": 690.4109090169271, "r": 290.4786783854167, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "text": "HIV antigen", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 367.0094401041667, "t": 690.4109090169271, "r": 469.3323567708333, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "text": "HIV genetic material", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 85.4100341796875, "t": 541.8725992838542, "r": 142.06817626953125, "b": 530.4139404296875, "coord_origin": "BOTTOMLEFT"}, "text": "Human cell", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 202.10888671875, "t": 545.692159016927, "r": 318.80775960286456, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "text": "HIVantigenbindingsite", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 475.66697184244794, "r": 529.7958984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest how the monoclonal antibody for ", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 432.37864176432294, "r": 265.5321858723958, "b": 419.64678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Use information from Figure 9.", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 419.64678955078125, "r": 535.2926025390625, "b": 406.49053955078125, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 35, "kind": "text", "label": "section_header", "bbox": {"l": 231.28361002604166, "t": 163.31211344401038, "r": 346.7139892578125, "b": 152.27781168619788, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOFQUESTIONS", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 546.2859700520834, "t": 789.2949829101562, "r": 585.6083984375, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 284.68914794921875, "r": 566.1586100260416, "b": 272.38165283203125, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": false}, {"page": 35, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.4403076171875, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 36, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "36", "furniture": true}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 26.65688069661462, "r": 85.83285522460938, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "36", "furniture": true}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 36, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 37, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "37", "furniture": true}, {"page": 37, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 37, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 37, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 37, "kind": "text", "label": "text", "bbox": {"l": 66.38304646809895, "t": 24.95928955078125, "r": 71.87973531087239, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 37, "kind": "text", "label": "text", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 37, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 38, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "38", "furniture": true}, {"page": 38, "kind": "text", "label": "page_header", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 38, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 38, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 38, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 38, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 25.38368733723962, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 38, "kind": "text", "label": "text", "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.83285522460938, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 38, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 39, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "39", "furniture": true}, {"page": 39, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 39, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 764.6800638834635, "r": 93.86647542317708, "b": 753.2213948567709, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 39, "kind": "text", "label": "text", "bbox": {"l": 244.81392415364584, "t": 765.9532470703125, "r": 383.9223225911458, "b": 754.0701802571615, "coord_origin": "BOTTOMLEFT"}, "text": "Additionalpage,ifrequired.", "furniture": false}, {"page": 39, "kind": "text", "label": "text", "bbox": {"l": 55.389678955078125, "t": 753.6457926432291, "r": 88.36979166666667, "b": 743.4603068033854, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 39, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 754.4945780436198, "r": 442.2717692057292, "b": 741.3383280436198, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 39, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 25.38368733723962, "r": 72.72537740071614, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 39, "kind": "text", "label": "text", "bbox": {"l": 70.18844604492188, "t": 26.23248291015625, "r": 85.4100341796875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 39, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 545.8631591796875, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 40, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": true}, {"page": 40, "kind": "text", "label": "section_header", "bbox": {"l": 54.12121073404948, "t": 162.88771565755212, "r": 133.61173502604166, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Copyrightinformation", "furniture": false}, {"page": 40, "kind": "text", "label": "text", "bbox": {"l": 52.852742513020836, "t": 144.63873291015625, "r": 521.7622884114584, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "text": "For confidentiality purposes,all acknowl", "furniture": false}, {"page": 40, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 107.71636962890625, "r": 460.453125, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "text": "andAQAwillbehappytorectifyanyomissionsof", "furniture": false}, {"page": 40, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 90.74053955078125, "r": 241.43133544921875, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Copyright @ 2022 AQA and its licensors.A", "furniture": false}, {"page": 40, "kind": "text", "label": "text", "bbox": {"l": 66.38304646809895, "t": 24.11049397786462, "r": 72.30255635579427, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": true}, {"page": 40, "kind": "text", "label": "section_header", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 40, "kind": "text", "label": "text", "bbox": {"l": 189.42423502604166, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 40, "kind": "text", "label": "text", "bbox": {"l": 366.5866292317708, "t": 40.66192626953125, "r": 509.5004475911458, "b": 30.90085856119788, "coord_origin": "BOTTOMLEFT"}, "text": "226G8461/1H", "furniture": false}, {"page": 40, "kind": "text", "label": "text", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 40, "kind": "text", "label": "page_footer", "bbox": {"l": 480.3257649739583, "t": 24.95928955078125, "r": 545.0174967447916, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8461/1H", "furniture": true}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 38.00133514404297, "t": 797.4589767456055, "r": 168.1601104736328, "b": 750.2433547973633, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 46.8770866394043, "t": 53.330078125, "r": 252.03916931152344, "b": 17.5728759765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 489.92138671875, "t": 549.9878234863281, "r": 533.2274169921875, "b": 496.6566467285156, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 48.88732147216797, "t": 53.059814453125, "r": 104.56513977050781, "b": 16.9586181640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 49.12738800048828, "t": 53.19232177734375, "r": 104.33588409423828, "b": 17.3953857421875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 49.179264068603516, "t": 53.1982421875, "r": 104.26579284667969, "b": 17.73736572265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 49.12112808227539, "t": 53.14373779296875, "r": 104.327880859375, "b": 17.5670166015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 45.735694885253906, "t": 448.7847595214844, "r": 105.40312194824219, "b": 432.12158203125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 49.06983947753906, "t": 53.17987060546875, "r": 104.2056884765625, "b": 17.67327880859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 49.095619201660156, "t": 53.34234619140625, "r": 104.30477142333984, "b": 17.5211181640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 39.5867805480957, "t": 788.3417549133301, "r": 539.7913208007812, "b": 77.27215576171875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 49.21787643432617, "t": 53.2222900390625, "r": 104.35285186767578, "b": 17.7176513671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 49.18645477294922, "t": 53.17108154296875, "r": 104.25172424316406, "b": 17.64910888671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 233.9642791748047, "t": 683.4948272705078, "r": 347.205322265625, "b": 554.4544982910156, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 49.193878173828125, "t": 53.23822021484375, "r": 104.41835021972656, "b": 17.68609619140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 49.28749084472656, "t": 53.192626953125, "r": 104.4219741821289, "b": 18.02410888671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 44.95881652832031, "t": 776.5109939575195, "r": 105.72966003417969, "b": 758.9666137695312, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 49.06380844116211, "t": 53.18597412109375, "r": 104.28301239013672, "b": 17.581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 49.16658401489258, "t": 53.1641845703125, "r": 104.45934295654297, "b": 17.537353515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 543.3030395507812, "t": 634.2982940673828, "r": 575.8578491210938, "b": 592.6698303222656, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 49.108829498291016, "t": 53.17132568359375, "r": 104.2585220336914, "b": 17.90985107421875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 49.16040802001953, "t": 53.16973876953125, "r": 104.38372039794922, "b": 17.7064208984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 82.07044219970703, "t": 540.7142944335938, "r": 104.0030288696289, "b": 524.5466003417969, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 49.1007080078125, "t": 53.2117919921875, "r": 104.33074951171875, "b": 17.74853515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 185.54078674316406, "t": 710.5711212158203, "r": 393.96270751953125, "b": 588.0393524169922, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 49.06275177001953, "t": 53.25390625, "r": 104.31889343261719, "b": 17.77984619140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 156.39285278320312, "t": 667.3309478759766, "r": 423.3988342285156, "b": 519.7236328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 49.121463775634766, "t": 53.21649169921875, "r": 104.3064956665039, "b": 17.7779541015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 45.82774353027344, "t": 496.00555419921875, "r": 105.47586059570312, "b": 478.4892272949219, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 49.15392303466797, "t": 53.19732666015625, "r": 104.37195587158203, "b": 17.78106689453125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 219.59185791015625, "t": 708.927734375, "r": 427.3768615722656, "b": 546.8448181152344, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 45.496910095214844, "t": 576.65966796875, "r": 105.91410064697266, "b": 559.7376403808594, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 49.04840087890625, "t": 53.253662109375, "r": 104.3270492553711, "b": 17.5347900390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 227.0424346923828, "t": 684.4001617431641, "r": 420.9546203613281, "b": 616.7417907714844, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 542.1177978515625, "t": 415.42755126953125, "r": 574.8453369140625, "b": 373.7242736816406, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 49.26432418823242, "t": 53.17437744140625, "r": 104.31494903564453, "b": 17.68426513671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 48.83792495727539, "t": 53.11871337890625, "r": 104.64608764648438, "b": 16.5157470703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 49.234535217285156, "t": 53.13446044921875, "r": 104.30413055419922, "b": 17.3516845703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 50.27867889404297, "t": 697.9160461425781, "r": 534.2479858398438, "b": 506.797607421875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 46.177696228027344, "t": 443.3124694824219, "r": 80.92774963378906, "b": 427.13104248046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 82.27433013916016, "t": 443.8872985839844, "r": 104.73280334472656, "b": 427.0744323730469, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 49.17908477783203, "t": 53.28521728515625, "r": 104.2843246459961, "b": 17.65447998046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 49.31337356567383, "t": 53.187255859375, "r": 104.32842254638672, "b": 17.487060546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 47.00654983520508, "t": 775.9247817993164, "r": 80.57906341552734, "b": 759.4455184936523, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 82.81494140625, "t": 496.06298828125, "r": 104.88884735107422, "b": 479.7900085449219, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 81.45573425292969, "t": 222.228759765625, "r": 104.41118621826172, "b": 205.77960205078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 49.15398406982422, "t": 53.2298583984375, "r": 104.27017974853516, "b": 17.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 49.21142578125, "t": 53.20953369140625, "r": 104.35021209716797, "b": 17.45208740234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 49.060306549072266, "t": 53.243408203125, "r": 104.18020629882812, "b": 17.59002685546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 47.5270881652832, "t": 774.5544281005859, "r": 104.35311889648438, "b": 758.357048034668, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 49.25188446044922, "t": 53.1590576171875, "r": 104.30789947509766, "b": 17.57330322265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 182.57284545898438, "t": 660.1277008056641, "r": 323.5049743652344, "b": 512.7030639648438, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 349.4798278808594, "t": 668.1431274414062, "r": 466.3904113769531, "b": 502.2280578613281, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 49.17033386230469, "t": 53.19232177734375, "r": 104.32601928710938, "b": 17.66766357421875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 38.6482048034668, "t": 789.2455253601074, "r": 541.27734375, "b": 71.17132568359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 48.9473762512207, "t": 53.15509033203125, "r": 104.62229919433594, "b": 17.2017822265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 49.06572341918945, "t": 53.1595458984375, "r": 104.2694320678711, "b": 17.48858642578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 33, "kind": "picture", "label": "picture", "bbox": {"l": 49.204193115234375, "t": 53.1688232421875, "r": 104.37303924560547, "b": 17.4703369140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 34, "kind": "picture", "label": "picture", "bbox": {"l": 49.161170959472656, "t": 53.15081787109375, "r": 104.27032470703125, "b": 17.639404296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 35, "kind": "picture", "label": "picture", "bbox": {"l": 39.10532760620117, "t": 789.2540054321289, "r": 539.6693115234375, "b": 76.10986328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 35, "kind": "picture", "label": "picture", "bbox": {"l": 49.07066345214844, "t": 53.27899169921875, "r": 104.23448944091797, "b": 17.56280517578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 36, "kind": "picture", "label": "picture", "bbox": {"l": 48.913848876953125, "t": 53.150634765625, "r": 104.60427856445312, "b": 16.85711669921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 37, "kind": "picture", "label": "picture", "bbox": {"l": 49.14103317260742, "t": 53.27081298828125, "r": 104.3841552734375, "b": 17.4703369140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 38, "kind": "picture", "label": "picture", "bbox": {"l": 49.104557037353516, "t": 53.3353271484375, "r": 104.38912200927734, "b": 17.3426513671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 39, "kind": "picture", "label": "picture", "bbox": {"l": 49.1429557800293, "t": 53.29705810546875, "r": 104.4314193725586, "b": 17.40765380859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 40, "kind": "picture", "label": "picture", "bbox": {"l": 49.0760498046875, "t": 53.3773193359375, "r": 104.37796020507812, "b": 17.49005126953125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 40, "kind": "picture", "label": "picture", "bbox": {"l": 350.3396301269531, "t": 67.80126953125, "r": 528.1468505859375, "b": 32.028076171875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "table", "label": "table", "bbox": {"l": 442.17010498046875, "t": 395.0335693359375, "r": 542.979736328125, "b": 211.3961181640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "table", "label": "table", "bbox": {"l": 212.70263671875, "t": 682.6695251464844, "r": 435.9120178222656, "b": 498.4666748046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 12, "kind": "table", "label": "table", "bbox": {"l": 155.34446716308594, "t": 703.4873962402344, "r": 493.14569091796875, "b": 488.68280029296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 14, "kind": "table", "label": "table", "bbox": {"l": 91.9642105102539, "t": 374.9870300292969, "r": 522.89111328125, "b": 173.91448974609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "table", "label": "table", "bbox": {"l": 151.78521728515625, "t": 606.2125244140625, "r": 496.1224060058594, "b": 461.1795654296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 28, "kind": "table", "label": "table", "bbox": {"l": 149.23580932617188, "t": 719.3758697509766, "r": 499.3244934082031, "b": 547.9515991210938, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 28, "kind": "table", "label": "table", "bbox": {"l": 220.48773193359375, "t": 431.4338684082031, "r": 427.6959228515625, "b": 337.92022705078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 32, "kind": "table", "label": "table", "bbox": {"l": 159.49160766601562, "t": 547.3089294433594, "r": 489.53790283203125, "b": 400.7843017578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}]} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/page_roles.json b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/page_roles.json new file mode 100644 index 0000000..61ded0f --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/page_roles.json @@ -0,0 +1,284 @@ +{ + "pages": { + "1": { + "role": "cover", + "chars": 854, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "2": { + "role": "blank", + "chars": 120, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "3": { + "role": "question", + "chars": 498, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "4": { + "role": "question", + "chars": 675, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "5": { + "role": "question", + "chars": 363, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "6": { + "role": "question", + "chars": 296, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "7": { + "role": "continuation", + "chars": 313, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "8": { + "role": "question", + "chars": 125, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "9": { + "role": "question", + "chars": 350, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "10": { + "role": "question", + "chars": 173, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "11": { + "role": "question", + "chars": 434, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "12": { + "role": "question", + "chars": 283, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "13": { + "role": "blank", + "chars": 80, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "14": { + "role": "question", + "chars": 496, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "15": { + "role": "question", + "chars": 269, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "16": { + "role": "question", + "chars": 275, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "17": { + "role": "question", + "chars": 336, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "18": { + "role": "question", + "chars": 222, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "19": { + "role": "question", + "chars": 351, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "20": { + "role": "question", + "chars": 307, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "21": { + "role": "question", + "chars": 357, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "22": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "23": { + "role": "question", + "chars": 522, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "24": { + "role": "question", + "chars": 431, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "25": { + "role": "question", + "chars": 276, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "26": { + "role": "question", + "chars": 408, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "27": { + "role": "question", + "chars": 251, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "28": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "29": { + "role": "question", + "chars": 271, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "30": { + "role": "question", + "chars": 251, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "31": { + "role": "blank", + "chars": 125, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "32": { + "role": "question", + "chars": 300, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "33": { + "role": "question", + "chars": 476, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "34": { + "role": "question", + "chars": 412, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "35": { + "role": "question", + "chars": 288, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "36": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "37": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "38": { + "role": "blank", + "chars": 129, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "39": { + "role": "blank", + "chars": 129, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "40": { + "role": "appendix", + "chars": 522, + "margins_enabled": true, + "source": "auto", + "confirmed": false + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/report.md b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/report.md new file mode 100644 index 0000000..3a95e21 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/report.md @@ -0,0 +1,15 @@ +# AQA GCSE Biology 8461/1H 2022 Jun (image-only OCR baseline) + +- **slug:** `b1-aqa-biology-8461-1h-2022jun` · **board:** aqa · **level:** GCSE · **path:** B1 image-only OCR (RapidOCR margin-pass) +- **questions/parts:** 7 / 40 +- **marks:** 94/100 (94.0% of official max) +- **coverage vs GT:** 93.0% (missed ['01.8', '07.2', '07.7']) +- **G6 verdict:** warn +- **answer-region count:** 246 + +**Flags (human-review hints):** +- [warn] C1_marks_sum: marks sum 94 below official max 100 (-6) — missing parts or unread marks +- [warn] C4_subpart_seq: sub-part gaps: Q01 missing ['8'], Q07 missing ['2', '7'] +- [warn] C5_coverage: 61.9% vs GT (26/42); missed ['07.2', '08.1', '08.2', '08.3', '08.4', '08.5', '09.1', '09.2', '09.3', '10.1'] + +**Artifacts:** `structured.json`, `validate.json`, `furniture.json`, `bands.json`, `page_roles.json`, `template.json`, `overlays/` (0 images) diff --git a/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/structured.json b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/structured.json new file mode 100644 index 0000000..26fa9bf --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/structured.json @@ -0,0 +1,4176 @@ +{ + "board": "aqa", + "paper_code": "8461/1", + "front_matter": { + "exam_board": "AQA", + "paper_code": "8461/1", + "qualification": "GCSE", + "subject": "Biology", + "tier": "Higher", + "time_allowed": "1 hour 45 minutes", + "max_marks": 100, + "session": "Jun 2022" + }, + "path": "aqa-docling+rapidocr (v1)", + "pages": [], + "questions": [ + { + "question": "01", + "parts": [ + { + "label": "01.1", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 698.0500183105469, + "r": 101.9000956217448, + "b": 683.6205851236979, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.2", + "page": 3, + "bbox": { + "l": 48.201700846354164, + "t": 275.7768351236979, + "r": 103.16855875651042, + "b": 259.6498006184896, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.3", + "page": 3, + "bbox": { + "l": 46.93323771158854, + "t": 158.21938069661462, + "r": 102.32291666666667, + "b": 140.81915283203125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.4", + "page": 4, + "bbox": { + "l": 48.201700846354164, + "t": 495.18914794921875, + "r": 102.32291666666667, + "b": 479.48651123046875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.5", + "page": 4, + "bbox": { + "l": 48.201700846354164, + "t": 230.36655680338538, + "r": 102.32291666666667, + "b": 214.66392008463538, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.6", + "page": 5, + "bbox": { + "l": 48.62452697753906, + "t": 724.3625183105469, + "r": 102.74573771158855, + "b": 709.9330851236979, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.7", + "page": 6, + "bbox": { + "l": 48.62452697753906, + "t": 448.50567626953125, + "r": 104.01420084635417, + "b": 432.80303955078125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": true, + "extended": false + }, + { + "label": "01.9", + "page": 8, + "bbox": { + "l": 47.77887980143229, + "t": 775.2899424235026, + "r": 103.5913798014323, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "02", + "parts": [ + { + "label": "02.1", + "page": 9, + "bbox": { + "l": 48.62452697753906, + "t": 491.36956787109375, + "r": 102.74573771158855, + "b": 475.66697184244794, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.2", + "page": 9, + "bbox": { + "l": 48.201700846354164, + "t": 361.92905680338544, + "r": 105.2826639811198, + "b": 345.80202229817706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.3", + "page": 10, + "bbox": { + "l": 47.77887980143229, + "t": 775.7143351236979, + "r": 102.32291666666667, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.4", + "page": 11, + "bbox": { + "l": 49.47016906738281, + "t": 697.6256306966146, + "r": 101.9000956217448, + "b": 682.7717997233073, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.5", + "page": 11, + "bbox": { + "l": 49.04734802246094, + "t": 433.22743733723956, + "r": 103.16855875651042, + "b": 417.52480061848956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.6", + "page": 12, + "bbox": { + "l": 47.356058756510414, + "t": 776.1387329101562, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": true, + "extended": false + } + ] + }, + { + "question": "03", + "parts": [ + { + "label": "03.1", + "page": 14, + "bbox": { + "l": 49.04734802246094, + "t": 478.63771565755206, + "r": 104.01420084635417, + "b": 464.20827229817706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": true, + "extended": false + }, + { + "label": "03.2", + "page": 15, + "bbox": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 103.5913798014323, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.3", + "page": 16, + "bbox": { + "l": 49.04734802246094, + "t": 539.3262329101562, + "r": 101.47727457682292, + "b": 524.8967895507812, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.4", + "page": 17, + "bbox": { + "l": 48.62452697753906, + "t": 468.02785237630206, + "r": 101.9000956217448, + "b": 453.59840901692706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.5", + "page": 17, + "bbox": { + "l": 47.356058756510414, + "t": 288.08428955078125, + "r": 380.5397542317708, + "b": 273.2304484049479, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "04", + "parts": [ + { + "label": "04.1", + "page": 18, + "bbox": { + "l": 47.77887980143229, + "t": 723.0893351236979, + "r": 295.1297200520833, + "b": 707.38671875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": true, + "extended": false + }, + { + "label": "04.2", + "page": 19, + "bbox": { + "l": 48.62452697753906, + "t": 494.34035237630206, + "r": 101.9000956217448, + "b": 479.91090901692706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.3", + "page": 20, + "bbox": { + "l": 49.04734802246094, + "t": 575.3998209635417, + "r": 101.9000956217448, + "b": 560.9703776041667, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.4", + "page": 21, + "bbox": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.5", + "page": 21, + "bbox": { + "l": 48.201700846354164, + "t": 452.32521565755206, + "r": 103.16855875651042, + "b": 436.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "05", + "parts": [ + { + "label": "05.1", + "page": 23, + "bbox": { + "l": 48.62452697753906, + "t": 709.9330851236979, + "r": 100.63162231445312, + "b": 695.0792541503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.2", + "page": 23, + "bbox": { + "l": 48.201700846354164, + "t": 527.018778483073, + "r": 108.24242146809895, + "b": 511.31614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.3", + "page": 23, + "bbox": { + "l": 49.04734802246094, + "t": 332.22137451171875, + "r": 533.1785074869791, + "b": 303.78692626953125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.4", + "page": 24, + "bbox": { + "l": 49.47016906738281, + "t": 441.29095458984375, + "r": 101.054443359375, + "b": 428.13470458984375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.5", + "page": 25, + "bbox": { + "l": 48.201700846354164, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "06", + "parts": [ + { + "label": "06.1", + "page": 26, + "bbox": { + "l": 49.47016906738281, + "t": 494.76475016276044, + "r": 101.47727457682292, + "b": 480.33530680338544, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.2", + "page": 26, + "bbox": { + "l": 48.201700846354164, + "t": 222.30303955078125, + "r": 103.5913798014323, + "b": 206.17604573567712, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.3", + "page": 27, + "bbox": { + "l": 48.201700846354164, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.4", + "page": 29, + "bbox": { + "l": 49.89299011230469, + "t": 772.3191782633463, + "r": 101.47727457682292, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.5", + "page": 30, + "bbox": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 103.16855875651042, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "07", + "parts": [ + { + "label": "07.1", + "page": 32, + "bbox": { + "l": 49.47016906738281, + "t": 732.8504231770834, + "r": 101.47727457682292, + "b": 718.4209899902344, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": true, + "extended": false + }, + { + "label": "07.3", + "page": 32, + "bbox": { + "l": 47.77887980143229, + "t": 192.17100016276038, + "r": 102.32291666666667, + "b": 174.77077229817712, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.4", + "page": 33, + "bbox": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 102.32291666666667, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.5", + "page": 33, + "bbox": { + "l": 48.62452697753906, + "t": 474.81817626953125, + "r": 101.9000956217448, + "b": 459.53993733723956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.6", + "page": 34, + "bbox": { + "l": 48.201700846354164, + "t": 735.8211873372396, + "r": 102.32291666666667, + "b": 719.6941731770834, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.8", + "page": 35, + "bbox": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + } + ], + "regions": [ + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 555.4532470703125, + "r": 150.52461751302084, + "b": 497.31109619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "GCSE BIOLOGY" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 398.42702229817706, + "r": 92.17519124348958, + "b": 385.69517008463544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Materials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 369.99257405598956, + "r": 84.14157104492188, + "b": 358.53387451171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a ruler" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 356.83632405598956, + "r": 156.02130126953125, + "b": 345.80202229817706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a scientific calculator." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 331.37261962890625, + "r": 109.0880635579427, + "b": 318.6407267252604, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Instructions" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 317.7919718424479, + "r": 231.28361002604166, + "b": 303.78692626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Use black ink or black ball-point pen." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 291.4794718424479, + "r": 241.0085245768229, + "b": 276.6256306966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Fill in the boxes at the top of this page." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.01373036702474, + "t": 305.06011962890625, + "r": 243.12261962890625, + "b": 289.7818806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Pencil should only be used for drawing." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 277.47442626953125, + "r": 270.60605875651044, + "b": 263.04498291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Answer all questions in the spaces provided." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 238.43007405598962, + "r": 402.9493408203125, + "b": 212.54197184244788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Do all rough work in this book. Cross through any work you do not want to be mar" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 263.4693806966146, + "r": 424.9360758463542, + "b": 237.15688069661462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o pua au pe sabed paus aun asn (shlamsue nos sof aoeds exa paau nos f \u00b7 this boo" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 210.84438069661462, + "r": 356.0160725911458, + "b": 197.26373291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7In all calculations, show clearly how you work out your answer." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 184.10748291015625, + "r": 106.12831624348958, + "b": 172.64882405598962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Information" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 170.52683512369788, + "r": 251.57906087239584, + "b": 158.21938069661462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The maximum mark for this paper is 100." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 156.52178955078125, + "r": 282.02223714192706, + "b": 144.21433512369788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The marks for questions are shown in brackets." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 143.78993733723962, + "r": 323.88161214192706, + "b": 130.20928955078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7You are expected to use a calculator where appropriate." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 129.78489176432288, + "r": 391.1103108723958, + "b": 104.32118733723962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You areremindedoftheneedforgoodEnglishandclearpresentation inyour answers." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 330.6467692057292, + "t": 428.13470458984375, + "r": 543.7490234375, + "b": 413.28086344401044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Time allowed: 1 hour 45 minutes" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 321.3446858723958, + "t": 20.71531168619788, + "r": 372.928955078125, + "b": 12.227437337239621, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/E20" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 473.1377766927083, + "t": 33.87156168619788, + "r": 551.3598225911459, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 2, + "bbox": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.86126708984375, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 2, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 3, + "bbox": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.015625, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 3, + "bbox": { + "l": 303.58616129557294, + "t": 658.1568806966146, + "r": 345.022705078125, + "b": 645.0006306966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 3, + "bbox": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 4, + "bbox": { + "l": 114.58474731445312, + "t": 722.6649373372396, + "r": 339.10321044921875, + "b": 709.5086873372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cut three pieces of potato of the same size." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 4, + "bbox": { + "l": 114.16192626953125, + "t": 697.2012329101562, + "r": 314.15671793619794, + "b": 684.0449829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Record the mass of each potato piece." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 4, + "bbox": { + "l": 114.58474731445312, + "t": 671.7375183105469, + "r": 383.9223225911458, + "b": 659.8544514973959, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3.Add 150cm?of 0.4mol/dm3salt solution to abeaker." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 4, + "bbox": { + "l": 113.73910522460938, + "t": 647.5469970703125, + "r": 322.6131591796875, + "b": 633.1175537109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Place each potato piece into the beaker." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 4, + "bbox": { + "l": 113.73910522460938, + "t": 621.6588948567709, + "r": 531.0643717447916, + "b": 607.2294514973959, + "coord_origin": "BOTTOMLEFT" + }, + "text": "After 30 minutes, remove each potato piece and dry the surface with a paper towe" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 4, + "bbox": { + "l": 113.73910522460938, + "t": 596.6195882161459, + "r": 314.57952880859375, + "b": 582.1901448567708, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Record the mass of each potato piece." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 4, + "bbox": { + "l": 114.58474731445312, + "t": 571.1558634440105, + "r": 444.8087158203125, + "b": 556.7264404296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Repeat steps 1 to 6 using different concentrations of salt solution." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 4, + "bbox": { + "l": 115.8532206217448, + "t": 427.71030680338544, + "r": 256.65293375651044, + "b": 416.67604573567706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Concentrationofsaltsolution" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 4, + "bbox": { + "l": 114.16192626953125, + "t": 391.63669840494794, + "r": 216.90767415364584, + "b": 378.90484619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Mass of potato piece" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 4, + "bbox": { + "l": 114.58474731445312, + "t": 355.13873291015625, + "r": 275.25710042317706, + "b": 341.98248291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Time potato is left in salt solution" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 4, + "bbox": { + "l": 113.73910522460938, + "t": 318.21636962890625, + "r": 226.20975748697916, + "b": 304.6357218424479, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Volume of salt solution" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 4, + "bbox": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 5, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 5, + "bbox": { + "l": 115.007568359375, + "t": 703.1427612304688, + "r": 260.8811442057292, + "b": 689.1377258300781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the starting mass was 2.5 g" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 5, + "bbox": { + "l": 114.58474731445312, + "t": 684.4693806966146, + "r": 246.0823771158854, + "b": 670.0399373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the end mass was 2.7 g." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 5, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 6, + "bbox": { + "l": 113.73910522460938, + "t": 420.07118733723956, + "r": 174.6254679361979, + "b": 406.91493733723956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You should:" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 6, + "bbox": { + "l": 115.007568359375, + "t": 401.39780680338544, + "r": 200.4176025390625, + "b": 387.39276123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "label the x-axis" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 6, + "bbox": { + "l": 116.69886271158855, + "t": 381.45123291015625, + "r": 289.63303629557294, + "b": 368.71938069661456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "useasuitablescalefor thex-axis" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 6, + "bbox": { + "l": 118.39014689127605, + "t": 361.50465901692706, + "r": 254.538818359375, + "b": 349.19720458984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "plot the data from Table 2" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 6, + "bbox": { + "l": 117.5445048014323, + "t": 341.55808512369794, + "r": 229.59232584635416, + "b": 330.09942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "drawa line ofbest fit." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 6, + "bbox": { + "l": 304.85463460286456, + "t": 708.2355041503906, + "r": 345.022705078125, + "b": 696.3524373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 6, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 7, + "bbox": { + "l": 303.16335042317706, + "t": 775.2899424235026, + "r": 346.7139892578125, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 7, + "bbox": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 8, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 9, + "bbox": { + "l": 268.06911214192706, + "t": 709.0842997233073, + "r": 314.15671793619794, + "b": 694.6548563639323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 2" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 9, + "bbox": { + "l": 115.007568359375, + "t": 294.8746134440104, + "r": 174.2026570638021, + "b": 282.14276123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Gonorrhoea" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 9, + "bbox": { + "l": 113.3162841796875, + "t": 258.8010457356771, + "r": 152.21590169270834, + "b": 244.79600016276038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Malaria" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 9, + "bbox": { + "l": 114.58474731445312, + "t": 220.60544840494788, + "r": 157.28976440429688, + "b": 208.72239176432288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Measles" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 9, + "bbox": { + "l": 114.58474731445312, + "t": 184.10748291015625, + "r": 194.49810791015625, + "b": 171.37563069661462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Rose black spot" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 9, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 10, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 10, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 11, + "bbox": { + "l": 283.7135416666667, + "t": 810.9391352335612, + "r": 294.7069091796875, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 113.73910522460938, + "t": 632.6931762695312, + "r": 188.15576171875, + "b": 617.4149373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Large intestine" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 113.3162841796875, + "t": 594.9219970703125, + "r": 141.2225341796875, + "b": 581.3413492838542, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Liver" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.16192626953125, + "t": 558.848409016927, + "r": 190.69270833333334, + "b": 543.5701904296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Salivary glands" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.58474731445312, + "t": 521.0772298177083, + "r": 159.82670084635416, + "b": 507.9209798177083, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Stomach" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.58474731445312, + "t": 367.02178955078125, + "r": 208.02840169270834, + "b": 353.01674397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Benedict's reagent" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 115.007568359375, + "t": 329.2506306966146, + "r": 185.61883544921875, + "b": 316.5187784830729, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Biuret reagent" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.16192626953125, + "t": 293.1770222981771, + "r": 153.90719604492188, + "b": 280.0207722981771, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Ethanol" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.58474731445312, + "t": 256.2546590169271, + "r": 186.8873087565104, + "b": 243.52280680338538, + "coord_origin": "BOTTOMLEFT" + }, + "text": "lodine solution" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 11, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 12, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 12, + "bbox": { + "l": 304.0089925130208, + "t": 729.8796590169271, + "r": 345.8683675130208, + "b": 716.7234090169271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 12, + "bbox": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 13, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 13, + "bbox": { + "l": 479.9029134114583, + "t": 25.38368733723962, + "r": 545.4403076171875, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 14, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "14" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.58474731445312, + "t": 681.07421875, + "r": 342.4857991536458, + "b": 667.4935709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cut an onion into pieces using a sharp knife." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.58474731445312, + "t": 655.1861165364584, + "r": 434.6609700520833, + "b": 642.0298665364584, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Peel off a thin layer of onion epidermis from one piece of onion." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.16192626953125, + "t": 630.1467895507812, + "r": 471.4464925130208, + "b": 616.1417643229166, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Place the onion epidermis onto a microscope slide in a single flat layer." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.16192626953125, + "t": 605.1074829101562, + "r": 293.4384358723958, + "b": 591.9512329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Add three drops of iodine solution." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.58474731445312, + "t": 579.643778483073, + "r": 429.164306640625, + "b": 566.0631306966145, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Slowly lower a cover slip at an angle onto the onion epidermis." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.16192626953125, + "t": 554.1800537109375, + "r": 353.4791666666667, + "b": 540.5994262695312, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Place the slide on the stage of the microscope." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 14, + "bbox": { + "l": 304.0089925130208, + "t": 400.54901123046875, + "r": 345.445556640625, + "b": 387.39276123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 4" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 14, + "bbox": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 15, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 297.24383544921875, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "15" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 15, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 16, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 16, + "bbox": { + "l": 268.06911214192706, + "t": 736.6699829101562, + "r": 314.15671793619794, + "b": 722.2405497233073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 16, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 17, + "bbox": { + "l": 283.29071044921875, + "t": 811.3635304768881, + "r": 295.97536214192706, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "17" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 17, + "bbox": { + "l": 115.007568359375, + "t": 774.8655446370443, + "r": 359.8214925130208, + "b": 762.1336924235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4 shows thestudent's drawingofFigure3." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 17, + "bbox": { + "l": 268.06911214192706, + "t": 737.0943806966146, + "r": 314.57952880859375, + "b": 722.6649373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 17, + "bbox": { + "l": 224.9412841796875, + "t": 696.3524373372396, + "r": 322.19032796223956, + "b": 682.347401936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ONION CELLS" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 17, + "bbox": { + "l": 47.356058756510414, + "t": 288.08428955078125, + "r": 380.5397542317708, + "b": 273.2304484049479, + "coord_origin": "BOTTOMLEFT" + }, + "text": "03.5 Onion cells can be seen using an electron microscope." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 17, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 18, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_selected", + "page": 18, + "bbox": { + "l": 47.77887980143229, + "t": 723.0893351236979, + "r": 295.1297200520833, + "b": 707.38671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "04.1 Table5 showssomeplant defences." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 18, + "bbox": { + "l": 304.4318033854167, + "t": 633.1175537109375, + "r": 345.445556640625, + "b": 619.9613037109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 18, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 19, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "19" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 19, + "bbox": { + "l": 304.0089925130208, + "t": 711.2062683105469, + "r": 349.6737467447917, + "b": 696.3524373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 19, + "bbox": { + "l": 304.0089925130208, + "t": 711.2062683105469, + "r": 349.6737467447917, + "b": 696.3524373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 20, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 20, + "bbox": { + "l": 302.3177083333333, + "t": 723.9381306966146, + "r": 348.4053141276042, + "b": 709.5086873372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 6" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 20, + "bbox": { + "l": 115.007568359375, + "t": 553.7556762695312, + "r": 260.4583333333333, + "b": 541.8725992838542, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7live inside the roots of trees" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 20, + "bbox": { + "l": 119.2357889811198, + "t": 533.809102376302, + "r": 308.6600341796875, + "b": 522.7748209635417, + "coord_origin": "BOTTOMLEFT" + }, + "text": "usethetreerootsasasourceoffood" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 20, + "bbox": { + "l": 119.2357889811198, + "t": 514.7113037109375, + "r": 280.33095296223956, + "b": 502.4038492838542, + "coord_origin": "BOTTOMLEFT" + }, + "text": "causedamage to the treeroots." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 20, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 21, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 22, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 22, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 23, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 23, + "bbox": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 497.2386067708333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "05 Water and carbon dioxide are exchanged between leaves and the atmosphere" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 23, + "bbox": { + "l": 114.16192626953125, + "t": 249.88873291015625, + "r": 224.09564208984375, + "b": 235.88368733723962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Coldwithlowhumidity" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 23, + "bbox": { + "l": 115.007568359375, + "t": 212.96636962890625, + "r": 227.90104166666666, + "b": 198.96132405598962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cold with high humidity" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 23, + "bbox": { + "l": 114.16192626953125, + "t": 175.61956787109375, + "r": 230.86079915364584, + "b": 162.03892008463538, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Warmwithlowhumidity" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 23, + "bbox": { + "l": 114.16192626953125, + "t": 139.54595947265625, + "r": 234.66617838541666, + "b": 124.69211832682288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Warm with high humidity" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 23, + "bbox": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 24, + "bbox": { + "l": 114.58474731445312, + "t": 774.441151936849, + "r": 479.9029134114583, + "b": 761.7092946370443, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7 shows information about the mean width of the stomata in a plant." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 24, + "bbox": { + "l": 268.06911214192706, + "t": 729.0308736165365, + "r": 313.73388671875, + "b": 714.6014302571615, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 24, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "26" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 26, + "bbox": { + "l": 304.4318033854167, + "t": 744.309092203776, + "r": 345.445556640625, + "b": 732.426035563151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 6" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 26, + "bbox": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 27, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 28, + "bbox": { + "l": 114.58474731445312, + "t": 773.5923614501953, + "r": 245.23673502604166, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table6 isrepeatedbelow." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 28, + "bbox": { + "l": 303.58616129557294, + "t": 746.0066731770834, + "r": 345.8683675130208, + "b": 732.8504231770834, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 6" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 28, + "bbox": { + "l": 304.4318033854167, + "t": 456.99355061848956, + "r": 345.8683675130208, + "b": 443.83730061848956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 7" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 28, + "bbox": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "29" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 29, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "30" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 30, + "bbox": { + "l": 268.06911214192706, + "t": 694.6548563639323, + "r": 314.15671793619794, + "b": 679.801025390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 30, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "31" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 31, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 32, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "32" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 32, + "bbox": { + "l": 304.4318033854167, + "t": 572.8534545898438, + "r": 345.445556640625, + "b": 560.9703776041667, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table8" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 48.201700846354164, + "t": 363.20225016276044, + "r": 422.8219401041667, + "b": 344.52886962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "07]. 2 Describe the trends shown in Table 8 between 2010 and 2018." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 32, + "bbox": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 33, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "33" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 33, + "bbox": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 34, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "34" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 34, + "bbox": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 35, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "35" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 35, + "bbox": { + "l": 302.3177083333333, + "t": 734.1236063639323, + "r": 347.5596516927083, + "b": 719.6941731770834, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 9" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 35, + "bbox": { + "l": 231.28361002604166, + "t": 163.31211344401038, + "r": 346.7139892578125, + "b": 152.27781168619788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ENDOFQUESTIONS" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 35, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.4403076171875, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 36, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "36" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 36, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 37, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "37" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 37, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.8631591796875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 38, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "38" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 38, + "bbox": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 38, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.8631591796875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 39, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "39" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 39, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 39, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.8631591796875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 40, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "40" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 40, + "bbox": { + "l": 54.12121073404948, + "t": 162.88771565755212, + "r": 133.61173502604166, + "b": 153.12660725911462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Copyrightinformation" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 40, + "bbox": { + "l": 173.77982584635416, + "t": 774.8655446370443, + "r": 403.7949625651042, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "There are no questions printed on this page" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 40, + "bbox": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8461/1H" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 38.00133514404297, + "t": 797.4589767456055, + "r": 168.1601104736328, + "b": 750.2433547973633, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 46.8770866394043, + "t": 53.330078125, + "r": 252.03916931152344, + "b": 17.5728759765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 489.92138671875, + "t": 549.9878234863281, + "r": 533.2274169921875, + "b": 496.6566467285156, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 48.88732147216797, + "t": 53.059814453125, + "r": 104.56513977050781, + "b": 16.9586181640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 49.12738800048828, + "t": 53.19232177734375, + "r": 104.33588409423828, + "b": 17.3953857421875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 49.179264068603516, + "t": 53.1982421875, + "r": 104.26579284667969, + "b": 17.73736572265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 49.12112808227539, + "t": 53.14373779296875, + "r": 104.327880859375, + "b": 17.5670166015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 45.735694885253906, + "t": 448.7847595214844, + "r": 105.40312194824219, + "b": 432.12158203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 49.06983947753906, + "t": 53.17987060546875, + "r": 104.2056884765625, + "b": 17.67327880859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 49.095619201660156, + "t": 53.34234619140625, + "r": 104.30477142333984, + "b": 17.5211181640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 39.5867805480957, + "t": 788.3417549133301, + "r": 539.7913208007812, + "b": 77.27215576171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 49.21787643432617, + "t": 53.2222900390625, + "r": 104.35285186767578, + "b": 17.7176513671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 49.18645477294922, + "t": 53.17108154296875, + "r": 104.25172424316406, + "b": 17.64910888671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 233.9642791748047, + "t": 683.4948272705078, + "r": 347.205322265625, + "b": 554.4544982910156, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 49.193878173828125, + "t": 53.23822021484375, + "r": 104.41835021972656, + "b": 17.68609619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 49.28749084472656, + "t": 53.192626953125, + "r": 104.4219741821289, + "b": 18.02410888671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 44.95881652832031, + "t": 776.5109939575195, + "r": 105.72966003417969, + "b": 758.9666137695312, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 49.06380844116211, + "t": 53.18597412109375, + "r": 104.28301239013672, + "b": 17.581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 49.16658401489258, + "t": 53.1641845703125, + "r": 104.45934295654297, + "b": 17.537353515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 543.3030395507812, + "t": 634.2982940673828, + "r": 575.8578491210938, + "b": 592.6698303222656, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 49.108829498291016, + "t": 53.17132568359375, + "r": 104.2585220336914, + "b": 17.90985107421875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 49.16040802001953, + "t": 53.16973876953125, + "r": 104.38372039794922, + "b": 17.7064208984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 82.07044219970703, + "t": 540.7142944335938, + "r": 104.0030288696289, + "b": 524.5466003417969, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 49.1007080078125, + "t": 53.2117919921875, + "r": 104.33074951171875, + "b": 17.74853515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 185.54078674316406, + "t": 710.5711212158203, + "r": 393.96270751953125, + "b": 588.0393524169922, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 49.06275177001953, + "t": 53.25390625, + "r": 104.31889343261719, + "b": 17.77984619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 156.39285278320312, + "t": 667.3309478759766, + "r": 423.3988342285156, + "b": 519.7236328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 49.121463775634766, + "t": 53.21649169921875, + "r": 104.3064956665039, + "b": 17.7779541015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 45.82774353027344, + "t": 496.00555419921875, + "r": 105.47586059570312, + "b": 478.4892272949219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 49.15392303466797, + "t": 53.19732666015625, + "r": 104.37195587158203, + "b": 17.78106689453125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 219.59185791015625, + "t": 708.927734375, + "r": 427.3768615722656, + "b": 546.8448181152344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 45.496910095214844, + "t": 576.65966796875, + "r": 105.91410064697266, + "b": 559.7376403808594, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 49.04840087890625, + "t": 53.253662109375, + "r": 104.3270492553711, + "b": 17.5347900390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 227.0424346923828, + "t": 684.4001617431641, + "r": 420.9546203613281, + "b": 616.7417907714844, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 542.1177978515625, + "t": 415.42755126953125, + "r": 574.8453369140625, + "b": 373.7242736816406, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 49.26432418823242, + "t": 53.17437744140625, + "r": 104.31494903564453, + "b": 17.68426513671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 48.83792495727539, + "t": 53.11871337890625, + "r": 104.64608764648438, + "b": 16.5157470703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 49.234535217285156, + "t": 53.13446044921875, + "r": 104.30413055419922, + "b": 17.3516845703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 50.27867889404297, + "t": 697.9160461425781, + "r": 534.2479858398438, + "b": 506.797607421875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 46.177696228027344, + "t": 443.3124694824219, + "r": 80.92774963378906, + "b": 427.13104248046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 82.27433013916016, + "t": 443.8872985839844, + "r": 104.73280334472656, + "b": 427.0744323730469, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 49.17908477783203, + "t": 53.28521728515625, + "r": 104.2843246459961, + "b": 17.65447998046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 49.31337356567383, + "t": 53.187255859375, + "r": 104.32842254638672, + "b": 17.487060546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 47.00654983520508, + "t": 775.9247817993164, + "r": 80.57906341552734, + "b": 759.4455184936523, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 82.81494140625, + "t": 496.06298828125, + "r": 104.88884735107422, + "b": 479.7900085449219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 81.45573425292969, + "t": 222.228759765625, + "r": 104.41118621826172, + "b": 205.77960205078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 49.15398406982422, + "t": 53.2298583984375, + "r": 104.27017974853516, + "b": 17.54296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 49.21142578125, + "t": 53.20953369140625, + "r": 104.35021209716797, + "b": 17.45208740234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 49.060306549072266, + "t": 53.243408203125, + "r": 104.18020629882812, + "b": 17.59002685546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 47.5270881652832, + "t": 774.5544281005859, + "r": 104.35311889648438, + "b": 758.357048034668, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 49.25188446044922, + "t": 53.1590576171875, + "r": 104.30789947509766, + "b": 17.57330322265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 182.57284545898438, + "t": 660.1277008056641, + "r": 323.5049743652344, + "b": 512.7030639648438, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 349.4798278808594, + "t": 668.1431274414062, + "r": 466.3904113769531, + "b": 502.2280578613281, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 49.17033386230469, + "t": 53.19232177734375, + "r": 104.32601928710938, + "b": 17.66766357421875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 38.6482048034668, + "t": 789.2455253601074, + "r": 541.27734375, + "b": 71.17132568359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 48.9473762512207, + "t": 53.15509033203125, + "r": 104.62229919433594, + "b": 17.2017822265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 49.06572341918945, + "t": 53.1595458984375, + "r": 104.2694320678711, + "b": 17.48858642578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 33, + "bbox": { + "l": 49.204193115234375, + "t": 53.1688232421875, + "r": 104.37303924560547, + "b": 17.4703369140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 34, + "bbox": { + "l": 49.161170959472656, + "t": 53.15081787109375, + "r": 104.27032470703125, + "b": 17.639404296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 35, + "bbox": { + "l": 39.10532760620117, + "t": 789.2540054321289, + "r": 539.6693115234375, + "b": 76.10986328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 35, + "bbox": { + "l": 49.07066345214844, + "t": 53.27899169921875, + "r": 104.23448944091797, + "b": 17.56280517578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 36, + "bbox": { + "l": 48.913848876953125, + "t": 53.150634765625, + "r": 104.60427856445312, + "b": 16.85711669921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 37, + "bbox": { + "l": 49.14103317260742, + "t": 53.27081298828125, + "r": 104.3841552734375, + "b": 17.4703369140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 38, + "bbox": { + "l": 49.104557037353516, + "t": 53.3353271484375, + "r": 104.38912200927734, + "b": 17.3426513671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 39, + "bbox": { + "l": 49.1429557800293, + "t": 53.29705810546875, + "r": 104.4314193725586, + "b": 17.40765380859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 40, + "bbox": { + "l": 49.0760498046875, + "t": 53.3773193359375, + "r": 104.37796020507812, + "b": 17.49005126953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 40, + "bbox": { + "l": 350.3396301269531, + "t": 67.80126953125, + "r": 528.1468505859375, + "b": 32.028076171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 1, + "bbox": { + "l": 442.17010498046875, + "t": 395.0335693359375, + "r": 542.979736328125, + "b": 211.3961181640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 6, + "bbox": { + "l": 212.70263671875, + "t": 682.6695251464844, + "r": 435.9120178222656, + "b": 498.4666748046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 12, + "bbox": { + "l": 155.34446716308594, + "t": 703.4873962402344, + "r": 493.14569091796875, + "b": 488.68280029296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 14, + "bbox": { + "l": 91.9642105102539, + "t": 374.9870300292969, + "r": 522.89111328125, + "b": 173.91448974609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 18, + "bbox": { + "l": 151.78521728515625, + "t": 606.2125244140625, + "r": 496.1224060058594, + "b": 461.1795654296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 28, + "bbox": { + "l": 149.23580932617188, + "t": 719.3758697509766, + "r": 499.3244934082031, + "b": 547.9515991210938, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 28, + "bbox": { + "l": 220.48773193359375, + "t": 431.4338684082031, + "r": 427.6959228515625, + "b": 337.92022705078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 32, + "bbox": { + "l": 159.49160766601562, + "t": 547.3089294433594, + "r": 489.53790283203125, + "b": 400.7843017578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + } + ], + "tables": [ + { + "page": 6, + "n_rows": 6, + "n_cols": 2, + "grid": [ + [ + "Concentration of salt solution in mol/dm3", + "Mean percentage (%) change in mass" + ], + [ + "0.0", + "9.8" + ], + [ + "0.1", + "9.5" + ], + [ + "0.2", + "7.0" + ], + [ + "0.3", + "0.4" + ], + [ + "0.4", + "-1.4" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 0, + "for_part": "01.7" + }, + { + "page": 12, + "n_rows": 7, + "n_cols": 3, + "grid": [ + [ + "", + "Mass per 100 g of burger", + "" + ], + [ + "", + "Burgers made from meat", + "Meat-free burgers" + ], + [ + "Protein in g", + "14.0", + "9.0" + ], + [ + "Fibre in g", + "0.9", + "5.5" + ], + [ + "Fat in g", + "16.0", + "5.2" + ], + [ + "Carbohydrate in g", + "15.5", + "15.1" + ], + [ + "Cholesterol in mg", + "120.0", + "0.0" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 1, + "for_part": "02.6" + }, + { + "page": 14, + "n_rows": 3, + "n_cols": 3, + "grid": [ + [ + "Hazard", + "Risk", + "Plan to minimise risk" + ], + [ + "lodine solution is an irritant", + "May cause allergicreaction or skin rash", + "" + ], + [ + "Sharp knife", + "", + "" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 2, + "for_part": "03.1" + }, + { + "page": 18, + "n_rows": 5, + "n_cols": 3, + "grid": [ + [ + "", + "Type of response", + "" + ], + [ + "Plant defence", + "Chemical", + "Physical" + ], + [ + "Thick, waxy layer on leaf surface", + "", + "" + ], + [ + "Berries that are poisonous", + "", + "" + ], + [ + "Bark on trees that falls off", + "", + "" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 3, + "for_part": "04.1" + }, + { + "page": 28, + "n_rows": 6, + "n_cols": 4, + "grid": [ + [ + "Organism", + "Surface area in m2", + "Volume in m3", + "Surface area to volume ratio" + ], + [ + "A", + "6.04 x 10-8", + "1.65 \u00d7 10-12", + "36606:1" + ], + [ + "B", + "3.21 \u00d7 10-3", + "1.25 5\u00d710-6", + "2568:1" + ], + [ + "C", + "9.96 K10-3", + "1.35 \u00d7 10-4", + "X:1" + ], + [ + "D", + "4.61 x 10-1", + "1.57 \u00d710-2", + "29:1" + ], + [ + "E", + "1.99 \u00d7 101", + "6.12 \u00d7 100", + "3:1" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 4, + "for_part": null + }, + { + "page": 28, + "n_rows": 3, + "n_cols": 2, + "grid": [ + [ + "Organism", + "Metabolic rate in arbitrary units" + ], + [ + "D", + "890" + ], + [ + "E", + "75" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 5, + "for_part": null + }, + { + "page": 32, + "n_rows": 6, + "n_cols": 3, + "grid": [ + [ + "Year", + "NumberofnewHiv casesinwomen", + "NumberofnewHiv cases in men" + ], + [ + "2010", + "376", + "2266" + ], + [ + "2012", + "361", + "2310" + ], + [ + "2014", + "397", + "2370" + ], + [ + "2016", + "298", + "1886" + ], + [ + "2018", + "242", + "1288" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 6, + "for_part": "07.1" + } + ], + "stats": { + "n_questions": 7, + "n_parts": 40, + "marks_parts_known": 40, + "marks_sum": 94, + "marks_check": { + "sum": 94, + "expected_max": 100, + "pct": 94.0 + }, + "gemma_answer_regions": 0, + "gemma_marks_filled": 0, + "gemma_marks_gapfilled": 0, + "n_data_tables": 7, + "n_furniture_tables": 1, + "table_sources": { + "docling-standard": 7 + }, + "table_pages": [ + 6, + 12, + 14, + 18, + 28, + 32 + ], + "region_type_counts": { + "context_caption": 9, + "context_data": 8, + "context_figure": 67, + "furniture": 80, + "heading": 23, + "instruction": 38, + "mcq_option": 21 + } + }, + "coverage": { + "coverage_pct": 61.9, + "recovered": 26, + "total": 42, + "missed": [ + "07.2", + "08.1", + "08.2", + "08.3", + "08.4", + "08.5", + "09.1", + "09.2", + "09.3", + "10.1", + "10.2", + "10.3", + "11.1", + "11.2", + "11.3", + "11.4" + ], + "source": "builtin-physics-gt" + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/template.json b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/template.json new file mode 100644 index 0000000..0cb5e55 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/template.json @@ -0,0 +1,4887 @@ +{ + "meta": { + "schema": "exam-template/first-pass/v1", + "board": "aqa", + "paper_code": "8461/1", + "source_pdf": "samples/b1/aqa-biology-8461-1h-2022jun.pdf", + "n_pages": 40, + "coord_origin": "BOTTOMLEFT", + "units": "pdf_points", + "generated_at": "2026-06-08T01:49:01", + "ui_principle": "directional limits = draggable axis-locked lines; object footprints = boxes", + "confirmed": false, + "confirmed_by": null, + "confirmed_at": null + }, + "margins": [ + { + "edge": "left", + "axis": "x", + "value": 41.9, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "right", + "axis": "x", + "value": 536.1, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "top", + "axis": "y", + "value": 775.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "bottom", + "axis": "y", + "value": 77.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "bottom", + "axis": "y", + "value": 187.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "top", + "axis": "y", + "value": 776.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "bottom", + "axis": "y", + "value": 362.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "top", + "axis": "y", + "value": 775.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "bottom", + "axis": "y", + "value": 315.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "top", + "axis": "y", + "value": 788.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "bottom", + "axis": "y", + "value": 77.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "bottom", + "axis": "y", + "value": 597.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "bottom", + "axis": "y", + "value": 107.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "bottom", + "axis": "y", + "value": 582.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "bottom", + "axis": "y", + "value": 128.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "bottom", + "axis": "y", + "value": 367.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "bottom", + "axis": "y", + "value": 173.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "bottom", + "axis": "y", + "value": 308.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "bottom", + "axis": "y", + "value": 99.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "bottom", + "axis": "y", + "value": 82.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "bottom", + "axis": "y", + "value": 461.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "bottom", + "axis": "y", + "value": 281.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "bottom", + "axis": "y", + "value": 450.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "bottom", + "axis": "y", + "value": 234.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "bottom", + "axis": "y", + "value": 124.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "bottom", + "axis": "y", + "value": 373.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "bottom", + "axis": "y", + "value": 488.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "bottom", + "axis": "y", + "value": 149.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "bottom", + "axis": "y", + "value": 469.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "bottom", + "axis": "y", + "value": 385.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "bottom", + "axis": "y", + "value": 126.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "bottom", + "axis": "y", + "value": 149.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 33 + }, + { + "edge": "bottom", + "axis": "y", + "value": 205.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 33 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 34 + }, + { + "edge": "bottom", + "axis": "y", + "value": 317.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 34 + }, + { + "edge": "top", + "axis": "y", + "value": 789.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 35 + }, + { + "edge": "bottom", + "axis": "y", + "value": 76.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 35 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 40 + }, + { + "edge": "bottom", + "axis": "y", + "value": 30.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 40 + } + ], + "pages": { + "1": { + "role": "cover", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 473.1377766927083, + "t": 33.87156168619788, + "r": 551.3598225911459, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 38.00133514404297, + "t": 797.4589767456055, + "r": 168.1601104736328, + "b": 750.2433547973633, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 46.8770866394043, + "t": 53.330078125, + "r": 252.03916931152344, + "b": 17.5728759765625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 489.92138671875, + "t": 549.9878234863281, + "r": 533.2274169921875, + "b": 496.6566467285156, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "2": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.86126708984375, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 27.08127848307288, + "r": 85.83285522460938, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 48.88732147216797, + "t": 53.059814453125, + "r": 104.56513977050781, + "b": 16.9586181640625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "3": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 738.8, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.1", + "question": "01", + "y_start": 698.1, + "y_end": 275.8, + "label_box": { + "l": 49.04734802246094, + "t": 698.0500183105469, + "r": 101.9000956217448, + "b": 683.6205851236979, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 698.1, + "r": 536.1, + "b": 275.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.2", + "question": "01", + "y_start": 275.8, + "y_end": 158.2, + "label_box": { + "l": 48.201700846354164, + "t": 275.7768351236979, + "r": 103.16855875651042, + "b": 259.6498006184896, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 275.8, + "r": 536.1, + "b": 158.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.3", + "question": "01", + "y_start": 158.2, + "y_end": 0.0, + "label_box": { + "l": 46.93323771158854, + "t": 158.21938069661462, + "r": 102.32291666666667, + "b": 140.81915283203125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 158.2, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.015625, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 73.76470947265625, + "r": 543.7490234375, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.96022542317708, + "t": 24.95928955078125, + "r": 72.72537740071614, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 70.18844604492188, + "t": 26.23248291015625, + "r": 85.83285522460938, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.12738800048828, + "t": 53.19232177734375, + "r": 104.33588409423828, + "b": 17.3953857421875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "4": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 495.2, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.4", + "question": "01", + "y_start": 495.2, + "y_end": 230.4, + "label_box": { + "l": 48.201700846354164, + "t": 495.18914794921875, + "r": 102.32291666666667, + "b": 479.48651123046875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 495.2, + "r": 536.1, + "b": 230.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.5", + "question": "01", + "y_start": 230.4, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 230.36655680338538, + "r": 102.32291666666667, + "b": 214.66392008463538, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 230.4, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.179264068603516, + "t": 53.1982421875, + "r": 104.26579284667969, + "b": 17.73736572265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "5": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 724.4, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.6", + "question": "01", + "y_start": 724.4, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 724.3625183105469, + "r": 102.74573771158855, + "b": 709.9330851236979, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 724.4, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 74.18910725911462, + "r": 543.7490234375, + "b": 60.60845947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.12112808227539, + "t": 53.14373779296875, + "r": 104.327880859375, + "b": 17.5670166015625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "6": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 448.5, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.7", + "question": "01", + "y_start": 448.5, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 448.50567626953125, + "r": 104.01420084635417, + "b": 432.80303955078125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 448.5, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.96022542317708, + "t": 24.95928955078125, + "r": 72.72537740071614, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 77.79924011230469, + "t": 24.95928955078125, + "r": 84.56439208984375, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.06983947753906, + "t": 53.17987060546875, + "r": 104.2056884765625, + "b": 17.67327880859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [ + { + "box": null, + "n_rows": 6, + "n_cols": 2, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "7": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 479.4801025390625, + "t": 73.76470947265625, + "r": 543.7490234375, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.095619201660156, + "t": 53.34234619140625, + "r": 104.30477142333984, + "b": 17.5211181640625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "8": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.9", + "question": "01", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 775.2899424235026, + "r": 103.5913798014323, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 585.6083984375, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.96022542317708, + "t": 24.95928955078125, + "r": 72.72537740071614, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.21787643432617, + "t": 53.2222900390625, + "r": 104.35285186767578, + "b": 17.7176513671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "9": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.1", + "question": "02", + "y_start": 491.4, + "y_end": 361.9, + "label_box": { + "l": 48.62452697753906, + "t": 491.36956787109375, + "r": 102.74573771158855, + "b": 475.66697184244794, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 491.4, + "r": 536.1, + "b": 361.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.2", + "question": "02", + "y_start": 361.9, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 361.92905680338544, + "r": 105.2826639811198, + "b": 345.80202229817706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 361.9, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 47.77887980143229, + "t": 774.8655446370443, + "r": 80.33617146809895, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 73.76470947265625, + "r": 543.3262125651041, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.18645477294922, + "t": 53.17108154296875, + "r": 104.25172424316406, + "b": 17.64910888671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 233.9642791748047, + "t": 683.4948272705078, + "r": 347.205322265625, + "b": 554.4544982910156, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "10": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.3", + "question": "02", + "y_start": 775.7, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 775.7143351236979, + "r": 102.32291666666667, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.193878173828125, + "t": 53.23822021484375, + "r": 104.41835021972656, + "b": 17.68609619140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "11": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 697.6, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.4", + "question": "02", + "y_start": 697.6, + "y_end": 433.2, + "label_box": { + "l": 49.47016906738281, + "t": 697.6256306966146, + "r": 101.9000956217448, + "b": 682.7717997233073, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 697.6, + "r": 536.1, + "b": 433.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.5", + "question": "02", + "y_start": 433.2, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 433.22743733723956, + "r": 103.16855875651042, + "b": 417.52480061848956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 433.2, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 283.7135416666667, + "t": 810.9391352335612, + "r": 294.7069091796875, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 73.76470947265625, + "r": 543.3262125651041, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.28749084472656, + "t": 53.192626953125, + "r": 104.4219741821289, + "b": 18.02410888671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "12": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.6", + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 47.356058756510414, + "t": 776.1387329101562, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 776.1, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 27.08127848307288, + "r": 86.25567626953125, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.7087809244791, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.06380844116211, + "t": 53.18597412109375, + "r": 104.28301239013672, + "b": 17.581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [ + { + "box": null, + "n_rows": 7, + "n_cols": 3, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "13": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 27.08127848307288, + "r": 86.25567626953125, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 585.6083984375, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 73.76470947265625, + "r": 544.171875, + "b": 60.18406168619788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.38368733723962, + "r": 545.4403076171875, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.16658401489258, + "t": 53.1641845703125, + "r": 104.45934295654297, + "b": 17.537353515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.3030395507812, + "t": 634.2982940673828, + "r": 575.8578491210938, + "b": 592.6698303222656, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "14": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 478.6, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.1", + "question": "03", + "y_start": 478.6, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 478.63771565755206, + "r": 104.01420084635417, + "b": 464.20827229817706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 478.6, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.108829498291016, + "t": 53.17132568359375, + "r": 104.2585220336914, + "b": 17.90985107421875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [ + { + "box": null, + "n_rows": 3, + "n_cols": 3, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "15": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.2", + "question": "03", + "y_start": 775.7, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 103.5913798014323, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 297.24383544921875, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 73.76470947265625, + "r": 543.7490234375, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.16040802001953, + "t": 53.16973876953125, + "r": 104.38372039794922, + "b": 17.7064208984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "16": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 539.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.3", + "question": "03", + "y_start": 539.3, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 539.3262329101562, + "r": 101.47727457682292, + "b": 524.8967895507812, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 539.3, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.1007080078125, + "t": 53.2117919921875, + "r": 104.33074951171875, + "b": 17.74853515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 185.54078674316406, + "t": 710.5711212158203, + "r": 393.96270751953125, + "b": 588.0393524169922, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "17": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 468.0, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.4", + "question": "03", + "y_start": 468.0, + "y_end": 288.1, + "label_box": { + "l": 48.62452697753906, + "t": 468.02785237630206, + "r": 101.9000956217448, + "b": 453.59840901692706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 468.0, + "r": 536.1, + "b": 288.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.5", + "question": "03", + "y_start": 288.1, + "y_end": 0.0, + "label_box": { + "l": 47.356058756510414, + "t": 288.08428955078125, + "r": 380.5397542317708, + "b": 273.2304484049479, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 288.1, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 283.29071044921875, + "t": 811.3635304768881, + "r": 295.97536214192706, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 74.18910725911462, + "r": 543.7490234375, + "b": 60.60845947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.06275177001953, + "t": 53.25390625, + "r": 104.31889343261719, + "b": 17.77984619140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 156.39285278320312, + "t": 667.3309478759766, + "r": 423.3988342285156, + "b": 519.7236328125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "18": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.1", + "question": "04", + "y_start": 723.1, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 723.0893351236979, + "r": 295.1297200520833, + "b": 707.38671875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 723.1, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 78.22206115722656, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 79.06770833333333, + "t": 24.53489176432288, + "r": 84.14157104492188, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.121463775634766, + "t": 53.21649169921875, + "r": 104.3064956665039, + "b": 17.7779541015625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [ + { + "box": null, + "n_rows": 5, + "n_cols": 3, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "19": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 494.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.2", + "question": "04", + "y_start": 494.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 494.34035237630206, + "r": 101.9000956217448, + "b": 479.91090901692706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 494.3, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 74.18910725911462, + "r": 543.3262125651041, + "b": 60.60845947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.15392303466797, + "t": 53.19732666015625, + "r": 104.37195587158203, + "b": 17.78106689453125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 219.59185791015625, + "t": 708.927734375, + "r": 427.3768615722656, + "b": 546.8448181152344, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "20": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 575.4, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.3", + "question": "04", + "y_start": 575.4, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 575.3998209635417, + "r": 101.9000956217448, + "b": 560.9703776041667, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 575.4, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.96022542317708, + "t": 24.53489176432288, + "r": 72.72537740071614, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04840087890625, + "t": 53.253662109375, + "r": 104.3270492553711, + "b": 17.5347900390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 227.0424346923828, + "t": 684.4001617431641, + "r": 420.9546203613281, + "b": 616.7417907714844, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "21": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.4", + "question": "04", + "y_start": 775.3, + "y_end": 452.3, + "label_box": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.1, + "b": 452.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.5", + "question": "04", + "y_start": 452.3, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 452.32521565755206, + "r": 103.16855875651042, + "b": 436.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 452.3, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 73.76470947265625, + "r": 543.7490234375, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.26432418823242, + "t": 53.17437744140625, + "r": 104.31494903564453, + "b": 17.68426513671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 542.1177978515625, + "t": 415.42755126953125, + "r": 574.8453369140625, + "b": 373.7242736816406, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "22": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.26893615722656, + "t": 26.23248291015625, + "r": 85.83285522460938, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 48.83792495727539, + "t": 53.11871337890625, + "r": 104.64608764648438, + "b": 16.5157470703125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "23": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 709.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.1", + "question": "05", + "y_start": 709.9, + "y_end": 527.0, + "label_box": { + "l": 48.62452697753906, + "t": 709.9330851236979, + "r": 100.63162231445312, + "b": 695.0792541503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 709.9, + "r": 536.1, + "b": 527.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.2", + "question": "05", + "y_start": 527.0, + "y_end": 332.2, + "label_box": { + "l": 48.201700846354164, + "t": 527.018778483073, + "r": 108.24242146809895, + "b": 511.31614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 527.0, + "r": 536.1, + "b": 332.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.3", + "question": "05", + "y_start": 332.2, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 332.22137451171875, + "r": 533.1785074869791, + "b": 303.78692626953125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 332.2, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 74.18910725911462, + "r": 543.7490234375, + "b": 60.60845947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.26893615722656, + "t": 26.23248291015625, + "r": 85.83285522460938, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.234535217285156, + "t": 53.13446044921875, + "r": 104.30413055419922, + "b": 17.3516845703125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "24": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 441.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.4", + "question": "05", + "y_start": 441.3, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 441.29095458984375, + "r": 101.054443359375, + "b": 428.13470458984375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 441.3, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 764.6800638834635, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.17908477783203, + "t": 53.28521728515625, + "r": 104.2843246459961, + "b": 17.65447998046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 50.27867889404297, + "t": 697.9160461425781, + "r": 534.2479858398438, + "b": 506.797607421875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "25": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.5", + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 74.18910725911462, + "r": 543.7490234375, + "b": 60.60845947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.31337356567383, + "t": 53.187255859375, + "r": 104.32842254638672, + "b": 17.487060546875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "26": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.1", + "question": "06", + "y_start": 494.8, + "y_end": 222.3, + "label_box": { + "l": 49.47016906738281, + "t": 494.76475016276044, + "r": 101.47727457682292, + "b": 480.33530680338544, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 494.8, + "r": 536.1, + "b": 222.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.2", + "question": "06", + "y_start": 222.3, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 222.30303955078125, + "r": 103.5913798014323, + "b": 206.17604573567712, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 222.3, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 78.22206115722656, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.26893615722656, + "t": 27.08127848307288, + "r": 86.25567626953125, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 47.00654983520508, + "t": 775.9247817993164, + "r": 80.57906341552734, + "b": 759.4455184936523, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_picture", + "docling_label": "picture", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.15398406982422, + "t": 53.2298583984375, + "r": 104.27017974853516, + "b": 17.54296875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "27": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.3", + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 73.76470947265625, + "r": 543.7490234375, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.21142578125, + "t": 53.20953369140625, + "r": 104.35021209716797, + "b": 17.45208740234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "28": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 63.84611511230469, + "t": 27.08127848307288, + "r": 87.10132853190105, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.060306549072266, + "t": 53.243408203125, + "r": 104.18020629882812, + "b": 17.59002685546875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [ + { + "box": null, + "n_rows": 6, + "n_cols": 4, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + }, + { + "box": null, + "n_rows": 3, + "n_cols": 2, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "29": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 772.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.4", + "question": "06", + "y_start": 772.3, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 772.3191782633463, + "r": 101.47727457682292, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 772.3, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 74.18910725911462, + "r": 543.7490234375, + "b": 60.18406168619788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.25188446044922, + "t": 53.1590576171875, + "r": 104.30789947509766, + "b": 17.57330322265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "30": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.5", + "question": "06", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 103.16855875651042, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 776.1, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 764.6800638834635, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 66.38304646809895, + "t": 24.53489176432288, + "r": 72.30255635579427, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 77.79924011230469, + "t": 24.95928955078125, + "r": 84.56439208984375, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.17033386230469, + "t": 53.19232177734375, + "r": 104.32601928710938, + "b": 17.66766357421875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 182.57284545898438, + "t": 660.1277008056641, + "r": 323.5049743652344, + "b": 512.7030639648438, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 349.4798278808594, + "t": 668.1431274414062, + "r": 466.3904113769531, + "b": 502.2280578613281, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "31": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.96022542317708, + "t": 24.95928955078125, + "r": 72.72537740071614, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 74.18910725911462, + "r": 543.7490234375, + "b": 60.60845947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 48.9473762512207, + "t": 53.15509033203125, + "r": 104.62229919433594, + "b": 17.2017822265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "32": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.1", + "question": "07", + "y_start": 732.9, + "y_end": 192.2, + "label_box": { + "l": 49.47016906738281, + "t": 732.8504231770834, + "r": 101.47727457682292, + "b": 718.4209899902344, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 732.9, + "r": 536.1, + "b": 192.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.3", + "question": "07", + "y_start": 192.2, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 192.17100016276038, + "r": 102.32291666666667, + "b": 174.77077229817712, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 192.2, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 80.33617146809895, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.26893615722656, + "t": 27.08127848307288, + "r": 86.67849731445312, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 764.6800638834635, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 25.80808512369788, + "r": 545.4403076171875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.06572341918945, + "t": 53.1595458984375, + "r": 104.2694320678711, + "b": 17.48858642578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [ + { + "box": null, + "n_rows": 6, + "n_cols": 3, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "33": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.4", + "question": "07", + "y_start": 775.7, + "y_end": 474.8, + "label_box": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 102.32291666666667, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 536.1, + "b": 474.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.5", + "question": "07", + "y_start": 474.8, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 474.81817626953125, + "r": 101.9000956217448, + "b": 459.53993733723956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 474.8, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 73.76470947265625, + "r": 543.3262125651041, + "b": 61.03285725911462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.26893615722656, + "t": 26.65688069661462, + "r": 86.25567626953125, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.204193115234375, + "t": 53.1688232421875, + "r": 104.37303924560547, + "b": 17.4703369140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "34": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 735.8, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.6", + "question": "07", + "y_start": 735.8, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 735.8211873372396, + "r": 102.32291666666667, + "b": 719.6941731770834, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 735.8, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 26.23248291015625, + "r": 85.83285522460938, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.6083984375, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.7485758463542, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.161170959472656, + "t": 53.15081787109375, + "r": 104.27032470703125, + "b": 17.639404296875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "35": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.8", + "question": "07", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 776.1, + "r": 536.1, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 546.2859700520834, + "t": 789.2949829101562, + "r": 585.6083984375, + "b": 764.6800638834635, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.4403076171875, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.07066345214844, + "t": 53.27899169921875, + "r": 104.23448944091797, + "b": 17.56280517578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "36": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 26.65688069661462, + "r": 85.83285522460938, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 48.913848876953125, + "t": 53.150634765625, + "r": 104.60427856445312, + "b": 16.85711669921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "37": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 66.38304646809895, + "t": 24.95928955078125, + "r": 71.87973531087239, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.8631591796875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.14103317260742, + "t": 53.27081298828125, + "r": 104.3841552734375, + "b": 17.4703369140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "38": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.96022542317708, + "t": 25.38368733723962, + "r": 72.72537740071614, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 70.18844604492188, + "t": 26.23248291015625, + "r": 85.83285522460938, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.8631591796875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.104557037353516, + "t": 53.3353271484375, + "r": 104.38912200927734, + "b": 17.3426513671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "39": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 764.6800638834635, + "r": 93.86647542317708, + "b": 753.2213948567709, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.96022542317708, + "t": 25.38368733723962, + "r": 72.72537740071614, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 70.18844604492188, + "t": 26.23248291015625, + "r": 85.4100341796875, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 545.8631591796875, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.1429557800293, + "t": 53.29705810546875, + "r": 104.4314193725586, + "b": 17.40765380859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "40": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 66.38304646809895, + "t": 24.11049397786462, + "r": 72.30255635579427, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 583.4943033854166, + "b": 764.6800638834635, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 480.3257649739583, + "t": 24.95928955078125, + "r": 545.0174967447916, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.0760498046875, + "t": 53.3773193359375, + "r": 104.37796020507812, + "b": 17.49005126953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 350.3396301269531, + "t": 67.80126953125, + "r": 528.1468505859375, + "b": 32.028076171875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/validate.json b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/validate.json new file mode 100644 index 0000000..8950d8b --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-biology-8461-1h-2022jun/validate.json @@ -0,0 +1,131 @@ +{ + "paper_code": "8461/1", + "board": "aqa", + "summary": { + "worst_severity": "warn", + "needs_priority_review": true, + "n_flags": 3, + "marks_sum": 94, + "official_max": 100, + "parts_total": 40, + "parts_low_conf": 0, + "questions_expected": 7, + "questions_recovered": 7 + }, + "flags": [ + "[warn] C1_marks_sum: marks sum 94 below official max 100 (-6) \u2014 missing parts or unread marks", + "[warn] C4_subpart_seq: sub-part gaps: Q01 missing ['8'], Q07 missing ['2', '7']", + "[warn] C5_coverage: 61.9% vs GT (26/42); missed ['07.2', '08.1', '08.2', '08.3', '08.4', '08.5', '09.1', '09.2', '09.3', '10.1']" + ], + "checks": [ + { + "id": "C1_marks_sum", + "severity": "warn", + "status": "under", + "detail": "marks sum 94 below official max 100 (-6) \u2014 missing parts or unread marks" + }, + { + "id": "C2_part_marks", + "severity": "info", + "status": "ok", + "detail": "every part carries a plausible mark" + }, + { + "id": "C3_question_seq", + "severity": "info", + "status": "ok", + "detail": "questions 1-7 contiguous" + }, + { + "id": "C4_subpart_seq", + "severity": "warn", + "status": "gap", + "detail": "sub-part gaps: Q01 missing ['8'], Q07 missing ['2', '7']" + }, + { + "id": "C5_coverage", + "severity": "warn", + "status": "missed", + "detail": "61.9% vs GT (26/42); missed ['07.2', '08.1', '08.2', '08.3', '08.4', '08.5', '09.1', '09.2', '09.3', '10.1']" + } + ], + "part_confidence": { + "01.1": "medium", + "01.2": "medium", + "01.3": "medium", + "01.4": "medium", + "01.5": "medium", + "01.6": "medium", + "01.7": "medium", + "01.9": "medium", + "02.1": "medium", + "02.2": "medium", + "02.3": "medium", + "02.4": "medium", + "02.5": "medium", + "02.6": "medium", + "03.1": "medium", + "03.2": "medium", + "03.3": "medium", + "03.4": "medium", + "03.5": "medium", + "04.1": "medium", + "04.2": "medium", + "04.3": "medium", + "04.4": "medium", + "04.5": "medium", + "05.1": "medium", + "05.2": "medium", + "05.3": "medium", + "05.4": "medium", + "05.5": "medium", + "06.1": "medium", + "06.2": "medium", + "06.3": "medium", + "06.4": "medium", + "06.5": "medium", + "07.1": "medium", + "07.3": "medium", + "07.4": "medium", + "07.5": "medium", + "07.6": "medium", + "07.8": "medium" + }, + "question_sequence": [ + { + "n": 1, + "label": "01", + "recovered": true + }, + { + "n": 2, + "label": "02", + "recovered": true + }, + { + "n": 3, + "label": "03", + "recovered": true + }, + { + "n": 4, + "label": "04", + "recovered": true + }, + { + "n": 5, + "label": "05", + "recovered": true + }, + { + "n": 6, + "label": "06", + "recovered": true + }, + { + "n": 7, + "label": "07", + "recovered": true + } + ] +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/bands.json b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/bands.json new file mode 100644 index 0000000..a5fb5e3 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/bands.json @@ -0,0 +1,475 @@ +{ + "board": "aqa", + "paper_code": "7405/1", + "coord_origin": "BOTTOMLEFT", + "pages": { + "3": { + "main": [ + { + "question": "01", + "y_start": 738.8, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "01.1", + "question": "01", + "y_start": 696.4, + "y_end": 538.5 + }, + { + "label": "01.2", + "question": "01", + "y_start": 538.5, + "y_end": 0.0 + } + ] + }, + "4": { + "main": [ + { + "question": "01", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.3", + "question": "01", + "y_start": 775.7, + "y_end": 297.0 + }, + { + "label": "01.4", + "question": "01", + "y_start": 297.0, + "y_end": 0.0 + } + ] + }, + "5": { + "main": [ + { + "question": "01", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.5", + "question": "01", + "y_start": 774.9, + "y_end": 360.2 + }, + { + "label": "01.6", + "question": "01", + "y_start": 360.2, + "y_end": 0.0 + } + ] + }, + "6": { + "main": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "02.2", + "question": "02", + "y_start": 599.2, + "y_end": 0.0 + } + ] + }, + "8": { + "main": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.5", + "question": "02", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "10": { + "main": [ + { + "question": "03", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "03.1", + "question": "03", + "y_start": 525.3, + "y_end": 0.0 + } + ] + }, + "11": { + "main": [ + { + "question": "03", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.2", + "question": "03", + "y_start": 776.1, + "y_end": 670.0 + }, + { + "label": "03.3", + "question": "03", + "y_start": 670.0, + "y_end": 589.4 + }, + { + "label": "03.4", + "question": "03", + "y_start": 589.4, + "y_end": 0.0 + } + ] + }, + "12": { + "main": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.5", + "question": "03", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "14": { + "main": [ + { + "question": "04", + "y_start": 774.0, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "04.2", + "question": "04", + "y_start": 434.5, + "y_end": 0.0 + } + ] + }, + "15": { + "main": [ + { + "question": "04", + "y_start": 776.6, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.3", + "question": "04", + "y_start": 776.6, + "y_end": 480.3 + }, + { + "label": "04.4", + "question": "04", + "y_start": 480.3, + "y_end": 0.0 + } + ] + }, + "16": { + "main": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.5", + "question": "04", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "17": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.2", + "question": "05", + "y_start": 511.7, + "y_end": 403.5 + }, + { + "label": "05.3", + "question": "05", + "y_start": 403.5, + "y_end": 0.0 + } + ] + }, + "18": { + "main": [ + { + "question": "05", + "y_start": 663.2, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.5", + "question": "05", + "y_start": 663.2, + "y_end": 0.0 + } + ] + }, + "20": { + "main": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.7", + "question": "05", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "22": { + "main": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.2", + "question": "06", + "y_start": 586.0, + "y_end": 310.6 + }, + { + "label": "06.3", + "question": "06", + "y_start": 310.6, + "y_end": 0.0 + } + ] + }, + "23": { + "main": [ + { + "question": "06", + "y_start": 774.4, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.4", + "question": "06", + "y_start": 774.4, + "y_end": 449.8 + }, + { + "label": "06.5", + "question": "06", + "y_start": 449.8, + "y_end": 0.0 + } + ] + }, + "24": { + "main": [ + { + "question": "06", + "y_start": 774.4, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.6", + "question": "06", + "y_start": 774.4, + "y_end": 324.6 + }, + { + "label": "06.7", + "question": "06", + "y_start": 324.6, + "y_end": 0.0 + } + ] + }, + "25": { + "main": [ + { + "question": "07", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "07.1", + "question": "07", + "y_start": 721.4, + "y_end": 535.9 + }, + { + "label": "07.2", + "question": "07", + "y_start": 535.9, + "y_end": 264.3 + }, + { + "label": "07.3", + "question": "07", + "y_start": 264.3, + "y_end": 0.0 + } + ] + }, + "26": { + "main": [ + { + "question": "07", + "y_start": 527.4, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.5", + "question": "07", + "y_start": 527.4, + "y_end": 421.3 + }, + { + "label": "07.6", + "question": "07", + "y_start": 421.3, + "y_end": 0.0 + } + ] + }, + "27": { + "main": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "08.2", + "question": "08", + "y_start": 350.0, + "y_end": 274.9 + }, + { + "label": "08.3", + "question": "08", + "y_start": 274.9, + "y_end": 0.0 + } + ] + }, + "28": { + "main": [ + { + "question": "08", + "y_start": 681.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "08.4", + "question": "08", + "y_start": 681.1, + "y_end": 510.0 + }, + { + "label": "08.5", + "question": "08", + "y_start": 510.0, + "y_end": 0.0 + } + ] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/furniture.json b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/furniture.json new file mode 100644 index 0000000..ef8f33a --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/furniture.json @@ -0,0 +1 @@ +{"n_pages": 32, "freq_threshold": 0.4, "furniture_cells": {"3,1": 31, "3,32": 20, "12,34": 28, "21,1": 32, "21,3": 13, "24,32": 17}, "content_margins": {"content_x_band": {"x_left": 41.6, "x_right": 536.6}, "per_page": {"1": {"top": 797.5, "bottom": 16.0, "left": 35.9, "right": 545.0}, "2": {"top": 775.7, "bottom": 414.1, "left": 173.4, "right": 404.2}, "3": {"top": 775.7, "bottom": 325.4, "left": 49.0, "right": 535.7}, "4": {"top": 772.3, "bottom": 206.6, "left": 50.3, "right": 536.1}, "5": {"top": 773.6, "bottom": 101.4, "left": 49.0, "right": 567.8}, "6": {"top": 772.3, "bottom": 181.1, "left": 48.6, "right": 536.1}, "7": {"top": 772.3, "bottom": 110.3, "left": 50.7, "right": 536.1}, "8": {"top": 771.9, "bottom": 633.5, "left": 113.7, "right": 566.2}, "9": {"top": 774.9, "bottom": 414.1, "left": 183.1, "right": 392.4}, "10": {"top": 772.7, "bottom": 115.4, "left": 48.6, "right": 536.6}, "11": {"top": 772.7, "bottom": 116.2, "left": 47.8, "right": 536.1}, "12": {"top": 775.3, "bottom": 103.9, "left": 49.5, "right": 564.9}, "13": {"top": 774.9, "bottom": 414.1, "left": 183.1, "right": 392.4}, "14": {"top": 772.3, "bottom": 117.9, "left": 49.5, "right": 536.6}, "15": {"top": 774.4, "bottom": 175.6, "left": 47.8, "right": 535.7}, "16": {"top": 773.2, "bottom": 201.9, "left": 113.7, "right": 574.9}, "17": {"top": 772.3, "bottom": 126.8, "left": 48.2, "right": 536.1}, "18": {"top": 771.5, "bottom": 488.0, "left": 49.9, "right": 536.1}, "19": {"top": 789.1, "bottom": 73.9, "left": 38.8, "right": 541.6}, "20": {"top": 773.2, "bottom": 568.6, "left": 113.7, "right": 536.1}, "21": {"top": 812.6, "bottom": 95.0, "left": 281.2, "right": 567.8}, "22": {"top": 773.2, "bottom": 179.4, "left": 49.0, "right": 536.1}, "23": {"top": 774.4, "bottom": 95.8, "left": 49.0, "right": 536.1}, "24": {"top": 773.2, "bottom": 221.6, "left": 50.3, "right": 574.1}, "25": {"top": 772.3, "bottom": 103.9, "left": 48.2, "right": 536.1}, "26": {"top": 771.9, "bottom": 188.4, "left": 48.2, "right": 568.7}, "27": {"top": 772.7, "bottom": 162.0, "left": 48.2, "right": 535.7}, "28": {"top": 774.4, "bottom": 326.7, "left": 50.3, "right": 575.6}, "29": {"top": 775.3, "bottom": 420.5, "left": 173.8, "right": 403.8}, "30": {"top": 771.0, "bottom": 745.6, "left": 184.8, "right": 444.0}, "31": {"top": 788.9, "bottom": 745.6, "left": 184.8, "right": 580.5}, "32": {"top": 771.0, "bottom": 40.2, "left": 54.5, "right": 520.5}}}, "ab_test_figures": {"context_figure_before_mask": 44, "context_figure_after_mask": 10, "removed_as_furniture": 34, "removed_breakdown": {"cell 3,1": 31, "cell 3,32": 3}}, "text_furniture_removed": 133, "items": [{"page": 1, "kind": "text", "label": "text", "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 754.4945780436198, "coord_origin": "BOTTOMLEFT"}, "text": "AQA", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 712.9038492838541, "r": 232.97489420572916, "b": 700.1719970703125, "coord_origin": "BOTTOMLEFT"}, "text": "Please write clearly in block capitals", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 680.2254231770834, "r": 130.65198771158853, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "text": "Centre number", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 680.2254231770834, "r": 403.3721516927083, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatenumber", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 641.1810709635416, "r": 101.9000956217448, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Surname", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 54.96685282389323, "t": 616.1417643229166, "r": 120.92708333333333, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "text": "Forename(s)", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 588.5560709635416, "r": 155.1756591796875, "b": 577.097391764323, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatesignature", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 166.59184773763022, "t": 574.9754231770833, "r": 309.50567626953125, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "text": "Ideclarethisismyownwork.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 41.43655141194662, "t": 551.6336873372395, "r": 185.61883544921875, "b": 493.49155680338544, "coord_origin": "BOTTOMLEFT"}, "text": "A-level CHEMISTRY", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 40.16808573404948, "t": 479.48651123046875, "r": 328.9554850260417, "b": 461.66192626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Paper 1 Inorganic and Physical Chemistry", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 395.03188069661456, "r": 92.59801228841145, "b": 382.30002848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Materials", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 38.47679901123047, "t": 381.02683512369794, "r": 186.4644775390625, "b": 367.87058512369794, "coord_origin": "BOTTOMLEFT"}, "text": "For this paper you must have:", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 367.02178955078125, "r": 368.7007649739583, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "text": "the Periodic Table/Data Booklet, provide", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 353.86553955078125, "r": 231.7064412434896, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a ruler with millimetre measurements", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 340.28489176432294, "r": 400.835205078125, "b": 327.9774373372396, "coord_origin": "BOTTOMLEFT"}, "text": "a scientific calculator, which you are e", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 314.39678955078125, "r": 108.24242146809895, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "text": "Instructions", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 301.24053955078125, "r": 231.28361002604166, "b": 286.81109619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Use black ink or black ball-point pen.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 288.08428955078125, "r": 238.04876708984375, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Fill in the boxes at the top of this pa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.7452646891276, "t": 272.8060506184896, "r": 156.866943359375, "b": 261.3473917643229, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Answer all questions.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.32244110107422, "t": 259.6498006184896, "r": 426.6273600260417, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7You must answer the questions in the sp", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 49.47016906738281, "t": 221.87864176432288, "r": 350.9422200520833, "b": 207.44919840494788, "coord_origin": "BOTTOMLEFT"}, "text": "this book. Write the question number aga", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.32244110107422, "t": 207.44919840494788, "r": 184.773193359375, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7All working must be shown.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 194.29294840494788, "r": 376.734375, "b": 169.67803955078125, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Do all rough work in this book. Cross t", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.47679901123047, "t": 155.67299397786462, "r": 106.55113728841145, "b": 142.09234619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Information", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 140.39475504557288, "r": 282.445068359375, "b": 128.08730061848962, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7The marks for questions are shown in br", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.7452646891276, "t": 127.23850504557288, "r": 251.15625, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Themaximum markfor thispaper is105.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 25.80808512369788, "r": 211.41097005208334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "JUN227405101", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 402.1036783854167, "t": 425.58831787109375, "r": 545.0174967447916, "b": 409.88572184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Time allowed: 2 hours", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 316.2708333333333, "t": 25.80808512369788, "r": 367.0094401041667, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/E11", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 480.7485758463542, "t": 35.56915283203125, "r": 545.4403076171875, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "7405/1", "furniture": true}, {"page": 2, "kind": "text", "label": "page_header", "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 27.93007405598962, "r": 79.91335042317708, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 173.35699462890625, "t": 775.7143351236979, "r": 404.2177734375, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 182.6590779622396, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 2, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 3, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 180.12215169270834, "t": 775.7143351236979, "r": 397.45263671875, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questions in the spaces provi", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 738.7919616699219, "r": 80.75899251302083, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "01", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 736.6699829101562, "r": 271.87451171875, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about equilibria.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 696.3524373372396, "r": 104.43702189127605, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "text": "01.1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 694.23046875, "r": 379.6941324869792, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Give two features of a reaction in dynam", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 680.2254231770834, "r": 535.7154134114584, "b": 665.7959798177084, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 655.1861165364584, "r": 163.20927937825522, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Feature 1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 603.4098917643229, "r": 164.05492146809897, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Feature 2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 538.4774373372395, "r": 103.5913798014323, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "text": "01.2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 535.9310709635417, "r": 302.3177083333333, "b": 521.0772298177083, "coord_origin": "BOTTOMLEFT"}, "text": "A gas-phase reaction is at equilibrium.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 521.926025390625, "r": 422.3991292317708, "b": 508.3453776041667, "coord_origin": "BOTTOMLEFT"}, "text": "When the pressure is increased the yield", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 496.03794352213544, "r": 483.2854817708333, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "text": "State what can be deduced about the chem", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 482.45729573567706, "r": 535.2926025390625, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 190.69270833333334, "t": 339.43609619140625, "r": 393.2244059244792, "b": 325.4310506184896, "coord_origin": "BOTTOMLEFT"}, "text": "Question 1 continues on the next page", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 3, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 101.9000956217448, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "01.3", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 388.5733642578125, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon monoxide and hydrogen react to fo", "furniture": false}, {"page": 4, "kind": "text", "label": "formula", "bbox": {"l": 245.6595662434896, "t": 748.5530497233073, "r": 403.3721516927083, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "CO(g) + 2H2(g) = CHsOH(g)", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 721.3917541503906, "r": 506.1178792317708, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "text": "0.430 mol of carbon monoxide is mixed wi", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 667.0691731770834, "r": 479.0572916666667, "b": 656.0348917643229, "coord_origin": "BOTTOMLEFT"}, "text": "Calculatetheamount,inmoles,ofcarbonmonox", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 642.0298665364584, "r": 526.8361409505209, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the partial pressure, in kPa, ", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 616.9905395507812, "r": 535.7154134114584, "b": 602.5611165364584, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 363.62664794921875, "r": 526.413330078125, "b": 325.8554484049479, "coord_origin": "BOTTOMLEFT"}, "text": "Amountofcarbonmonoxide mol Partial press", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 296.9966023763021, "r": 102.32291666666667, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "text": "01.4", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 294.4502156575521, "r": 446.5, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Give an expression for the equilibrium c", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 245.6595662434896, "t": 269.4109090169271, "r": 402.5264892578125, "b": 255.40586344401038, "coord_origin": "BOTTOMLEFT"}, "text": "CO(g) + 2H2(g) = CH3OH(g)", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 255.83026123046875, "r": 536.1382242838541, "b": 241.40081787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 214.23952229817712, "r": 123.88683064778645, "b": 206.60040283203125, "coord_origin": "BOTTOMLEFT"}, "text": "K", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 4, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 5, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.47727457682292, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "01.5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 524.7220458984375, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "A different mixture of carbon monoxide a", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 733.2748209635416, "r": 370.3920491536458, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Some data for this equilibrium are shown", "furniture": false}, {"page": 5, "kind": "text", "label": "section_header", "bbox": {"l": 304.4318033854167, "t": 707.38671875, "r": 344.5998942057292, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 201.26324462890625, "t": 679.3766377766927, "r": 319.23057047526044, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "text": "Partial pressure of CO", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 378.0028483072917, "t": 679.3766377766927, "r": 421.1306559244792, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "text": "125 kPa", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 200.8404337565104, "t": 661.9764404296875, "r": 339.5260416666667, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "text": "Partialpressure of CHsOH", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 376.3115234375, "t": 662.4008382161459, "r": 421.976318359375, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "text": "5.45 kPa", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 200.8404337565104, "t": 645.0006306966146, "r": 216.90767415364584, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "text": "Kp", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 356.4389241536458, "t": 645.0006306966146, "r": 441.8489583333333, "b": 633.1175537109375, "coord_origin": "BOTTOMLEFT"}, "text": "1.15 x 10-6 kPa-2", "furniture": false}, {"page": 5, "kind": "text", "label": "formula", "bbox": {"l": 248.19649251302084, "t": 617.4149373372396, "r": 401.6808675130208, "b": 602.5611165364584, "coord_origin": "BOTTOMLEFT"}, "text": "CO(g) + 2H2(g) = CHsOH(g)", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 590.2536417643229, "r": 535.2926025390625, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the partial pressure, in kPa, ", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 290.0558675130208, "t": 403.09539794921875, "r": 525.9905192057291, "b": 387.81715901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Partial pressure kPa", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 360.23146565755206, "r": 101.054443359375, "b": 346.22642008463544, "coord_origin": "BOTTOMLEFT"}, "text": "01.6", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 358.95827229817706, "r": 525.9905192057291, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Use the Kp value from Table 1 to calcula", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 248.19649251302084, "t": 325.4310506184896, "r": 402.1036783854167, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "text": "CHOH(g) = CO(g) + 2H2(g)", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 303.78692626953125, "r": 212.679443359375, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Give the units for Kp", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 290.63067626953125, "r": 536.5610758463541, "b": 276.20123291015625, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 377.1571858723958, "t": 137.84836832682288, "r": 384.7679850260417, "b": 129.36049397786462, "coord_origin": "BOTTOMLEFT"}, "text": "K", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 360.6671142578125, "t": 114.93105061848962, "r": 388.9962158203125, "b": 101.35040283203125, "coord_origin": "BOTTOMLEFT"}, "text": "Units", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 70.36960856119788, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 118.32623291015625, "r": 567.8498942057291, "b": 106.01877848307288, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": false}, {"page": 5, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 298.93511962890625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Rheniumhasanatomicnumberof75", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 730.7284545898438, "r": 88.36979166666667, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "text": "02.", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 85.83285522460938, "t": 728.1820780436198, "r": 98.51751708984375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "1", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 729.8796590169271, "r": 295.55255126953125, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Define the term relative atomic mass.", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 715.8746236165365, "r": 535.7154134114584, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 6, "kind": "text", "label": "checkbox_selected", "bbox": {"l": 48.62452697753906, "t": 599.1659545898438, "r": 394.4928792317708, "b": 583.0389404296875, "coord_origin": "BOTTOMLEFT"}, "text": "02.2 The relative atomic mass of a sampl", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 570.3070678710938, "r": 484.553955078125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2 shows information about the two ", "furniture": false}, {"page": 6, "kind": "text", "label": "caption", "bbox": {"l": 304.4318033854167, "t": 543.9945678710938, "r": 345.445556640625, "b": 532.1115112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 192.80680338541666, "t": 516.4088948567708, "r": 312.0426025390625, "b": 502.4038492838542, "coord_origin": "BOTTOMLEFT"}, "text": "Relative isotopic mass", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 355.1704508463542, "t": 516.4088948567708, "r": 458.7618408203125, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Relativeabundance", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 241.85416666666666, "t": 499.00868733723956, "r": 263.8409016927083, "b": 485.85243733723956, "coord_origin": "BOTTOMLEFT"}, "text": "185", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 399.5667317708333, "t": 499.00868733723956, "r": 414.3655192057292, "b": 486.27683512369794, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 211.41097005208334, "t": 481.60850016276044, "r": 293.4384358723958, "b": 468.87664794921875, "coord_origin": "BOTTOMLEFT"}, "text": "To be calculated", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 399.5667317708333, "t": 481.18410237630206, "r": 414.788330078125, "b": 468.45225016276044, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 454.02280680338544, "r": 430.4327392578125, "b": 426.43711344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the relative isotopic mass of ", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 428.13470458984375, "r": 536.1382242838541, "b": 413.70526123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 276.94838460286456, "t": 252.43511962890625, "r": 387.7277425130208, "b": 238.85447184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Relative isotopic mass", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 211.26877848307288, "r": 102.32291666666667, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "text": "02].3", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 208.72239176432288, "r": 457.9161783854167, "b": 195.14174397786462, "coord_origin": "BOTTOMLEFT"}, "text": "State why the isotopes of rhenium have t", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 195.56614176432288, "r": 536.1382242838541, "b": 181.13669840494788, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 6, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.3191782633463, "r": 502.3125, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "A sample of rhenium is ionised by electr", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 732.8504231770834, "r": 84.14157104492188, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 732.426035563151, "r": 448.1912841796875, "b": 705.2647399902344, "coord_origin": "BOTTOMLEFT"}, "text": "A 185Re+ ion with a kinetic energy of 1.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 688.7133280436198, "r": 430.4327392578125, "b": 670.8887329101562, "coord_origin": "BOTTOMLEFT"}, "text": "The kinetic energy of the ion is given b", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 658.5812784830729, "r": 225.78692626953125, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "text": "where m = mass / kg V=speed / ms-1 KE=ki", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 593.2244262695312, "r": 423.2447916666667, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the time,inseconds,for theiont", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 567.7607014973958, "r": 342.0629475911458, "b": 556.3020426432292, "coord_origin": "BOTTOMLEFT"}, "text": "The Avogadro constant, L = 6.022 \u00d7 1023 ", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 554.1800537109375, "r": 536.1382242838541, "b": 541.0238037109375, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 362.3583984375, "t": 124.69211832682288, "r": 388.5733642578125, "b": 110.26275634765625, "coord_origin": "BOTTOMLEFT"}, "text": "Time", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 7, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 285.4048258463542, "t": 811.7879257202148, "r": 293.4384358723958, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 776.1387329101562, "r": 102.74573771158855, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "02.5", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 771.8947804768881, "r": 468.4867350260417, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "text": "State how the relative abundance of 185R", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 746.4310709635416, "r": 536.1382242838541, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 646.2738037109375, "r": 566.1586100260416, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": true}, {"page": 8, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 9, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 802.4512329101562, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 18.59340413411462, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 774.8655446370443, "r": 370.3920491536458, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverforthenextquestion", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 9, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 10, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.64488220214844, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 347.1368408203125, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about hydrogen peroxide", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 746.0066731770834, "r": 399.5667317708333, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "text": "The half-equation for the oxidation of h", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 267.2234700520833, "t": 720.1185709635416, "r": 380.5397542317708, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "text": "H2O2\u2192O2+2H++2e", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 694.23046875, "r": 352.6335042317708, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Hair bleach solution contains hydrogen p", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 667.4935709635416, "r": 372.928955078125, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "text": "A sample of hairbleachsolution is dilute", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 641.1810709635416, "r": 194.9209187825521, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "text": "original solution.", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 629.7223917643229, "r": 515.8427734375, "b": 605.1074829101562, "coord_origin": "BOTTOMLEFT"}, "text": "A 25.0 cm? sample of the diluted hair bl", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 604.2586873372396, "r": 503.1581217447917, "b": 578.7949829101562, "coord_origin": "BOTTOMLEFT"}, "text": "This acidified sample is titrated with 0", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 577.9461873372395, "r": 519.648193359375, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "text": "The reaction is complete when 35.85 cm3 ", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 525.3211873372395, "r": 105.2826639811198, "b": 509.1941731770833, "coord_origin": "BOTTOMLEFT"}, "text": "03.1", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 508.769775390625, "r": 253.27034505208334, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "acidified hydrogen peroxide.", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 483.30605061848956, "r": 509.5004475911458, "b": 457.41794840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the concentration, in mol dm-3", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 443.41294352213544, "r": 510.3461100260417, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "text": "(Ilf you were unable to write an equatio", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 406.06614176432294, "r": 536.5610758463541, "b": 391.63669840494794, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 235.5118408203125, "t": 128.08730061848962, "r": 304.4318033854167, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "text": "Concentration", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 468.4867350260417, "t": 127.66290283203125, "r": 516.265625, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "text": "mol dm-3", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.3399658203125, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 10, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 538.6751708984375, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 11, "kind": "text", "label": "page_header", "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 103.5913798014323, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "03.2", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 361.9355875651042, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "State why an indicator is not added in t", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 759.5873209635416, "r": 535.7154134114584, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 670.0399373372396, "r": 103.16855875651042, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "text": "03.3", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 667.4935709635416, "r": 388.5733642578125, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "text": "Give the oxidation state of oxygen in hy", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 654.76171875, "r": 535.2926025390625, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "list_item", "bbox": {"l": 49.47016906738281, "t": 589.4048665364584, "r": 403.7949625651042, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "text": "03.4 Hydrogen peroxide decomposes to for", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 560.121602376302, "r": 279.0625, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "text": "Giveanequationforthisreaction.", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 535.082275390625, "r": 495.9701741536458, "b": 510.04296875, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the amount, in moles, of hydro", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 497.31109619140625, "r": 303.58616129557294, "b": 484.15484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "The gas constant, R = 8.31 J K-1 mol-1", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 484.15484619140625, "r": 536.1382242838541, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 458.69114176432294, "r": 159.82670084635416, "b": 444.26169840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Equation", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 264.68654378255206, "t": 129.36049397786462, "r": 305.7002766927083, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "text": "Amount", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 497.2386067708333, "t": 128.93609619140625, "r": 518.3797200520834, "b": 116.20424397786462, "coord_origin": "BOTTOMLEFT"}, "text": "mol", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 11, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 12, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 501.8896484375, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "text": "03.5 Hydrazine (NzH4) is used as a rocke", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 116.27604166666667, "t": 732.426035563151, "r": 123.46400960286458, "b": 724.7869160970052, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 238.4715779622396, "t": 713.7526448567709, "r": 331.49241129557294, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "text": "2H\u2014O\u2014O\u2014H", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 383.0767008463542, "t": 713.7526448567709, "r": 419.8622233072917, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "text": "N\u4e09N", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 438.0435384114583, "t": 712.0550638834635, "r": 447.7684733072917, "b": 703.5671590169271, "coord_origin": "BOTTOMLEFT"}, "text": "+", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 466.3726399739583, "t": 713.7526448567709, "r": 534.8697916666666, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "text": "4H\u2014O\u2014H", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 252.00189208984375, "t": 678.1034545898438, "r": 535.2926025390625, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "text": "The enthalpy change for this reaction, \u25b3", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 651.3665568033854, "r": 358.1302083333333, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "text": "Table3showssomemeanbondenthalpyvalues.", "furniture": false}, {"page": 12, "kind": "text", "label": "caption", "bbox": {"l": 304.4318033854167, "t": 625.4784545898438, "r": 345.445556640625, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "text": "Table 3", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 524.472391764323, "r": 296.398193359375, "b": 508.769775390625, "coord_origin": "BOTTOMLEFT"}, "text": "Define the term mean bond enthalpy.", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 496.46230061848956, "r": 501.0440266927083, "b": 470.57419840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Use the equation and the data in Table 3", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 470.57419840494794, "r": 536.1382242838541, "b": 457.41794840494794, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 482.8626708984375, "t": 115.77984619140625, "r": 525.9905192057291, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "kJ mol-1", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 445.11049397786456, "r": 162.78645833333334, "b": 432.37864176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Definition Bond enthalpy Donotwrite outs", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 550.0913492838541, "t": 118.75063069661462, "r": 564.89013671875, "b": 106.86757405598962, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 12, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 13, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 774.8655446370443, "r": 370.3920491536458, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverforthenextquestion", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 13, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 14, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.0167541503906, "r": 78.64488220214844, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "04", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 307.3915608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about acids and bases.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 87.52414957682292, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "text": "04.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 458.7618408203125, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the pH of a 0.150 mol dm-3 sol", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 689.9865112304688, "r": 371.6604817708333, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "text": "For ethanoic acid, Ka = 1.74 x 10-5 mol ", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 677.6790568033854, "r": 536.5610758463541, "b": 663.2496134440104, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 337.83473714192706, "t": 474.81817626953125, "r": 355.1704508463542, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "pH", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 434.50063069661456, "r": 101.9000956217448, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "text": "04.2", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 432.80303955078125, "r": 286.67327880859375, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Strontium is anelement inGroup 2.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 407.76373291015625, "r": 520.4938151041666, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the pH of a 0.0100 mol dm-3 so", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 369.99257405598956, "r": 421.976318359375, "b": 357.26072184244794, "coord_origin": "BOTTOMLEFT"}, "text": "At 10 \u00b0C the ionic product of water, Kw ", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 356.83632405598956, "r": 536.1382242838541, "b": 342.40688069661456, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 336.5662841796875, "t": 128.51169840494788, "r": 356.4389241536458, "b": 117.90183512369788, "coord_origin": "BOTTOMLEFT"}, "text": "pH", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 14, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 15, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 776.5631256103516, "r": 109.0880635579427, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "04.3", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 105.2826639811198, "t": 774.441151936849, "r": 451.9966634114583, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "The pH of a barium hydroxide solution is", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 750.6750183105469, "r": 495.9701741536458, "b": 726.0600992838541, "coord_origin": "BOTTOMLEFT"}, "text": "At 50 \u00b0C a 25 cm? sample of this barium ", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 714.6014302571615, "r": 535.7154134114584, "b": 676.8302612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Deduce the volume of this hydrochloric a", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 662.4008382161459, "r": 271.02886962890625, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "text": "Circle () the correct answer.", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 154.33001708984375, "t": 633.5419514973959, "r": 215.63920084635416, "b": 619.5369262695312, "coord_origin": "BOTTOMLEFT"}, "text": "> 22.45 cm3", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 294.7069091796875, "t": 633.1175537109375, "r": 355.1704508463542, "b": 619.5369262695312, "coord_origin": "BOTTOMLEFT"}, "text": "= 22.45 cm3", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 435.0837809244792, "t": 632.6931762695312, "r": 495.12451171875, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "text": "< 22.45 cm3", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 594.9219970703125, "r": 216.06201171875, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "text": "Explain your answer", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 480.33530680338544, "r": 103.16855875651042, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "04.4", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 478.63771565755206, "r": 521.3394775390625, "b": 453.59840901692706, "coord_origin": "BOTTOMLEFT"}, "text": "State how a buffer solution can be made ", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 441.71535237630206, "r": 514.9971516927084, "b": 429.40789794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Give an equation for the reaction betwee", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 418.79799397786456, "r": 518.3797200520834, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "text": "State how this buffer solution resists c", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 393.33428955078125, "r": 535.7154134114584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 366.59739176432294, "r": 250.31060791015625, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Howbuffersolutionismade", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 266.0157267252604, "r": 159.40387980143228, "b": 251.58632405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Equation", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 189.20021565755212, "r": 300.20359293619794, "b": 175.61956787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Howbuffer solutionresists pH change", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 15, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 16, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 551.7826741536459, "t": 217.63470458984375, "r": 567.0042317708334, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "04.5", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.16796875, "r": 434.2381591796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "A buffer solution is made by adding 2.00", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 734.972401936849, "r": 344.1770833333333, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the pH of this buffer solution", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 708.659901936849, "r": 300.20359293619794, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Give your answer to 2 decimal places.", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 684.4693806966146, "r": 372.0833333333333, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "text": "For ethanoic acid, Ka = 1.74 x 10-5 mol ", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 671.3131306966146, "r": 536.1382242838541, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 336.9890950520833, "t": 213.81512451171875, "r": 356.0160725911458, "b": 201.93206787109375, "coord_origin": "BOTTOMLEFT"}, "text": "pH", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 551.7826741536459, "t": 217.63470458984375, "r": 567.0042317708334, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": false}, {"page": 16, "kind": "text", "label": "page_footer", "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 17, "kind": "text", "label": "page_header", "bbox": {"l": 283.29071044921875, "t": 811.7879257202148, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 421.976318359375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about Period 3 elements", "furniture": false}, {"page": 17, "kind": "text", "label": "list_item", "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 421.5535074869792, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Which is not a correct statement about m", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 716.2990112304688, "r": 536.1382242838541, "b": 701.8695780436198, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 701.4451802571615, "r": 204.2230021158854, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 17, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 661.9764404296875, "r": 290.0558675130208, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "text": "It is used to neutralise stomach acid", "furniture": false}, {"page": 17, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 611.8978068033854, "r": 307.3915608723958, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "text": "It forms a solutionwithpH=14at 25\u00b0C", "furniture": false}, {"page": 17, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.73910522460938, "t": 562.2435709635417, "r": 290.0558675130208, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "text": "It has the empirical formula H2MgO2", "furniture": false}, {"page": 17, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 511.74053955078125, "r": 456.2248942057292, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "05.2 Give an equation for the reaction o", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 496.03794352213544, "r": 535.7154134114584, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 17, "kind": "text", "label": "list_item", "bbox": {"l": 50.31581115722656, "t": 403.51979573567706, "r": 530.6415608723959, "b": 375.50970458984375, "coord_origin": "BOTTOMLEFT"}, "text": "05.3 Identify a reagent or test that cou", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 361.50465901692706, "r": 285.4048258463542, "b": 349.62160237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Statetheobservationineachcase.", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 349.62160237630206, "r": 536.1382242838541, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 322.88470458984375, "r": 192.38399251302084, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "text": "Reagent or test", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 296.9966023763021, "r": 305.7002766927083, "b": 285.9623006184896, "coord_origin": "BOTTOMLEFT"}, "text": "Observationwithsulfurdioxidesolution", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 246.06915283203125, "r": 306.96875, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "text": "Observationwithsulfur trioxidesolution", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 190.69270833333334, "t": 141.66794840494788, "r": 393.6472574869792, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Question5 continues on the next page", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 17, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 18, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 774.0167541503906, "r": 90.06107584635417, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "05.", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 87.52414957682292, "t": 771.4703877766927, "r": 99.3631591796875, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 771.4703877766927, "r": 454.9564208984375, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "The mass spectrum of the element phospho", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 741.7627258300781, "r": 391.5331217447917, "b": 728.6064758300781, "coord_origin": "BOTTOMLEFT"}, "text": "Give the formula of the species responsi", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 728.6064758300781, "r": 535.2926025390625, "b": 715.4502258300781, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 663.2496134440104, "r": 102.32291666666667, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "text": "05.5", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 646.6982014973959, "r": 156.866943359375, "b": 634.8151448567709, "coord_origin": "BOTTOMLEFT"}, "text": "solution.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 634.8151448567709, "r": 536.1382242838541, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 542.7213948567708, "r": 88.36979166666667, "b": 529.1407470703125, "coord_origin": "BOTTOMLEFT"}, "text": "05.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 540.175028483073, "r": 98.51751708984375, "b": 531.6871134440105, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 541.8725992838542, "r": 531.0643717447916, "b": 515.9844970703125, "coord_origin": "BOTTOMLEFT"}, "text": "Draw the displayed formula of the molecu", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 502.4038492838542, "r": 535.7154134114584, "b": 487.97442626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 18, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 19, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 775.2899424235026, "r": 390.6875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Question5 continues on the nextpage", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 438.74456787109375, "r": 392.3787841796875, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.6751708984375, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 20, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 296.82102457682294, "b": 798.2072804768881, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "05.7", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 103.5913798014323, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "05.7", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 378.4256591796875, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "Table 4 shows the melting points of thre", "furniture": false}, {"page": 20, "kind": "text", "label": "section_header", "bbox": {"l": 304.0089925130208, "t": 746.4310709635416, "r": 346.2911783854167, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Table 4", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 243.12261962890625, "t": 716.2990112304688, "r": 300.20359293619794, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "text": "Substance", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 335.2978108723958, "t": 715.4502258300781, "r": 421.976318359375, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "text": "Meltingpoint/ K", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 223.67281087239584, "t": 694.6548563639323, "r": 301.47206624348956, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "text": "sodiumchloride", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 364.8953450520833, "t": 695.503651936849, "r": 392.3787841796875, "b": 681.4986063639323, "coord_origin": "BOTTOMLEFT"}, "text": "1074", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 223.25, "t": 674.2838948567709, "r": 263.41807047526044, "b": 660.2788492838541, "coord_origin": "BOTTOMLEFT"}, "text": "chlorine", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 371.2376708984375, "t": 675.1326802571615, "r": 391.9559733072917, "b": 659.0056762695312, "coord_origin": "BOTTOMLEFT"}, "text": "172", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 222.40435791015625, "t": 652.6397298177084, "r": 312.0426025390625, "b": 638.6347045898438, "coord_origin": "BOTTOMLEFT"}, "text": "hydrogen chloride", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 370.3920491536458, "t": 652.6397298177084, "r": 392.3787841796875, "b": 638.2103068033854, "coord_origin": "BOTTOMLEFT"}, "text": "158", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 621.2344970703125, "r": 428.3186442057292, "b": 608.5026448567709, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the melting points of these ", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 596.1951904296875, "r": 442.2717692057292, "b": 583.0389404296875, "coord_origin": "BOTTOMLEFT"}, "text": "You should refer to the structure of and", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 583.0389404296875, "r": 536.1382242838541, "b": 568.6094970703125, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 57.9266103108724, "t": 27.08127848307288, "r": 81.1818135579427, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 20, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 812.6367162068685, "r": 296.82102457682294, "b": 793.5389353434244, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.09641520182288, "r": 538.6751708984375, "b": 55.94016520182288, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 25.80808512369788, "r": 79.91335042317708, "b": 13.500630696614621, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 108.14076741536462, "r": 567.8498942057291, "b": 94.98451741536462, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 21, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 24.95928955078125, "r": 539.5208333333334, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 22, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 462.9900309244792, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about some elements in ", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 730.7284545898438, "r": 85.4100341796875, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "text": "06.", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 87.52414957682292, "t": 728.1820780436198, "r": 98.51751708984375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "1", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 729.4552612304688, "r": 504.8494059244792, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Chlorine is added to some drinking water", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 689.5621236165365, "r": 405.0634358723958, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "text": "State why the amount of chlorine added m", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 677.2546590169271, "r": 536.1382242838541, "b": 662.8252156575521, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 586.0097045898438, "r": 521.7622884114584, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "text": "06.2 Give an equation for the reaction o", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 113.3162841796875, "t": 569.4582926432292, "r": 166.59184773763022, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "text": "two acids.", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 543.5701904296875, "r": 427.4729817708333, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "text": "Explain, with reference to electrons,why", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 530.8383178710938, "r": 535.7154134114584, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 505.37461344401044, "r": 159.82670084635416, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Equation", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 429.83229573567706, "r": 173.35699462890625, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Explanation", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 310.5772501627604, "r": 101.9000956217448, "b": 296.57220458984375, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 309.72845458984375, "r": 441.8489583333333, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "text": "A student bubbles chlorine gas through a", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 281.7183634440104, "r": 340.37168375651044, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "text": "Statetheobservationthestudentwouldmake.", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 256.2546590169271, "r": 302.7405192057292, "b": 243.94720458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Give an ionic equation for the reaction.", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 243.94720458984375, "r": 536.1382242838541, "b": 229.51776123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 218.05910237630212, "r": 175.04829915364584, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "text": "Observation", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 192.17100016276038, "r": 183.92755126953125, "b": 179.43914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "lonic equation", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 22, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 23, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "06.4", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "06.4", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 503.5809733072917, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "The student adds a few drops of concentr", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 733.2748209635416, "r": 369.54638671875, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "Two gaseous sulfur-containing products a", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 708.2355041503906, "r": 494.7017008463542, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Give an equation for the formation of ea", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 681.9230041503906, "r": 422.3991292317708, "b": 668.7667643229166, "coord_origin": "BOTTOMLEFT"}, "text": "State the role of sulfuric acid in the f", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 668.7667643229166, "r": 536.1382242838541, "b": 654.3373209635416, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 643.7274373372396, "r": 168.70596313476562, "b": 629.2980143229166, "coord_origin": "BOTTOMLEFT"}, "text": "Equation 1", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 566.9119262695312, "r": 168.70596313476562, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Equation 2", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 489.67197672526044, "r": 138.68559773763022, "b": 476.94012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Role", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 449.77886962890625, "r": 101.9000956217448, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "text": "06.5", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 448.08127848307294, "r": 509.5004475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "The student adds a few drops of acidifie", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 420.91998291015625, "r": 422.3991292317708, "b": 408.18813069661456, "coord_origin": "BOTTOMLEFT"}, "text": "The student observes bubbles of gas and ", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 408.18813069661456, "r": 457.4933675130208, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "text": "The student bubbles the gas through calc", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 369.56817626953125, "r": 313.3110758463542, "b": 357.26072184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Deduce the identity of the sodium halide", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 343.25567626953125, "r": 265.5321858723958, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest the identity of the gas.", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 317.7919718424479, "r": 448.1912841796875, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "text": "Give an ionic equation for the formation", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 303.78692626953125, "r": 535.7154134114584, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 278.74761962890625, "r": 233.8205362955729, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "text": "Identityofsodium halide", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 253.28387451171875, "r": 184.35038248697916, "b": 238.85447184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Identity of gas", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 227.39577229817712, "r": 184.35038248697916, "b": 213.39072672526038, "coord_origin": "BOTTOMLEFT"}, "text": "lonic equation", "furniture": false}, {"page": 23, "kind": "text", "label": "section_header", "bbox": {"l": 190.69270833333334, "t": 110.26275634765625, "r": 393.2244059244792, "b": 95.83331298828125, "coord_origin": "BOTTOMLEFT"}, "text": "Question 6 continues on the next page", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 23, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "06.6", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "06.6", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 380.116943359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "The ClF2+ ion contains two different Gro", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 748.128651936849, "r": 511.6145833333333, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Use your understanding of the electron p", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 709.5086873372396, "r": 405.0634358723958, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Include any lone pairs of electrons that", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 683.6205851236979, "r": 365.3181559244792, "b": 670.8887329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the ion has the shape you ha", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 658.1568806966146, "r": 335.72064208984375, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest a value for the bond angle in th", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 645.4250284830729, "r": 535.2926025390625, "b": 632.2687784830729, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 621.2344970703125, "r": 147.98768107096353, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Shape", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 442.56414794921875, "r": 173.35699462890625, "b": 428.13470458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Explanation", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 365.32419840494794, "r": 171.66571044921875, "b": 349.62160237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Bond angle", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 324.5822957356771, "r": 101.054443359375, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "text": "06.7", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 321.61151123046875, "r": 472.7149658203125, "b": 309.3040568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Magnesium is used in the extraction of t", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 295.29901123046875, "r": 279.0625, "b": 282.9915568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Give an equation for this reaction.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 283.41595458984375, "r": 536.1382242838541, "b": 268.5621134440104, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 235.45928955078125, "r": 566.1586100260416, "b": 223.15183512369788, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 235.45928955078125, "r": 566.1586100260416, "b": 223.15183512369788, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 24, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 80.33617146809895, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "07", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 287.94175211588544, "b": 758.3141377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Copper(ll) complexes are coloured.", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 759.1629282633463, "r": 520.0710042317709, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "The colour is caused by the d electrons ", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 721.3917541503906, "r": 103.5913798014323, "b": 705.2647399902344, "coord_origin": "BOTTOMLEFT"}, "text": "07.1", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 719.269785563151, "r": 444.8087158203125, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why aqueous solutions containing", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 705.6891377766927, "r": 536.1382242838541, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 25, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 535.9310709635417, "r": 464.2585042317708, "b": 519.8040568033855, "coord_origin": "BOTTOMLEFT"}, "text": "07.2 When a d electron moves from the gr", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 518.9552612304688, "r": 371.2376708984375, "b": 507.49660237630206, "coord_origin": "BOTTOMLEFT"}, "text": "copper complex, the energy change is 3.9", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 493.91595458984375, "r": 315.42519124348956, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "text": "The Planck constant, h = 6.63 \u00d7 10-34 J ", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 468.02785237630206, "r": 369.1235758463542, "b": 454.87160237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the frequency, in s-1, of the ", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 454.87160237630206, "r": 535.7154134114584, "b": 441.71535237630206, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 292.16998291015625, "t": 306.3332722981771, "r": 346.2911783854167, "b": 289.35748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Frequency", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 264.31817626953125, "r": 102.32291666666667, "b": 248.61553955078125, "coord_origin": "BOTTOMLEFT"}, "text": "07.3", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 261.3473917643229, "r": 504.4265950520833, "b": 234.18609619140625, "coord_origin": "BOTTOMLEFT"}, "text": "State three ways in which a transition m", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 234.61049397786462, "r": 535.7154134114584, "b": 221.45424397786462, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 181.56109619140625, "r": 121.3499043782552, "b": 171.80002848307288, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 156.09739176432288, "r": 121.77272542317708, "b": 146.33632405598962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 190.69270833333334, "t": 117.47743733723962, "r": 393.2244059244792, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Question7continueson the nextpage", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 63.42329406738281, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 198.726318359375, "t": 724.3625183105469, "r": 268.06911214192706, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "text": "[CuCl4]2- (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 205.4914754231771, "t": 698.8988138834635, "r": 241.43133544921875, "b": 688.7133280436198, "coord_origin": "BOTTOMLEFT"}, "text": "excess", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 205.4914754231771, "t": 687.4401448567709, "r": 250.31060791015625, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "text": "aqueous", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 379.2712809244792, "t": 690.8353068033854, "r": 449.4597574869792, "b": 673.8594970703125, "coord_origin": "BOTTOMLEFT"}, "text": "Na4EDTA (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 205.9142862955729, "t": 675.5570780436198, "r": 252.4247029622396, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "text": "ammonia", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 197.88067626953125, "t": 650.9421590169271, "r": 232.1292521158854, "b": 634.3907470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Q (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 371.2376708984375, "t": 650.5177612304688, "r": 405.4862467447917, "b": 633.9663492838541, "coord_origin": "BOTTOMLEFT"}, "text": "R (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 771.8947804768881, "r": 470.600830078125, "b": 743.8847045898438, "coord_origin": "BOTTOMLEFT"}, "text": "Consider the following reaction scheme i", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 198.726318359375, "t": 724.3625183105469, "r": 268.06911214192706, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "text": "[CuCl4]2- (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 205.4914754231771, "t": 698.8988138834635, "r": 241.43133544921875, "b": 688.7133280436198, "coord_origin": "BOTTOMLEFT"}, "text": "excess", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 205.4914754231771, "t": 687.4401448567709, "r": 250.31060791015625, "b": 675.5570780436198, "coord_origin": "BOTTOMLEFT"}, "text": "aqueous", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 379.2712809244792, "t": 690.8353068033854, "r": 449.4597574869792, "b": 673.8594970703125, "coord_origin": "BOTTOMLEFT"}, "text": "Na4EDTA (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 205.9142862955729, "t": 675.5570780436198, "r": 252.4247029622396, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "text": "ammonia", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 197.88067626953125, "t": 650.9421590169271, "r": 232.1292521158854, "b": 634.3907470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Q (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 371.2376708984375, "t": 650.5177612304688, "r": 405.4862467447917, "b": 633.9663492838541, "coord_origin": "BOTTOMLEFT"}, "text": "R (aq)", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 607.2294514973959, "r": 105.2826639811198, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "text": "07.\u2463", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 604.6830851236979, "r": 293.015625, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Name the shape of the [CuCl4]\u00b2- ion.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 591.1024373372396, "r": 535.7154134114584, "b": 576.6730143229167, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 527.4431762695312, "r": 460.8759358723958, "b": 511.31614176432294, "coord_origin": "BOTTOMLEFT"}, "text": "07.5 Give an ionic equation for the conv", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 511.74053955078125, "r": 536.1382242838541, "b": 497.31109619140625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 421.34438069661456, "r": 410.1372884114583, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "text": "07.6 State the colour of the solution co", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 392.90989176432294, "r": 399.9895833333333, "b": 380.17803955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Give an ionic equation for the conversio", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 380.60243733723956, "r": 535.7154134114584, "b": 366.17299397786456, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 355.13873291015625, "r": 148.41051228841147, "b": 340.70928955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Colour", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 329.2506306966146, "r": 159.82670084635416, "b": 314.39678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Equation", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 238.85447184244788, "r": 103.5913798014323, "b": 222.72743733723962, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 235.03489176432288, "r": 225.36409505208334, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Identifycomplex ion R.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 222.30303955078125, "r": 536.5610758463541, "b": 207.87359619140625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 554.319580078125, "t": 200.65887451171875, "r": 568.6955159505209, "b": 188.35142008463538, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": false}, {"page": 26, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 27, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "27", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 746.4310709635416, "r": 83.71875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 350.04600016276044, "r": 109.0880635579427, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "text": "08.2", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 61.73200480143229, "t": 23.68609619140625, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 249.4649658203125, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about cells.", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 745.1578877766927, "r": 523.4535725911459, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "text": "The half-equations for two electrodes th", "furniture": false}, {"page": 27, "kind": "text", "label": "formula", "bbox": {"l": 113.73910522460938, "t": 710.3574829101562, "r": 512.8830159505209, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 27, "kind": "text", "label": "formula", "bbox": {"l": 114.16192626953125, "t": 680.2254231770834, "r": 512.460205078125, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 653.9129231770834, "r": 299.78076171875, "b": 639.4834798177084, "coord_origin": "BOTTOMLEFT"}, "text": "Identify the oxidising agent in this cel", "furniture": false}, {"page": 27, "kind": "text", "label": "caption", "bbox": {"l": 115.43039957682292, "t": 574.9754231770833, "r": 462.9900309244792, "b": 562.2435709635417, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1 shows a cross-section through a", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 302.3177083333333, "t": 554.6044514973958, "r": 347.9824625651042, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 293.86126708984375, "t": 532.9603068033855, "r": 323.88161214192706, "b": 520.652852376302, "coord_origin": "BOTTOMLEFT"}, "text": "Metal", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 427.4729817708333, "t": 496.88669840494794, "r": 476.9431559244792, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Insulation", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 252.00189208984375, "t": 473.12058512369794, "r": 361.9355875651042, "b": 461.66192626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Mixtureof Zn andZnO", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 427.0501708984375, "t": 472.27178955078125, "r": 457.070556640625, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Metal", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 267.64630126953125, "t": 460.81313069661456, "r": 346.7139892578125, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "in an electrolyte", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 427.0501708984375, "t": 431.10544840494794, "r": 464.6813151041667, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Porous", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 427.0501708984375, "t": 419.22239176432294, "r": 476.9431559244792, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "text": "separator", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 172.08854166666666, "t": 387.39276123046875, "r": 231.28361002604166, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Ag2O paste", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 347.49961344401044, "r": 392.8015950520833, "b": 332.64577229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest the function of the porous separ", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 640.7566731770834, "r": 535.7154134114584, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 333.49456787109375, "r": 534.8697916666666, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 274.92803955078125, "r": 514.5743408203125, "b": 257.9522501627604, "coord_origin": "BOTTOMLEFT"}, "text": "08.3 The standard electrode potentials f", "furniture": false}, {"page": 27, "kind": "text", "label": "formula", "bbox": {"l": 150.94743855794272, "t": 246.91794840494788, "r": 506.5406901041667, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 191.74660237630212, "r": 535.2926025390625, "b": 162.03892008463538, "coord_origin": "BOTTOMLEFT"}, "text": "Give an equation for the overall reactio", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.79400634765625, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 424.9360758463542, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "text": "The EMF of an alkaline hydrogen-oxygen f", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 149.6789754231771, "t": 721.816151936849, "r": 350.9422200520833, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "text": "(6)H +(be)-HO\u4e59 \u2190-\u4e59 + (1)OH\u4e59", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 402.9493408203125, "t": 720.54296875, "r": 470.600830078125, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "text": "E\u00b0=-0.83V", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 681.07421875, "r": 101.47727457682292, "b": 666.2203776041666, "coord_origin": "BOTTOMLEFT"}, "text": "08.4", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 678.527842203776, "r": 509.07763671875, "b": 653.0641276041666, "coord_origin": "BOTTOMLEFT"}, "text": "Give the half-equation for the other ele", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 652.2153523763021, "r": 535.2926025390625, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 627.6004231770834, "r": 159.82670084635416, "b": 613.1709798177084, "coord_origin": "BOTTOMLEFT"}, "text": "Equation", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 549.9361165364583, "r": 129.38351440429688, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "text": "Ee", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 510.04296875, "r": 101.9000956217448, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "text": "08.5", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 507.49660237630206, "r": 517.5340576171875, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest why the EMF values of the acidic", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 482.03289794921875, "r": 536.1382242838541, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 231.28361002604166, "t": 338.16294352213544, "r": 346.7139892578125, "b": 326.7042439778646, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOFQUESTIONS", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 431.52984619140625, "r": 563.1988525390625, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 28, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 25.38368733723962, "r": 79.91335042317708, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 445.11049397786456, "r": 396.6070149739583, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 585.1855875651041, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 29, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "31", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 31, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 32, "kind": "text", "label": "page_header", "bbox": {"l": 282.86789957682294, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "page_header", "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 32, "kind": "text", "label": "section_header", "bbox": {"l": 243.96826171875, "t": 771.0459899902344, "r": 383.9223225911458, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page, if required.", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Write the questionnumbers in the left-ha", "furniture": false}, {"page": 32, "kind": "text", "label": "section_header", "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Copyrightinformation", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "text": "For confidentialitypurposes,all acknowle", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "CopyrightTeam.", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Copyright?2022AQAand itslicensors.Allrig", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 68.07433573404948, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 64.26893615722656, "t": 25.80808512369788, "r": 79.91335042317708, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 362.3583984375, "t": 49.99859619140625, "r": 487.0909016927083, "b": 40.23752848307288, "coord_origin": "BOTTOMLEFT"}, "text": "226A7405/7", "furniture": false}, {"page": 32, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7405/1", "furniture": true}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 38.00352478027344, "t": 797.48291015625, "r": 168.22532653808594, "b": 750.3669357299805, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 41.57489776611328, "t": 53.50885009765625, "r": 232.79144287109375, "b": 17.6092529296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 43.46540451049805, "t": 52.9984130859375, "r": 99.5510482788086, "b": 16.2794189453125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 43.799652099609375, "t": 53.073486328125, "r": 99.07989501953125, "b": 17.542236328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 43.603614807128906, "t": 53.21435546875, "r": 99.1415786743164, "b": 17.57452392578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 43.78177261352539, "t": 53.18817138671875, "r": 99.22442626953125, "b": 17.46331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 43.69084167480469, "t": 53.16693115234375, "r": 99.08799743652344, "b": 17.5013427734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 43.67705535888672, "t": 53.18963623046875, "r": 99.12734985351562, "b": 17.6636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 43.8090934753418, "t": 53.20458984375, "r": 99.13793182373047, "b": 17.58782958984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 43.526153564453125, "t": 53.07830810546875, "r": 99.46122741699219, "b": 16.9515380859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 43.62184143066406, "t": 53.210205078125, "r": 99.05526733398438, "b": 17.57977294921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 43.73190689086914, "t": 53.1451416015625, "r": 99.24485778808594, "b": 17.90057373046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 114.2842788696289, "t": 734.2892837524414, "r": 534.5986938476562, "b": 683.3049163818359, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 43.672115325927734, "t": 53.1563720703125, "r": 99.08405303955078, "b": 17.3460693359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 43.50332260131836, "t": 53.0228271484375, "r": 99.4515609741211, "b": 16.822265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 43.77970886230469, "t": 53.17462158203125, "r": 99.19371795654297, "b": 17.7877197265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 43.741512298583984, "t": 53.1185302734375, "r": 99.22008514404297, "b": 17.48614501953125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 542.4967651367188, "t": 242.42291259765625, "r": 574.9304809570312, "b": 202.35992431640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 43.75214385986328, "t": 53.18939208984375, "r": 99.23369598388672, "b": 17.509033203125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 43.75908660888672, "t": 53.14544677734375, "r": 99.28108215332031, "b": 17.828369140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 43.85944747924805, "t": 53.1580810546875, "r": 99.19698333740234, "b": 17.61865234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 38.80020523071289, "t": 789.092601776123, "r": 541.6115112304688, "b": 73.8773193359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 43.55806350708008, "t": 53.1070556640625, "r": 99.49885559082031, "b": 17.413818359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 46.760440826416016, "t": 776.4064331054688, "r": 105.32807159423828, "b": 759.193115234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 43.70090866088867, "t": 53.146484375, "r": 99.1500244140625, "b": 17.34271240234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 43.74695587158203, "t": 53.06658935546875, "r": 99.47607421875, "b": 17.3372802734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 43.68296813964844, "t": 53.0728759765625, "r": 99.08783721923828, "b": 17.2548828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 47.008304595947266, "t": 776.2696914672852, "r": 104.7603530883789, "b": 758.913818359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 43.707786560058594, "t": 53.05535888671875, "r": 99.06978607177734, "b": 17.37445068359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 47.35185241699219, "t": 775.9591522216797, "r": 104.07383728027344, "b": 759.1455383300781, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 43.718467712402344, "t": 53.13372802734375, "r": 99.17106628417969, "b": 17.50701904296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 542.27197265625, "t": 259.7894287109375, "r": 574.0704956054688, "b": 221.617919921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 43.63474655151367, "t": 53.11236572265625, "r": 99.09383392333984, "b": 17.3360595703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 197.84866333007812, "t": 729.5112686157227, "r": 449.76068115234375, "b": 635.7095031738281, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 43.6900520324707, "t": 53.19793701171875, "r": 99.08284759521484, "b": 17.35870361328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 43.74736404418945, "t": 53.17083740234375, "r": 99.2158432006836, "b": 17.5997314453125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 171.64683532714844, "t": 553.2512817382812, "r": 476.143310546875, "b": 373.05401611328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 43.68498992919922, "t": 53.12066650390625, "r": 99.07637786865234, "b": 17.40753173828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 543.0728149414062, "t": 458.28045654296875, "r": 575.6439208984375, "b": 416.9912414550781, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 43.49864959716797, "t": 53.07568359375, "r": 99.51233673095703, "b": 16.77655029296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 43.72919845581055, "t": 53.18017578125, "r": 99.28366088867188, "b": 17.0953369140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 43.71382522583008, "t": 53.14093017578125, "r": 99.38362884521484, "b": 17.3262939453125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 43.683597564697266, "t": 53.1888427734375, "r": 99.13557434082031, "b": 16.9169921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 346.5959777832031, "t": 76.732177734375, "r": 510.5633850097656, "b": 41.01318359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "table", "label": "table", "bbox": {"l": 443.3665466308594, "t": 396.3082275390625, "r": 544.1763305664062, "b": 194.62908935546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 12, "kind": "table", "label": "table", "bbox": {"l": 164.72103881835938, "t": 601.3435821533203, "r": 467.8115234375, "b": 535.7142333984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}]} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/page_roles.json b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/page_roles.json new file mode 100644 index 0000000..cbbb782 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/page_roles.json @@ -0,0 +1,228 @@ +{ + "pages": { + "1": { + "role": "cover", + "chars": 833, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "2": { + "role": "blank", + "chars": 126, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "3": { + "role": "question", + "chars": 389, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "4": { + "role": "question", + "chars": 536, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "5": { + "role": "question", + "chars": 512, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "6": { + "role": "question", + "chars": 465, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "7": { + "role": "continuation", + "chars": 401, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "8": { + "role": "question", + "chars": 128, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "9": { + "role": "blank", + "chars": 123, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "10": { + "role": "question", + "chars": 730, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "11": { + "role": "question", + "chars": 404, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "12": { + "role": "question", + "chars": 423, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "13": { + "role": "blank", + "chars": 123, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "14": { + "role": "question", + "chars": 448, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "15": { + "role": "question", + "chars": 722, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "16": { + "role": "question", + "chars": 265, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "17": { + "role": "question", + "chars": 630, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "18": { + "role": "question", + "chars": 266, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "19": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "20": { + "role": "question", + "chars": 294, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "21": { + "role": "blank", + "chars": 54, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "22": { + "role": "question", + "chars": 600, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "23": { + "role": "question", + "chars": 783, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "24": { + "role": "question", + "chars": 444, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "25": { + "role": "question", + "chars": 556, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "26": { + "role": "question", + "chars": 501, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "27": { + "role": "question", + "chars": 554, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "28": { + "role": "question", + "chars": 422, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "29": { + "role": "blank", + "chars": 127, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "30": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "31": { + "role": "blank", + "chars": 127, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "32": { + "role": "appendix", + "chars": 430, + "margins_enabled": true, + "source": "auto", + "confirmed": false + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/report.md b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/report.md new file mode 100644 index 0000000..a3d5d84 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/report.md @@ -0,0 +1,15 @@ +# AQA A-level Chemistry 7405/1 2022 Jun (image-only OCR baseline) + +- **slug:** `b1-aqa-chemistry-7405-1-2022jun` · **board:** aqa · **level:** A-level · **path:** B1 image-only OCR (RapidOCR margin-pass) +- **questions/parts:** 8 / 36 +- **marks:** None/None +- **coverage vs GT:** 76.6% (missed ['02.1', '02.3', '02.4', '04.1', '05.1', '05.4', '05.6', '06.1']) +- **G6 verdict:** warn +- **answer-region count:** 150 + +**Flags (human-review hints):** +- [info] C1_marks_sum: no official max available to check the sum against +- [warn] C4_subpart_seq: sub-part gaps: Q02 missing ['3', '4'], Q05 missing ['4', '6'], Q07 missing ['4'] +- [warn] C5_coverage: 57.1% vs GT (24/42); missed ['02.1', '02.3', '02.4', '04.1', '05.1', '05.4', '06.1', '08.1', '09.1', '09.2'] + +**Artifacts:** `structured.json`, `validate.json`, `furniture.json`, `bands.json`, `page_roles.json`, `template.json`, `overlays/` (0 images) diff --git a/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/structured.json b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/structured.json new file mode 100644 index 0000000..d5d4f0e --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/structured.json @@ -0,0 +1,2629 @@ +{ + "board": "aqa", + "paper_code": "7405/1", + "front_matter": { + "exam_board": "AQA", + "paper_code": "7405/1", + "qualification": "ALEVEL", + "subject": "Chemistry", + "time_allowed": "2 hours", + "session": "Jun 2022" + }, + "path": "aqa-docling+rapidocr (v1)", + "pages": [], + "questions": [ + { + "question": "01", + "parts": [ + { + "label": "01.1", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 696.3524373372396, + "r": 104.43702189127605, + "b": 680.6498209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.2", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 538.4774373372395, + "r": 103.5913798014323, + "b": 522.3504231770833, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.3", + "page": 4, + "bbox": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 101.9000956217448, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.4", + "page": 4, + "bbox": { + "l": 50.31581115722656, + "t": 296.9966023763021, + "r": 102.32291666666667, + "b": 282.5671590169271, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.5", + "page": 5, + "bbox": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 101.47727457682292, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.6", + "page": 5, + "bbox": { + "l": 49.04734802246094, + "t": 360.23146565755206, + "r": 101.054443359375, + "b": 346.22642008463544, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "02", + "parts": [ + { + "label": "02.2", + "page": 6, + "bbox": { + "l": 48.62452697753906, + "t": 599.1659545898438, + "r": 394.4928792317708, + "b": 583.0389404296875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.5", + "page": 8, + "bbox": { + "l": 47.77887980143229, + "t": 776.1387329101562, + "r": 102.74573771158855, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "03", + "parts": [ + { + "label": "03.1", + "page": 10, + "bbox": { + "l": 48.62452697753906, + "t": 525.3211873372395, + "r": 105.2826639811198, + "b": 509.1941731770833, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.2", + "page": 11, + "bbox": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 103.5913798014323, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.3", + "page": 11, + "bbox": { + "l": 47.77887980143229, + "t": 670.0399373372396, + "r": 103.16855875651042, + "b": 654.3373209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.4", + "page": 11, + "bbox": { + "l": 49.47016906738281, + "t": 589.4048665364584, + "r": 403.7949625651042, + "b": 573.7022298177083, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.5", + "page": 12, + "bbox": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 501.8896484375, + "b": 746.4310709635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": true, + "extended": false + } + ] + }, + { + "question": "04", + "parts": [ + { + "label": "04.2", + "page": 14, + "bbox": { + "l": 49.47016906738281, + "t": 434.50063069661456, + "r": 101.9000956217448, + "b": 420.07118733723956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.3", + "page": 15, + "bbox": { + "l": 50.31581115722656, + "t": 776.5631256103516, + "r": 109.0880635579427, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.4", + "page": 15, + "bbox": { + "l": 47.77887980143229, + "t": 480.33530680338544, + "r": 103.16855875651042, + "b": 464.20827229817706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.5", + "page": 16, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "05", + "parts": [ + { + "label": "05.2", + "page": 17, + "bbox": { + "l": 48.201700846354164, + "t": 511.74053955078125, + "r": 456.2248942057292, + "b": 495.18914794921875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.3", + "page": 17, + "bbox": { + "l": 50.31581115722656, + "t": 403.51979573567706, + "r": 530.6415608723959, + "b": 375.50970458984375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.5", + "page": 18, + "bbox": { + "l": 49.89299011230469, + "t": 663.2496134440104, + "r": 102.32291666666667, + "b": 648.3957926432291, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.7", + "page": 20, + "bbox": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 103.5913798014323, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "06", + "parts": [ + { + "label": "06.2", + "page": 22, + "bbox": { + "l": 49.04734802246094, + "t": 586.0097045898438, + "r": 521.7622884114584, + "b": 569.0338948567708, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.3", + "page": 22, + "bbox": { + "l": 49.04734802246094, + "t": 310.5772501627604, + "r": 101.9000956217448, + "b": 296.57220458984375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.4", + "page": 23, + "bbox": { + "l": 49.47016906738281, + "t": 774.441151936849, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.5", + "page": 23, + "bbox": { + "l": 49.04734802246094, + "t": 449.77886962890625, + "r": 101.9000956217448, + "b": 435.77382405598956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.6", + "page": 24, + "bbox": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 101.47727457682292, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.7", + "page": 24, + "bbox": { + "l": 50.31581115722656, + "t": 324.5822957356771, + "r": 101.054443359375, + "b": 309.72845458984375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "07", + "parts": [ + { + "label": "07.1", + "page": 25, + "bbox": { + "l": 49.04734802246094, + "t": 721.3917541503906, + "r": 103.5913798014323, + "b": 705.2647399902344, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.2", + "page": 25, + "bbox": { + "l": 48.201700846354164, + "t": 535.9310709635417, + "r": 464.2585042317708, + "b": 519.8040568033855, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.3", + "page": 25, + "bbox": { + "l": 48.201700846354164, + "t": 264.31817626953125, + "r": 102.32291666666667, + "b": 248.61553955078125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.5", + "page": 26, + "bbox": { + "l": 48.201700846354164, + "t": 527.4431762695312, + "r": 460.8759358723958, + "b": 511.31614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.6", + "page": 26, + "bbox": { + "l": 49.04734802246094, + "t": 421.34438069661456, + "r": 410.1372884114583, + "b": 405.64174397786456, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "08", + "parts": [ + { + "label": "08.2", + "page": 27, + "bbox": { + "l": 48.62452697753906, + "t": 350.04600016276044, + "r": 109.0880635579427, + "b": 333.49456787109375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.3", + "page": 27, + "bbox": { + "l": 48.201700846354164, + "t": 274.92803955078125, + "r": 514.5743408203125, + "b": 257.9522501627604, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.4", + "page": 28, + "bbox": { + "l": 50.31581115722656, + "t": 681.07421875, + "r": 101.47727457682292, + "b": 666.2203776041666, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.5", + "page": 28, + "bbox": { + "l": 50.31581115722656, + "t": 510.04296875, + "r": 101.9000956217448, + "b": 495.61354573567706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + } + ], + "regions": [ + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 551.6336873372395, + "r": 185.61883544921875, + "b": 493.49155680338544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A-level CHEMISTRY" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 40.16808573404948, + "t": 479.48651123046875, + "r": 328.9554850260417, + "b": 461.66192626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Paper 1 Inorganic and Physical Chemistry" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 395.03188069661456, + "r": 92.59801228841145, + "b": 382.30002848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Materials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 367.02178955078125, + "r": 368.7007649739583, + "b": 354.71433512369794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the Periodic Table/Data Booklet, provided as an insert (enclosed)" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 353.86553955078125, + "r": 231.7064412434896, + "b": 341.98248291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a ruler with millimetre measurements" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 340.28489176432294, + "r": 400.835205078125, + "b": 327.9774373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a scientific calculator, which you are expected to use where appropriate." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 314.39678955078125, + "r": 108.24242146809895, + "b": 302.9381306966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Instructions" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 301.24053955078125, + "r": 231.28361002604166, + "b": 286.81109619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Use black ink or black ball-point pen." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 288.08428955078125, + "r": 238.04876708984375, + "b": 273.2304484049479, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Fill in the boxes at the top of this page." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.7452646891276, + "t": 272.8060506184896, + "r": 156.866943359375, + "b": 261.3473917643229, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Answer all questions." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 259.6498006184896, + "r": 426.6273600260417, + "b": 233.76169840494788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7You must answer the questions in the spaces provided. Do not write outside the " + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 49.47016906738281, + "t": 221.87864176432288, + "r": 350.9422200520833, + "b": 207.44919840494788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "this book. Write the question number against your answer(s)." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 207.44919840494788, + "r": 184.773193359375, + "b": 195.14174397786462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7All working must be shown." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 194.29294840494788, + "r": 376.734375, + "b": 169.67803955078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be ma" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 155.67299397786462, + "r": 106.55113728841145, + "b": 142.09234619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Information" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 140.39475504557288, + "r": 282.445068359375, + "b": 128.08730061848962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7The marks for questions are shown in brackets." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.7452646891276, + "t": 127.23850504557288, + "r": 251.15625, + "b": 115.35544840494788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Themaximum markfor thispaper is105." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 402.1036783854167, + "t": 425.58831787109375, + "r": 545.0174967447916, + "b": 409.88572184244794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Time allowed: 2 hours" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 316.2708333333333, + "t": 25.80808512369788, + "r": 367.0094401041667, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/E11" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 480.7485758463542, + "t": 35.56915283203125, + "r": 545.4403076171875, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 2, + "bbox": { + "l": 285.4048258463542, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 2, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 3, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 3, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 4, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 5, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 5, + "bbox": { + "l": 304.4318033854167, + "t": 707.38671875, + "r": 344.5998942057292, + "b": 695.503651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 5, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_selected", + "page": 6, + "bbox": { + "l": 48.62452697753906, + "t": 599.1659545898438, + "r": 394.4928792317708, + "b": 583.0389404296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "02.2 The relative atomic mass of a sample of rhenium is 186.3" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 6, + "bbox": { + "l": 304.4318033854167, + "t": 543.9945678710938, + "r": 345.445556640625, + "b": 532.1115112304688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 6, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 7, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 285.4048258463542, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 8, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 9, + "bbox": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 802.4512329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 9, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 10, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 10, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 538.6751708984375, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 11, + "bbox": { + "l": 283.7135416666667, + "t": 810.9391352335612, + "r": 294.7069091796875, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 11, + "bbox": { + "l": 49.47016906738281, + "t": 589.4048665364584, + "r": 403.7949625651042, + "b": 573.7022298177083, + "coord_origin": "BOTTOMLEFT" + }, + "text": "03.4 Hydrogen peroxide decomposes to form water and oxygen." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 11, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 12, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 12, + "bbox": { + "l": 304.4318033854167, + "t": 625.4784545898438, + "r": 345.445556640625, + "b": 614.019775390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 12, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 13, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 13, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 14, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "14" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 14, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 15, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "15" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 15, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 16, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 16, + "bbox": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 17, + "bbox": { + "l": 283.29071044921875, + "t": 811.7879257202148, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "17" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 17, + "bbox": { + "l": 50.31581115722656, + "t": 730.7284545898438, + "r": 421.5535074869792, + "b": 716.2990112304688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Which is not a correct statement about magnesium hydroxide?" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 17, + "bbox": { + "l": 114.16192626953125, + "t": 661.9764404296875, + "r": 290.0558675130208, + "b": 650.0933634440104, + "coord_origin": "BOTTOMLEFT" + }, + "text": "It is used to neutralise stomach acid" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 17, + "bbox": { + "l": 114.16192626953125, + "t": 611.8978068033854, + "r": 307.3915608723958, + "b": 600.0147298177084, + "coord_origin": "BOTTOMLEFT" + }, + "text": "It forms a solutionwithpH=14at 25\u00b0C" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 17, + "bbox": { + "l": 113.73910522460938, + "t": 562.2435709635417, + "r": 290.0558675130208, + "b": 549.0873209635417, + "coord_origin": "BOTTOMLEFT" + }, + "text": "It has the empirical formula H2MgO2" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 17, + "bbox": { + "l": 48.201700846354164, + "t": 511.74053955078125, + "r": 456.2248942057292, + "b": 495.18914794921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "05.2 Give an equation for the reaction of aluminium oxide with sulfuric acid." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 17, + "bbox": { + "l": 50.31581115722656, + "t": 403.51979573567706, + "r": 530.6415608723959, + "b": 375.50970458984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "05.3 Identify a reagent or test that could be used to distinguish between aqueou" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 17, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 18, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 18, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 19, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "19" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 20, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 798.2072804768881, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 20, + "bbox": { + "l": 304.0089925130208, + "t": 746.4310709635416, + "r": 346.2911783854167, + "b": 733.2748209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 4" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 20, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 281.1765950520833, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 793.5389353434244, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 21, + "bbox": { + "l": 479.9029134114583, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 22, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 49.04734802246094, + "t": 586.0097045898438, + "r": 521.7622884114584, + "b": 569.0338948567708, + "coord_origin": "BOTTOMLEFT" + }, + "text": "06.2 Give an equation for the reaction of chlorine with water to form a solution" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 113.3162841796875, + "t": 569.4582926432292, + "r": 166.59184773763022, + "b": 556.7264404296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "two acids." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 22, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 23, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 23, + "bbox": { + "l": 190.69270833333334, + "t": 110.26275634765625, + "r": 393.2244059244792, + "b": 95.83331298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Question 6 continues on the next page" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 23, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 24, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 25, + "bbox": { + "l": 48.201700846354164, + "t": 535.9310709635417, + "r": 464.2585042317708, + "b": 519.8040568033855, + "coord_origin": "BOTTOMLEFT" + }, + "text": "07.2 When a d electron moves from the ground state to the excited state in a" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "26" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 26, + "bbox": { + "l": 48.201700846354164, + "t": 527.4431762695312, + "r": 460.8759358723958, + "b": 511.31614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "07.5 Give an ionic equation for the conversion of [CuCl4]\u00b2- to complex ion P." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 26, + "bbox": { + "l": 49.04734802246094, + "t": 421.34438069661456, + "r": 410.1372884114583, + "b": 405.64174397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "07.6 State the colour of the solution containing the complex ion Q." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 26, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 27, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 27, + "bbox": { + "l": 115.43039957682292, + "t": 574.9754231770833, + "r": 462.9900309244792, + "b": 562.2435709635417, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 1 shows a cross-section through a rechargeable silver-zinc cell" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 28, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "29" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 29, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "30" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 30, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "31" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 31, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 32, + "bbox": { + "l": 282.86789957682294, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "32" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 32, + "bbox": { + "l": 545.4403076171875, + "t": 789.2949829101562, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 32, + "bbox": { + "l": 243.96826171875, + "t": 771.0459899902344, + "r": 383.9223225911458, + "b": 757.4653472900391, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Additional page, if required." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 32, + "bbox": { + "l": 106.12831624348958, + "t": 195.99053955078125, + "r": 187.73295084635416, + "b": 184.10748291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Copyrightinformation" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 32, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7405/1" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 38.00352478027344, + "t": 797.48291015625, + "r": 168.22532653808594, + "b": 750.3669357299805, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 41.57489776611328, + "t": 53.50885009765625, + "r": 232.79144287109375, + "b": 17.6092529296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 43.46540451049805, + "t": 52.9984130859375, + "r": 99.5510482788086, + "b": 16.2794189453125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 43.799652099609375, + "t": 53.073486328125, + "r": 99.07989501953125, + "b": 17.542236328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 43.603614807128906, + "t": 53.21435546875, + "r": 99.1415786743164, + "b": 17.57452392578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 43.78177261352539, + "t": 53.18817138671875, + "r": 99.22442626953125, + "b": 17.46331787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 43.69084167480469, + "t": 53.16693115234375, + "r": 99.08799743652344, + "b": 17.5013427734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 43.67705535888672, + "t": 53.18963623046875, + "r": 99.12734985351562, + "b": 17.6636962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 43.8090934753418, + "t": 53.20458984375, + "r": 99.13793182373047, + "b": 17.58782958984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 43.526153564453125, + "t": 53.07830810546875, + "r": 99.46122741699219, + "b": 16.9515380859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 43.62184143066406, + "t": 53.210205078125, + "r": 99.05526733398438, + "b": 17.57977294921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 43.73190689086914, + "t": 53.1451416015625, + "r": 99.24485778808594, + "b": 17.90057373046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 114.2842788696289, + "t": 734.2892837524414, + "r": 534.5986938476562, + "b": 683.3049163818359, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 43.672115325927734, + "t": 53.1563720703125, + "r": 99.08405303955078, + "b": 17.3460693359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 43.50332260131836, + "t": 53.0228271484375, + "r": 99.4515609741211, + "b": 16.822265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 43.77970886230469, + "t": 53.17462158203125, + "r": 99.19371795654297, + "b": 17.7877197265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 43.741512298583984, + "t": 53.1185302734375, + "r": 99.22008514404297, + "b": 17.48614501953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 542.4967651367188, + "t": 242.42291259765625, + "r": 574.9304809570312, + "b": 202.35992431640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 43.75214385986328, + "t": 53.18939208984375, + "r": 99.23369598388672, + "b": 17.509033203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 43.75908660888672, + "t": 53.14544677734375, + "r": 99.28108215332031, + "b": 17.828369140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 43.85944747924805, + "t": 53.1580810546875, + "r": 99.19698333740234, + "b": 17.61865234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 38.80020523071289, + "t": 789.092601776123, + "r": 541.6115112304688, + "b": 73.8773193359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 43.55806350708008, + "t": 53.1070556640625, + "r": 99.49885559082031, + "b": 17.413818359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 46.760440826416016, + "t": 776.4064331054688, + "r": 105.32807159423828, + "b": 759.193115234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 43.70090866088867, + "t": 53.146484375, + "r": 99.1500244140625, + "b": 17.34271240234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 43.74695587158203, + "t": 53.06658935546875, + "r": 99.47607421875, + "b": 17.3372802734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 43.68296813964844, + "t": 53.0728759765625, + "r": 99.08783721923828, + "b": 17.2548828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 47.008304595947266, + "t": 776.2696914672852, + "r": 104.7603530883789, + "b": 758.913818359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 43.707786560058594, + "t": 53.05535888671875, + "r": 99.06978607177734, + "b": 17.37445068359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 47.35185241699219, + "t": 775.9591522216797, + "r": 104.07383728027344, + "b": 759.1455383300781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 43.718467712402344, + "t": 53.13372802734375, + "r": 99.17106628417969, + "b": 17.50701904296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 542.27197265625, + "t": 259.7894287109375, + "r": 574.0704956054688, + "b": 221.617919921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 43.63474655151367, + "t": 53.11236572265625, + "r": 99.09383392333984, + "b": 17.3360595703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 197.84866333007812, + "t": 729.5112686157227, + "r": 449.76068115234375, + "b": 635.7095031738281, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 43.6900520324707, + "t": 53.19793701171875, + "r": 99.08284759521484, + "b": 17.35870361328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 43.74736404418945, + "t": 53.17083740234375, + "r": 99.2158432006836, + "b": 17.5997314453125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 171.64683532714844, + "t": 553.2512817382812, + "r": 476.143310546875, + "b": 373.05401611328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 43.68498992919922, + "t": 53.12066650390625, + "r": 99.07637786865234, + "b": 17.40753173828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 543.0728149414062, + "t": 458.28045654296875, + "r": 575.6439208984375, + "b": 416.9912414550781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 43.49864959716797, + "t": 53.07568359375, + "r": 99.51233673095703, + "b": 16.77655029296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 43.72919845581055, + "t": 53.18017578125, + "r": 99.28366088867188, + "b": 17.0953369140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 43.71382522583008, + "t": 53.14093017578125, + "r": 99.38362884521484, + "b": 17.3262939453125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 43.683597564697266, + "t": 53.1888427734375, + "r": 99.13557434082031, + "b": 16.9169921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 346.5959777832031, + "t": 76.732177734375, + "r": 510.5633850097656, + "b": 41.01318359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 1, + "bbox": { + "l": 443.3665466308594, + "t": 396.3082275390625, + "r": 544.1763305664062, + "b": 194.62908935546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 12, + "bbox": { + "l": 164.72103881835938, + "t": 601.3435821533203, + "r": 467.8115234375, + "b": 535.7142333984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + } + ], + "tables": [ + { + "page": 12, + "n_rows": 2, + "n_cols": 5, + "grid": [ + [ + "", + "N-H", + "N-N", + "N=N", + "H-O" + ], + [ + "Meanbond enthalpy / kJ mol-1", + "388", + "163", + "944", + "463" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 0, + "for_part": "03.5" + } + ], + "stats": { + "n_questions": 8, + "n_parts": 36, + "marks_parts_known": 36, + "marks_sum": 86, + "marks_check": null, + "gemma_answer_regions": 0, + "gemma_marks_filled": 0, + "gemma_marks_gapfilled": 0, + "n_data_tables": 1, + "n_furniture_tables": 1, + "table_sources": { + "docling-standard": 1 + }, + "table_pages": [ + 12 + ], + "region_type_counts": { + "context_caption": 3, + "context_data": 2, + "context_figure": 44, + "furniture": 65, + "heading": 11, + "instruction": 21, + "mcq_option": 4 + } + }, + "coverage": { + "coverage_pct": 57.1, + "recovered": 24, + "total": 42, + "missed": [ + "02.1", + "02.3", + "02.4", + "04.1", + "05.1", + "05.4", + "06.1", + "08.1", + "09.1", + "09.2", + "09.3", + "10.1", + "10.2", + "10.3", + "11.1", + "11.2", + "11.3", + "11.4" + ], + "source": "builtin-physics-gt" + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/template.json b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/template.json new file mode 100644 index 0000000..5294157 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/template.json @@ -0,0 +1,3928 @@ +{ + "meta": { + "schema": "exam-template/first-pass/v1", + "board": "aqa", + "paper_code": "7405/1", + "source_pdf": "samples/b1/aqa-chemistry-7405-1-2022jun.pdf", + "n_pages": 32, + "coord_origin": "BOTTOMLEFT", + "units": "pdf_points", + "generated_at": "2026-06-08T01:48:59", + "ui_principle": "directional limits = draggable axis-locked lines; object footprints = boxes", + "confirmed": false, + "confirmed_by": null, + "confirmed_at": null + }, + "margins": [ + { + "edge": "left", + "axis": "x", + "value": 41.6, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "right", + "axis": "x", + "value": 536.6, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "top", + "axis": "y", + "value": 775.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "bottom", + "axis": "y", + "value": 325.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "bottom", + "axis": "y", + "value": 206.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "bottom", + "axis": "y", + "value": 101.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "bottom", + "axis": "y", + "value": 181.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "bottom", + "axis": "y", + "value": 110.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "top", + "axis": "y", + "value": 771.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "bottom", + "axis": "y", + "value": 633.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "bottom", + "axis": "y", + "value": 115.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "bottom", + "axis": "y", + "value": 116.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "bottom", + "axis": "y", + "value": 103.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "bottom", + "axis": "y", + "value": 117.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "bottom", + "axis": "y", + "value": 175.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "bottom", + "axis": "y", + "value": 201.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "bottom", + "axis": "y", + "value": 126.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "top", + "axis": "y", + "value": 771.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "bottom", + "axis": "y", + "value": 488.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "bottom", + "axis": "y", + "value": 568.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "bottom", + "axis": "y", + "value": 179.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "bottom", + "axis": "y", + "value": 95.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "bottom", + "axis": "y", + "value": 221.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "bottom", + "axis": "y", + "value": 103.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "top", + "axis": "y", + "value": 771.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "bottom", + "axis": "y", + "value": 188.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "bottom", + "axis": "y", + "value": 162.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + }, + { + "edge": "bottom", + "axis": "y", + "value": 326.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + }, + { + "edge": "top", + "axis": "y", + "value": 771.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "bottom", + "axis": "y", + "value": 40.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + } + ], + "pages": { + "1": { + "role": "cover", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 480.7485758463542, + "t": 35.56915283203125, + "r": 545.4403076171875, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 38.00352478027344, + "t": 797.48291015625, + "r": 168.22532653808594, + "b": 750.3669357299805, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 41.57489776611328, + "t": 53.50885009765625, + "r": 232.79144287109375, + "b": 17.6092529296875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "2": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.4048258463542, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 27.93007405598962, + "r": 79.91335042317708, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.2949829101562, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.46540451049805, + "t": 52.9984130859375, + "r": 99.5510482788086, + "b": 16.2794189453125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "3": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 738.8, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.1", + "question": "01", + "y_start": 696.4, + "y_end": 538.5, + "label_box": { + "l": 49.04734802246094, + "t": 696.3524373372396, + "r": 104.43702189127605, + "b": 680.6498209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 696.4, + "r": 536.6, + "b": 538.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.2", + "question": "01", + "y_start": 538.5, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 538.4774373372395, + "r": 103.5913798014323, + "b": 522.3504231770833, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 538.5, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 538.6751708984375, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.799652099609375, + "t": 53.073486328125, + "r": 99.07989501953125, + "b": 17.542236328125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "4": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.3", + "question": "01", + "y_start": 775.7, + "y_end": 297.0, + "label_box": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 101.9000956217448, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 775.7, + "r": 536.6, + "b": 297.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.4", + "question": "01", + "y_start": 297.0, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 296.9966023763021, + "r": 102.32291666666667, + "b": 282.5671590169271, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 297.0, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.603614807128906, + "t": 53.21435546875, + "r": 99.1415786743164, + "b": 17.57452392578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "5": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.5", + "question": "01", + "y_start": 774.9, + "y_end": 360.2, + "label_box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 101.47727457682292, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 774.9, + "r": 536.6, + "b": 360.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.6", + "question": "01", + "y_start": 360.2, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 360.23146565755206, + "r": 101.054443359375, + "b": 346.22642008463544, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 360.2, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 70.36960856119788, + "r": 538.6751708984375, + "b": 57.63775634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.78177261352539, + "t": 53.18817138671875, + "r": 99.22442626953125, + "b": 17.46331787109375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "6": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.2", + "question": "02", + "y_start": 599.2, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 599.1659545898438, + "r": 394.4928792317708, + "b": 583.0389404296875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 599.2, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.69084167480469, + "t": 53.16693115234375, + "r": 99.08799743652344, + "b": 17.5013427734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "7": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 474.8290608723958, + "t": 69.52081298828125, + "r": 538.2523600260416, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.67705535888672, + "t": 53.18963623046875, + "r": 99.12734985351562, + "b": 17.6636962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "8": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.5", + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 776.1387329101562, + "r": 102.74573771158855, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 776.1, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.4048258463542, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.75899251302083, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.8090934753418, + "t": 53.20458984375, + "r": 99.13793182373047, + "b": 17.58782958984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "9": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 802.4512329101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 18.59340413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 69.52081298828125, + "r": 538.6751708984375, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.526153564453125, + "t": 53.07830810546875, + "r": 99.46122741699219, + "b": 16.9515380859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "10": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.1", + "question": "03", + "y_start": 525.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 525.3211873372395, + "r": 105.2826639811198, + "b": 509.1941731770833, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 525.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 78.64488220214844, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.3399658203125, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 538.6751708984375, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.62184143066406, + "t": 53.210205078125, + "r": 99.05526733398438, + "b": 17.57977294921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "11": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.2", + "question": "03", + "y_start": 776.1, + "y_end": 670.0, + "label_box": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 103.5913798014323, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 776.1, + "r": 536.6, + "b": 670.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.3", + "question": "03", + "y_start": 670.0, + "y_end": 589.4, + "label_box": { + "l": 47.77887980143229, + "t": 670.0399373372396, + "r": 103.16855875651042, + "b": 654.3373209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 670.0, + "r": 536.6, + "b": 589.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.4", + "question": "03", + "y_start": 589.4, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 589.4048665364584, + "r": 403.7949625651042, + "b": 573.7022298177083, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 589.4, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 283.7135416666667, + "t": 810.9391352335612, + "r": 294.7069091796875, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.52081298828125, + "r": 537.8295491536459, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73190689086914, + "t": 53.1451416015625, + "r": 99.24485778808594, + "b": 17.90057373046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "12": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.5", + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 501.8896484375, + "b": 746.4310709635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 775.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.11049397786462, + "r": 78.22206115722656, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.672115325927734, + "t": 53.1563720703125, + "r": 99.08405303955078, + "b": 17.3460693359375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 114.2842788696289, + "t": 734.2892837524414, + "r": 534.5986938476562, + "b": 683.3049163818359, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [ + { + "box": null, + "n_rows": 2, + "n_cols": 5, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "13": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 69.52081298828125, + "r": 538.6751708984375, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.50332260131836, + "t": 53.0228271484375, + "r": 99.4515609741211, + "b": 16.822265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "14": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 774.0, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.2", + "question": "04", + "y_start": 434.5, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 434.50063069661456, + "r": 101.9000956217448, + "b": 420.07118733723956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 434.5, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.0167541503906, + "r": 78.64488220214844, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.77970886230469, + "t": 53.17462158203125, + "r": 99.19371795654297, + "b": 17.7877197265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "15": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 776.6, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.3", + "question": "04", + "y_start": 776.6, + "y_end": 480.3, + "label_box": { + "l": 50.31581115722656, + "t": 776.5631256103516, + "r": 109.0880635579427, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 776.6, + "r": 536.6, + "b": 480.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.4", + "question": "04", + "y_start": 480.3, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 480.33530680338544, + "r": 103.16855875651042, + "b": 464.20827229817706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 480.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 538.6751708984375, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.741512298583984, + "t": 53.1185302734375, + "r": 99.22008514404297, + "b": 17.48614501953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "16": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.5", + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 775.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.75214385986328, + "t": 53.18939208984375, + "r": 99.23369598388672, + "b": 17.509033203125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 542.4967651367188, + "t": 242.42291259765625, + "r": 574.9304809570312, + "b": 202.35992431640625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "17": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.2", + "question": "05", + "y_start": 511.7, + "y_end": 403.5, + "label_box": { + "l": 48.201700846354164, + "t": 511.74053955078125, + "r": 456.2248942057292, + "b": 495.18914794921875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 511.7, + "r": 536.6, + "b": 403.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.3", + "question": "05", + "y_start": 403.5, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 403.51979573567706, + "r": 530.6415608723959, + "b": 375.50970458984375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 403.5, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 283.29071044921875, + "t": 811.7879257202148, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.06770833333333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 539.0979817708334, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.75908660888672, + "t": 53.14544677734375, + "r": 99.28108215332031, + "b": 17.828369140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "18": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 663.2, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.5", + "question": "05", + "y_start": 663.2, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 663.2496134440104, + "r": 102.32291666666667, + "b": 648.3957926432291, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 663.2, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 50.73863728841146, + "t": 774.0167541503906, + "r": 90.06107584635417, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.85944747924805, + "t": 53.1580810546875, + "r": 99.19698333740234, + "b": 17.61865234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "19": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 69.52081298828125, + "r": 538.6751708984375, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.55806350708008, + "t": 53.1070556640625, + "r": 99.49885559082031, + "b": 17.413818359375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "20": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.7", + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 103.5913798014323, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 775.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 798.2072804768881, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 57.9266103108724, + "t": 27.08127848307288, + "r": 81.1818135579427, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.70090866088867, + "t": 53.146484375, + "r": 99.1500244140625, + "b": 17.34271240234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "21": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 474.40625, + "t": 69.09641520182288, + "r": 538.6751708984375, + "b": 55.94016520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 25.80808512369788, + "r": 79.91335042317708, + "b": 13.500630696614621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 762.1336924235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74695587158203, + "t": 53.06658935546875, + "r": 99.47607421875, + "b": 17.3372802734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "22": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.2", + "question": "06", + "y_start": 586.0, + "y_end": 310.6, + "label_box": { + "l": 49.04734802246094, + "t": 586.0097045898438, + "r": 521.7622884114584, + "b": 569.0338948567708, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 586.0, + "r": 536.6, + "b": 310.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.3", + "question": "06", + "y_start": 310.6, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 310.5772501627604, + "r": 101.9000956217448, + "b": 296.57220458984375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 310.6, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.06770833333333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.68296813964844, + "t": 53.0728759765625, + "r": 99.08783721923828, + "b": 17.2548828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "23": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.4, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.4", + "question": "06", + "y_start": 774.4, + "y_end": 449.8, + "label_box": { + "l": 49.47016906738281, + "t": 774.441151936849, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 774.4, + "r": 536.6, + "b": 449.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.5", + "question": "06", + "y_start": 449.8, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 449.77886962890625, + "r": 101.9000956217448, + "b": 435.77382405598956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 449.8, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 538.6751708984375, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.707786560058594, + "t": 53.05535888671875, + "r": 99.06978607177734, + "b": 17.37445068359375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "24": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.4, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.6", + "question": "06", + "y_start": 774.4, + "y_end": 324.6, + "label_box": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 101.47727457682292, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 774.4, + "r": 536.6, + "b": 324.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.7", + "question": "06", + "y_start": 324.6, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 324.5822957356771, + "r": 101.054443359375, + "b": 309.72845458984375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 324.6, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.718467712402344, + "t": 53.13372802734375, + "r": 99.17106628417969, + "b": 17.50701904296875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 542.27197265625, + "t": 259.7894287109375, + "r": 574.0704956054688, + "b": 221.617919921875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "25": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.1", + "question": "07", + "y_start": 721.4, + "y_end": 535.9, + "label_box": { + "l": 49.04734802246094, + "t": 721.3917541503906, + "r": 103.5913798014323, + "b": 705.2647399902344, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 721.4, + "r": 536.6, + "b": 535.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.2", + "question": "07", + "y_start": 535.9, + "y_end": 264.3, + "label_box": { + "l": 48.201700846354164, + "t": 535.9310709635417, + "r": 464.2585042317708, + "b": 519.8040568033855, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 535.9, + "r": 536.6, + "b": 264.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.3", + "question": "07", + "y_start": 264.3, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 264.31817626953125, + "r": 102.32291666666667, + "b": 248.61553955078125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 264.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 80.33617146809895, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.94521077473962, + "r": 539.0979817708334, + "b": 57.21335856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 63.42329406738281, + "t": 25.38368733723962, + "r": 79.06770833333333, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.63474655151367, + "t": 53.11236572265625, + "r": 99.09383392333984, + "b": 17.3360595703125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "26": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 527.4, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.5", + "question": "07", + "y_start": 527.4, + "y_end": 421.3, + "label_box": { + "l": 48.201700846354164, + "t": 527.4431762695312, + "r": 460.8759358723958, + "b": 511.31614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 527.4, + "r": 536.6, + "b": 421.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.6", + "question": "07", + "y_start": 421.3, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 421.34438069661456, + "r": 410.1372884114583, + "b": 405.64174397786456, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 421.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.6900520324707, + "t": 53.19793701171875, + "r": 99.08284759521484, + "b": 17.35870361328125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 197.84866333007812, + "t": 729.5112686157227, + "r": 449.76068115234375, + "b": 635.7095031738281, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "27": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.2", + "question": "08", + "y_start": 350.0, + "y_end": 274.9, + "label_box": { + "l": 48.62452697753906, + "t": 350.04600016276044, + "r": 109.0880635579427, + "b": 333.49456787109375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 350.0, + "r": 536.6, + "b": 274.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "08.3", + "question": "08", + "y_start": 274.9, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 274.92803955078125, + "r": 514.5743408203125, + "b": 257.9522501627604, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 274.9, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.06770833333333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 61.73200480143229, + "t": 23.68609619140625, + "r": 65.11458333333333, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.79400634765625, + "r": 539.0979817708334, + "b": 57.21335856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74736404418945, + "t": 53.17083740234375, + "r": 99.2158432006836, + "b": 17.5997314453125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 171.64683532714844, + "t": 553.2512817382812, + "r": 476.143310546875, + "b": 373.05401611328125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "28": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 681.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.4", + "question": "08", + "y_start": 681.1, + "y_end": 510.0, + "label_box": { + "l": 50.31581115722656, + "t": 681.07421875, + "r": 101.47727457682292, + "b": 666.2203776041666, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 681.1, + "r": 536.6, + "b": 510.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "08.5", + "question": "08", + "y_start": 510.0, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 510.04296875, + "r": 101.9000956217448, + "b": 495.61354573567706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.6, + "t": 510.0, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.68498992919922, + "t": 53.12066650390625, + "r": 99.07637786865234, + "b": 17.40753173828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.0728149414062, + "t": 458.28045654296875, + "r": 575.6439208984375, + "b": 416.9912414550781, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "29": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 25.38368733723962, + "r": 79.91335042317708, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.2949829101562, + "r": 585.1855875651041, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.49864959716797, + "t": 53.07568359375, + "r": 99.51233673095703, + "b": 16.77655029296875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "30": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.72919845581055, + "t": 53.18017578125, + "r": 99.28366088867188, + "b": 17.0953369140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "31": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.95928955078125, + "r": 66.38304646809895, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.71382522583008, + "t": 53.14093017578125, + "r": 99.38362884521484, + "b": 17.3262939453125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "32": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.86789957682294, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.2949829101562, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.463541666666664, + "t": 25.38368733723962, + "r": 68.07433573404948, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.26893615722656, + "t": 25.80808512369788, + "r": 79.91335042317708, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.683597564697266, + "t": 53.1888427734375, + "r": 99.13557434082031, + "b": 16.9169921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 346.5959777832031, + "t": 76.732177734375, + "r": 510.5633850097656, + "b": 41.01318359375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/validate.json b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/validate.json new file mode 100644 index 0000000..8ced584 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-7405-1-2022jun/validate.json @@ -0,0 +1,132 @@ +{ + "paper_code": "7405/1", + "board": "aqa", + "summary": { + "worst_severity": "warn", + "needs_priority_review": true, + "n_flags": 3, + "marks_sum": 86, + "official_max": null, + "parts_total": 36, + "parts_low_conf": 0, + "questions_expected": 8, + "questions_recovered": 8 + }, + "flags": [ + "[info] C1_marks_sum: no official max available to check the sum against", + "[warn] C4_subpart_seq: sub-part gaps: Q02 missing ['3', '4'], Q05 missing ['4', '6'], Q07 missing ['4']", + "[warn] C5_coverage: 57.1% vs GT (24/42); missed ['02.1', '02.3', '02.4', '04.1', '05.1', '05.4', '06.1', '08.1', '09.1', '09.2']" + ], + "checks": [ + { + "id": "C1_marks_sum", + "severity": "info", + "status": "unknown", + "detail": "no official max available to check the sum against" + }, + { + "id": "C2_part_marks", + "severity": "info", + "status": "ok", + "detail": "every part carries a plausible mark" + }, + { + "id": "C3_question_seq", + "severity": "info", + "status": "ok", + "detail": "questions 1-8 contiguous" + }, + { + "id": "C4_subpart_seq", + "severity": "warn", + "status": "gap", + "detail": "sub-part gaps: Q02 missing ['3', '4'], Q05 missing ['4', '6'], Q07 missing ['4']" + }, + { + "id": "C5_coverage", + "severity": "warn", + "status": "missed", + "detail": "57.1% vs GT (24/42); missed ['02.1', '02.3', '02.4', '04.1', '05.1', '05.4', '06.1', '08.1', '09.1', '09.2']" + } + ], + "part_confidence": { + "01.1": "high", + "01.2": "high", + "01.3": "high", + "01.4": "high", + "01.5": "high", + "01.6": "high", + "02.2": "high", + "02.5": "high", + "03.1": "high", + "03.2": "high", + "03.3": "high", + "03.4": "high", + "03.5": "high", + "04.2": "high", + "04.3": "high", + "04.4": "high", + "04.5": "high", + "05.2": "high", + "05.3": "high", + "05.5": "high", + "05.7": "high", + "06.2": "high", + "06.3": "high", + "06.4": "high", + "06.5": "high", + "06.6": "high", + "06.7": "high", + "07.1": "high", + "07.2": "high", + "07.3": "high", + "07.5": "high", + "07.6": "high", + "08.2": "high", + "08.3": "high", + "08.4": "high", + "08.5": "high" + }, + "question_sequence": [ + { + "n": 1, + "label": "01", + "recovered": true + }, + { + "n": 2, + "label": "02", + "recovered": true + }, + { + "n": 3, + "label": "03", + "recovered": true + }, + { + "n": 4, + "label": "04", + "recovered": true + }, + { + "n": 5, + "label": "05", + "recovered": true + }, + { + "n": 6, + "label": "06", + "recovered": true + }, + { + "n": 7, + "label": "07", + "recovered": true + }, + { + "n": 8, + "label": "08", + "recovered": true + } + ] +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/bands.json b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/bands.json new file mode 100644 index 0000000..4b31622 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/bands.json @@ -0,0 +1,535 @@ +{ + "board": "aqa", + "paper_code": "8462/1", + "coord_origin": "BOTTOMLEFT", + "pages": { + "2": { + "main": [ + { + "question": "01", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "01.1", + "question": "01", + "y_start": 562.2, + "y_end": 394.6 + }, + { + "label": "01.2", + "question": "01", + "y_start": 394.6, + "y_end": 253.7 + }, + { + "label": "01.3", + "question": "01", + "y_start": 253.7, + "y_end": 0.0 + } + ] + }, + "3": { + "main": [ + { + "question": "01", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.4", + "question": "01", + "y_start": 775.7, + "y_end": 490.1 + }, + { + "label": "01.5", + "question": "01", + "y_start": 490.1, + "y_end": 202.4 + }, + { + "label": "01.6", + "question": "01", + "y_start": 202.4, + "y_end": 0.0 + } + ] + }, + "4": { + "main": [ + { + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.7", + "question": "01", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "5": { + "main": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "02.1", + "question": "02", + "y_start": 626.3, + "y_end": 0.0 + } + ] + }, + "7": { + "main": [ + { + "question": "02", + "y_start": 358.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.3", + "question": "02", + "y_start": 358.1, + "y_end": 0.0 + } + ] + }, + "9": { + "main": [ + { + "question": "02", + "y_start": 436.6, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.5", + "question": "02", + "y_start": 436.6, + "y_end": 304.6 + }, + { + "label": "02.6", + "question": "02", + "y_start": 304.6, + "y_end": 0.0 + } + ] + }, + "10": { + "main": [ + { + "question": "03", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "03.1", + "question": "03", + "y_start": 544.4, + "y_end": 310.6 + }, + { + "label": "03.2", + "question": "03", + "y_start": 310.6, + "y_end": 0.0 + } + ] + }, + "11": { + "main": [ + { + "question": "03", + "y_start": 541.0, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.3", + "question": "03", + "y_start": 541.0, + "y_end": 294.9 + }, + { + "label": "03.4", + "question": "03", + "y_start": 294.9, + "y_end": 0.0 + } + ] + }, + "12": { + "main": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.5", + "question": "03", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "13": { + "main": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "04.2", + "question": "04", + "y_start": 483.7, + "y_end": 351.3 + }, + { + "label": "04.3", + "question": "04", + "y_start": 351.3, + "y_end": 232.9 + }, + { + "label": "04.4", + "question": "04", + "y_start": 232.9, + "y_end": 0.0 + } + ] + }, + "14": { + "main": [ + { + "question": "04", + "y_start": 656.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.5", + "question": "04", + "y_start": 656.9, + "y_end": 542.3 + }, + { + "label": "04.6", + "question": "04", + "y_start": 542.3, + "y_end": 0.0 + } + ] + }, + "15": { + "main": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.7", + "question": "04", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "16": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.1", + "question": "05", + "y_start": 653.5, + "y_end": 483.7 + }, + { + "label": "05.2", + "question": "05", + "y_start": 483.7, + "y_end": 249.0 + }, + { + "label": "05.3", + "question": "05", + "y_start": 249.0, + "y_end": 0.0 + } + ] + }, + "17": { + "main": [ + { + "question": "05", + "y_start": 746.0, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.4", + "question": "05", + "y_start": 746.0, + "y_end": 515.1 + }, + { + "label": "05.5", + "question": "05", + "y_start": 515.1, + "y_end": 0.0 + } + ] + }, + "18": { + "main": [ + { + "question": "06", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.1", + "question": "06", + "y_start": 439.6, + "y_end": 0.0 + } + ] + }, + "19": { + "main": [ + { + "question": "06", + "y_start": 747.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.2", + "question": "06", + "y_start": 747.7, + "y_end": 614.0 + }, + { + "label": "06.3", + "question": "06", + "y_start": 614.0, + "y_end": 0.0 + } + ] + }, + "20": { + "main": [ + { + "question": "06", + "y_start": 697.2, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.4", + "question": "06", + "y_start": 697.2, + "y_end": 552.5 + }, + { + "label": "06.5", + "question": "06", + "y_start": 552.5, + "y_end": 446.8 + }, + { + "label": "06.6", + "question": "06", + "y_start": 446.8, + "y_end": 0.0 + } + ] + }, + "21": { + "main": [ + { + "question": "07", + "y_start": 731.2, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "07.1", + "question": "07", + "y_start": 731.2, + "y_end": 422.2 + }, + { + "label": "07.2", + "question": "07", + "y_start": 422.2, + "y_end": 0.0 + } + ] + }, + "22": { + "main": [ + { + "question": "07", + "y_start": 670.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.3", + "question": "07", + "y_start": 670.9, + "y_end": 525.3 + }, + { + "label": "07.4", + "question": "07", + "y_start": 525.3, + "y_end": 0.0 + } + ] + }, + "23": { + "main": [ + { + "question": "07", + "y_start": 746.4, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.5", + "question": "07", + "y_start": 746.4, + "y_end": 520.2 + }, + { + "label": "07.6", + "question": "07", + "y_start": 520.2, + "y_end": 0.0 + } + ] + }, + "24": { + "main": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "08.2", + "question": "08", + "y_start": 447.7, + "y_end": 0.0 + } + ] + }, + "25": { + "main": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "08.3", + "question": "08", + "y_start": 774.9, + "y_end": 0.0 + } + ] + }, + "27": { + "main": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "08.5", + "question": "08", + "y_start": 774.9, + "y_end": 0.0 + } + ] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/furniture.json b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/furniture.json new file mode 100644 index 0000000..ef6b468 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/furniture.json @@ -0,0 +1 @@ +{"n_pages": 32, "freq_threshold": 0.4, "furniture_cells": {"3,1": 31, "3,32": 18, "12,34": 28, "21,1": 32, "23,32": 25}, "content_margins": {"content_x_band": {"x_left": 46.3, "x_right": 543.3}, "per_page": {"1": {"top": 797.5, "bottom": 12.2, "left": 35.9, "right": 546.3}, "2": {"top": 772.3, "bottom": 136.2, "left": 48.2, "right": 535.7}, "3": {"top": 775.6, "bottom": 56.8, "left": 49.5, "right": 538.7}, "4": {"top": 772.3, "bottom": 477.7, "left": 113.7, "right": 576.5}, "5": {"top": 772.3, "bottom": 57.2, "left": 48.6, "right": 538.3}, "6": {"top": 772.7, "bottom": 367.4, "left": 83.7, "right": 498.7}, "7": {"top": 773.2, "bottom": 56.8, "left": 48.2, "right": 538.3}, "8": {"top": 788.6, "bottom": 76.6, "left": 40.0, "right": 540.6}, "9": {"top": 772.3, "bottom": 58.1, "left": 49.5, "right": 577.1}, "10": {"top": 772.7, "bottom": 280.9, "left": 49.0, "right": 535.7}, "11": {"top": 774.4, "bottom": 58.1, "left": 47.8, "right": 538.3}, "12": {"top": 772.3, "bottom": 489.6, "left": 114.2, "right": 576.9}, "13": {"top": 772.3, "bottom": 57.2, "left": 47.4, "right": 538.7}, "14": {"top": 772.7, "bottom": 512.6, "left": 49.5, "right": 537.4}, "15": {"top": 746.0, "bottom": 58.1, "left": 114.2, "right": 577.0}, "16": {"top": 773.2, "bottom": 151.9, "left": 47.8, "right": 536.6}, "17": {"top": 772.7, "bottom": 58.1, "left": 49.9, "right": 577.2}, "18": {"top": 788.4, "bottom": 75.8, "left": 39.5, "right": 539.8}, "19": {"top": 774.9, "bottom": 58.1, "left": 49.5, "right": 538.3}, "20": {"top": 774.0, "bottom": 241.5, "left": 48.6, "right": 576.6}, "21": {"top": 775.3, "bottom": 57.2, "left": 48.6, "right": 539.1}, "22": {"top": 774.4, "bottom": 164.2, "left": 48.6, "right": 536.1}, "23": {"top": 772.7, "bottom": 58.1, "left": 48.6, "right": 577.1}, "24": {"top": 773.6, "bottom": 194.7, "left": 46.3, "right": 536.1}, "25": {"top": 772.7, "bottom": 56.8, "left": 114.6, "right": 538.7}, "26": {"top": 774.9, "bottom": 243.5, "left": 46.1, "right": 535.7}, "27": {"top": 772.7, "bottom": 550.8, "left": 113.3, "right": 577.2}, "28": {"top": 775.3, "bottom": 420.9, "left": 173.8, "right": 403.8}, "29": {"top": 771.0, "bottom": 745.6, "left": 54.5, "right": 444.0}, "30": {"top": 771.0, "bottom": 745.6, "left": 54.5, "right": 444.0}, "31": {"top": 771.0, "bottom": 745.6, "left": 184.8, "right": 444.0}, "32": {"top": 774.9, "bottom": 33.4, "left": 53.7, "right": 526.5}}}, "ab_test_figures": {"context_figure_before_mask": 61, "context_figure_after_mask": 29, "removed_as_furniture": 32, "removed_breakdown": {"cell 3,1": 30, "cell 3,32": 2}}, "text_furniture_removed": 128, "items": [{"page": 1, "kind": "text", "label": "text", "bbox": {"l": 35.939867655436196, "t": 788.4461924235026, "r": 172.5113525390625, "b": 754.9189758300781, "coord_origin": "BOTTOMLEFT"}, "text": "AQA", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "text": "Please write clearly in block capitals.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Centre number", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatenumber", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Surname", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 54.96685282389323, "t": 628.8736165364584, "r": 120.50426228841145, "b": 614.019775390625, "coord_origin": "BOTTOMLEFT"}, "text": "Forename(s)", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 602.13671875, "r": 156.02130126953125, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Candidate signature", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 165.74620564778647, "t": 587.707275390625, "r": 297.24383544921875, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "text": "I declare this ismyown work.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 186.04166666666666, "b": 496.88669840494794, "coord_origin": "BOTTOMLEFT"}, "text": "GCSE CHEMISTRY", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 39.7452646891276, "t": 481.60850016276044, "r": 122.19554646809895, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Higher Tier", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 116.69886271158855, "t": 481.18410237630206, "r": 191.5383504231771, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Paper 1", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 407.76373291015625, "r": 92.59801228841145, "b": 395.03188069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Materials", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 38.47679901123047, "t": 394.18308512369794, "r": 186.04166666666666, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "text": "For this paper you must have:", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 380.60243733723956, "r": 83.71875, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a ruler", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 367.44618733723956, "r": 153.484375, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a scientific calculator", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 354.71433512369794, "r": 191.9611612955729, "b": 342.40688069661456, "coord_origin": "BOTTOMLEFT"}, "text": "the periodic table (enclosed).", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 329.2506306966146, "r": 108.66524251302083, "b": 317.7919718424479, "coord_origin": "BOTTOMLEFT"}, "text": "Instructions", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 316.5187784830729, "r": 230.86079915364584, "b": 303.3625284830729, "coord_origin": "BOTTOMLEFT"}, "text": "Use black ink or black ball-point pen.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 303.3625284830729, "r": 241.43133544921875, "b": 289.7818806966146, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Pencil should only be used for drawing.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 277.47442626953125, "r": 373.351806640625, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questions in the spaces provi", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 291.4794718424479, "r": 241.0085245768229, "b": 276.20123291015625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Fill in the boxes at the top of this pa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 250.73752848307288, "r": 424.9360758463542, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "text": "If you need extra space for your answer(", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 224.84942626953125, "r": 402.5264892578125, "b": 200.23447672526038, "coord_origin": "BOTTOMLEFT"}, "text": "Do all rough work in this book. Cross th", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 198.96132405598962, "r": 356.4389241536458, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7In all calculations, show clearly how y", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.47679901123047, "t": 173.92197672526038, "r": 106.12831624348958, "b": 160.34136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Information", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 159.49257405598962, "r": 251.57906087239584, "b": 147.18511962890625, "coord_origin": "BOTTOMLEFT"}, "text": "The maximum mark for this paper is 100.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 145.91192626953125, "r": 282.445068359375, "b": 133.60447184244788, "coord_origin": "BOTTOMLEFT"}, "text": "The marks for questions are shown in bra", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 120.02382405598962, "r": 391.5331217447917, "b": 94.56011962890625, "coord_origin": "BOTTOMLEFT"}, "text": "You are reminded of the need for good En", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 225.36409505208334, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "JUN2284621H01", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 498.0842692057292, "t": 548.6629231770833, "r": 546.2859700520834, "b": 493.06715901692706, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 331.49241129557294, "t": 437.47137451171875, "r": 544.5946858723959, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Time allowed: 1 hour 45 minutes", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 367.8551025390625, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/E10", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 33.87156168619788, "r": 545.8631591796875, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "8462/1H", "furniture": true}, {"page": 2, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 293.4384358723958, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "01", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 339.5260416666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about metals and non-me", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 743.4603068033854, "r": 378.4256591796875, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1 shows an outline of part of the", "furniture": false}, {"page": 2, "kind": "text", "label": "section_header", "bbox": {"l": 267.64630126953125, "t": 716.7234090169271, "r": 313.3110758463542, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 411.40576171875, "t": 645.8494262695312, "r": 418.59375, "b": 638.2103068033854, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 144.60511271158853, "t": 637.3615112304688, "r": 153.484375, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 250.7334187825521, "t": 614.019775390625, "r": 260.8811442057292, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 2, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 562.2435709635417, "r": 376.3115234375, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "text": "01.1 Element Q is a dull solid with a me", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 533.809102376302, "r": 306.12310791015625, "b": 519.379659016927, "coord_origin": "BOTTOMLEFT"}, "text": "Element Q does not conduct electricity.", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 506.64780680338544, "r": 535.7154134114584, "b": 478.21331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Which section of the periodic table in F", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 477.78892008463544, "r": 200.8404337565104, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 2, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 153.90719604492188, "t": 438.74456787109375, "r": 161.09516398111978, "b": 429.83229573567706, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 2, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 235.0890096028646, "t": 438.32017008463544, "r": 242.2769775390625, "b": 429.83229573567706, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 2, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 316.6936442057292, "t": 437.47137451171875, "r": 322.19032796223956, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 2, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 397.45263671875, "t": 437.47137451171875, "r": 402.5264892578125, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 394.60748291015625, "r": 103.16855875651042, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "01.2", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 392.48549397786456, "r": 332.3380533854167, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Element R forms ions of formula R2+ and ", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 365.32419840494794, "r": 535.2926025390625, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Which section of the periodic table in F", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 336.88975016276044, "r": 200.8404337565104, "b": 321.1871134440104, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 2, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 153.90719604492188, "t": 296.9966023763021, "r": 161.09516398111978, "b": 288.9330851236979, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 2, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 235.5118408203125, "t": 296.57220458984375, "r": 241.43133544921875, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 2, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 316.6936442057292, "t": 296.57220458984375, "r": 322.6131591796875, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 253.70827229817712, "r": 103.16855875651042, "b": 237.58127848307288, "coord_origin": "BOTTOMLEFT"}, "text": "01.3", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 251.58632405598962, "r": 528.5274658203125, "b": 224.84942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Give two differences between the physica", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 224.00063069661462, "r": 535.2926025390625, "b": 210.84438069661462, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 145.06313069661462, "r": 121.77272542317708, "b": 136.15085856119788, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.9573567708334, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 2, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 3, "kind": "text", "label": "page_header", "bbox": {"l": 286.25046793619794, "t": 809.6659495035807, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "01.4", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 474.40625, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Figure 2 to show the electronic", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 224.09564208984375, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Usetheperiodictable.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 731.5772399902344, "r": 535.7154134114584, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 703.9915568033854, "r": 314.15671793619794, "b": 689.1377258300781, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 490.09637451171875, "r": 101.9000956217448, "b": 475.24257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "01.5", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 487.12563069661456, "r": 219.4446004231771, "b": 475.66697184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Aluminiumisametal.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 461.66192626953125, "r": 310.77414957682294, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how metals conduct electricity.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 434.50063069661456, "r": 254.9616495768229, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Answerintermsofelectrons.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 422.19317626953125, "r": 535.2926025390625, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 202.35646565755212, "r": 101.9000956217448, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "text": "01.6", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 199.81011962890625, "r": 535.7154134114584, "b": 173.92197672526038, "coord_origin": "BOTTOMLEFT"}, "text": "Name the type of bonding in compounds fo", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 3, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 776.1387329101562, "r": 104.01420084635417, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "01.7", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.3191782633463, "r": 486.6680908203125, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Magnesium oxide is a compound formed fro", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 494.7017008463542, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "Describe what happens when a magnesium a", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 707.8111063639323, "r": 334.0293375651042, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "You should refer to electrons in your an", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 693.8060709635416, "r": 535.7154134114584, "b": 680.6498209635416, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 493.06715901692706, "r": 569.5411783854166, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 493.06715901692706, "r": 569.5411783854166, "b": 480.75970458984375, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": false}, {"page": 4, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 5, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 474.8290608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Sodium carbonate reacts with hydrochlori", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 743.8847045898438, "r": 270.1832275390625, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "text": "The equation for the reaction is:", "furniture": false}, {"page": 5, "kind": "text", "label": "formula", "bbox": {"l": 177.16239420572916, "t": 718.8453877766927, "r": 471.023681640625, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Na2CO3(s) + 2HCl(aq)\u2192 2NaCl(aq) + CO2(g)", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 689.9865112304688, "r": 520.4938151041666, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "text": "A student investigated the effect of cha", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 626.3272298177084, "r": 103.5913798014323, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "text": "02.1", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 623.7808634440104, "r": 512.8830159505209, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "text": "Plan a method to investigate the effect ", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 596.6195882161459, "r": 535.2926025390625, "b": 583.4633382161458, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 79.91335042317708, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 5, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 802.4512329101562, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.9573567708334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 6, "kind": "text", "label": "caption", "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 445.6543375651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3 shows a line of best fit drawn ", "furniture": false}, {"page": 6, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 743.0359090169271, "r": 314.15671793619794, "b": 728.6064758300781, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 158.9810587565104, "t": 688.7133280436198, "r": 183.50472005208334, "b": 676.4058736165365, "coord_origin": "BOTTOMLEFT"}, "text": "30.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 158.9810587565104, "t": 632.2687784830729, "r": 183.92755126953125, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "text": "28.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 84.56439208984375, "t": 587.2828776041666, "r": 123.88683064778645, "b": 572.8534545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Highest", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 84.14157104492188, "t": 574.1266276041667, "r": 145.45075480143228, "b": 561.394775390625, "coord_origin": "BOTTOMLEFT"}, "text": "temperature", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 159.40387980143228, "t": 574.9754231770833, "r": 183.0819091796875, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "text": "26.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 83.71875, "t": 561.8191731770833, "r": 140.79971313476562, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "text": "reached by", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 84.56439208984375, "t": 549.51171875, "r": 143.33663940429688, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "text": "thereaction", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 84.14157104492188, "t": 538.901835123698, "r": 149.25615437825522, "b": 526.1699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "mixture in \u00b0C", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 158.9810587565104, "t": 518.5308634440105, "r": 183.50472005208334, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "text": "24.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 158.9810587565104, "t": 461.66192626953125, "r": 183.92755126953125, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "22.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 158.9810587565104, "t": 405.21734619140625, "r": 186.8873087565104, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "20.0+", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 175.8939412434896, "t": 395.88067626953125, "r": 195.34375, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "text": "0.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 234.24336751302084, "t": 395.88067626953125, "r": 251.57906087239584, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "text": "1.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 290.4786783854167, "t": 397.15386962890625, "r": 308.23720296223956, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "text": "2.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 346.2911783854167, "t": 396.30507405598956, "r": 365.3181559244792, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "3.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 403.7949625651042, "t": 395.88067626953125, "r": 421.5535074869792, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "text": "4.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 460.0302734375, "t": 396.30507405598956, "r": 478.6344401041667, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "text": "5.0", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 253.69317626953125, "t": 381.02683512369794, "r": 429.5871175130208, "b": 367.44618733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Massofsodiumcarbonate ingrams", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 6, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 102.32291666666667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "02].2", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 386.4592692057292, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Determine the gradient of the line of be", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 202.10888671875, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Use the equation:", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 276.1027425130208, "t": 732.426035563151, "r": 429.164306640625, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "text": "Change inhighest temperature", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 220.29024251302084, "t": 724.3625183105469, "r": 273.98862711588544, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Gradient =", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 312.0426025390625, "t": 716.7234090169271, "r": 393.2244059244792, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Change in mass", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 691.2597045898438, "r": 179.2765096028646, "b": 678.527842203776, "coord_origin": "BOTTOMLEFT"}, "text": "Give the unit.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 678.1034545898438, "r": 536.1382242838541, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 434.92502848307294, "r": 167.86032104492188, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Gradient =", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 407.6003824869792, "t": 434.92502848307294, "r": 430.4327392578125, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "text": "Unit", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 358.10947672526044, "r": 102.32291666666667, "b": 341.98248291015625, "coord_origin": "BOTTOMLEFT"}, "text": "02.3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 355.56313069661456, "r": 526.8361409505209, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "text": "The initial temperature of the reaction ", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 315.2455851236979, "r": 388.1505533854167, "b": 304.2113240559896, "coord_origin": "BOTTOMLEFT"}, "text": "Determinetheinitialtemperatureofthereact", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 288.9330851236979, "r": 272.29734293619794, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "text": "ShowyourworkingonFigure3.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 277.0500284830729, "r": 535.7154134114584, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 196.18939208984375, "t": 236.30808512369788, "r": 535.7154134114584, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "text": "Initialtemperatureofthereactionmixture\uff1a ", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.2523600260416, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 7, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 90.48389689127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "02.", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 87.9469706217448, "t": 771.0459899902344, "r": 98.51751708984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 506.9635416666667, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "Another student repeated the investigati", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 733.69921875, "r": 521.3394775390625, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Which sketch graph shows the results obt", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 707.8111063639323, "r": 534.4469401041666, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 693.3816731770834, "r": 200.8404337565104, "b": 678.1034545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 153.484375, "t": 614.019775390625, "r": 219.4446004231771, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "text": "Highest temperature reached by the react", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 119.65861002604167, "t": 583.4633382161458, "r": 128.53787231445312, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 226.632568359375, "t": 507.9209798177083, "r": 401.6808675130208, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Massofsodiumcarbonateingrams", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 153.90719604492188, "t": 411.58327229817706, "r": 219.4446004231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Highest temperature reached by the react", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 119.65861002604167, "t": 381.45123291015625, "r": 128.960693359375, "b": 371.69012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 226.632568359375, "t": 305.90887451171875, "r": 401.6808675130208, "b": 293.6014200846354, "coord_origin": "BOTTOMLEFT"}, "text": "Massofsodiumcarbonateingrams", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 153.484375, "t": 222.72743733723962, "r": 219.8674112955729, "b": 162.46331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Highest temperature reached by thereacti", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 226.632568359375, "t": 117.05303955078125, "r": 401.6808675130208, "b": 104.74558512369788, "coord_origin": "BOTTOMLEFT"}, "text": "Mass ofsodiumcarbonate in grams", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 90.48389689127605, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "02.", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 87.9469706217448, "t": 771.0459899902344, "r": 98.51751708984375, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.5923614501953, "r": 506.9635416666667, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "Another student repeated the investigati", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 733.69921875, "r": 521.3394775390625, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Which sketch graph shows the results obt", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 707.8111063639323, "r": 534.4469401041666, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 693.3816731770834, "r": 200.8404337565104, "b": 678.1034545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 153.484375, "t": 614.019775390625, "r": 219.4446004231771, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "text": "Highest temperature reached by the react", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 119.65861002604167, "t": 583.4633382161458, "r": 128.53787231445312, "b": 573.7022298177083, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 226.632568359375, "t": 507.9209798177083, "r": 401.6808675130208, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Massofsodiumcarbonateingrams", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 153.90719604492188, "t": 411.58327229817706, "r": 219.4446004231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Highest temperature reached by the react", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 119.65861002604167, "t": 381.45123291015625, "r": 128.960693359375, "b": 371.69012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 226.632568359375, "t": 305.90887451171875, "r": 401.6808675130208, "b": 293.6014200846354, "coord_origin": "BOTTOMLEFT"}, "text": "Massofsodiumcarbonateingrams", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 153.484375, "t": 222.72743733723962, "r": 219.8674112955729, "b": 162.46331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Highest temperature reached by thereacti", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 226.632568359375, "t": 117.05303955078125, "r": 401.6808675130208, "b": 104.74558512369788, "coord_origin": "BOTTOMLEFT"}, "text": "Mass ofsodiumcarbonate in grams", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 8, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 150.10179646809897, "t": 641.1810709635416, "r": 159.40387980143228, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "text": "X", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 175.8939412434896, "t": 615.7173665364584, "r": 227.90104166666666, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Reactants", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 360.6671142578125, "t": 553.331278483073, "r": 406.7547200520833, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "text": "Products", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 9, "kind": "text", "label": "caption", "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 478.6344401041667, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4 shows a reaction profile for th", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 268.491943359375, "t": 729.4552612304688, "r": 313.73388671875, "b": 716.2990112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 150.10179646809897, "t": 641.1810709635416, "r": 159.40387980143228, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "text": "X", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 175.8939412434896, "t": 615.7173665364584, "r": 227.90104166666666, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Reactants", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 360.6671142578125, "t": 553.331278483073, "r": 406.7547200520833, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "text": "Products", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 249.88777669270834, "t": 502.8282470703125, "r": 349.6737467447917, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Progress of reaction", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 436.62261962890625, "r": 101.47727457682292, "b": 421.76877848307294, "coord_origin": "BOTTOMLEFT"}, "text": "02.5", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 434.50063069661456, "r": 347.1368408203125, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "What do labelsX and Y represent on Figur", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 420.91998291015625, "r": 535.7154134114584, "b": 407.76373291015625, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 395.45627848307294, "r": 124.30965169270833, "b": 383.14882405598956, "coord_origin": "BOTTOMLEFT"}, "text": "x", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 304.6357218424479, "r": 101.9000956217448, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "02.6", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 302.51373291015625, "r": 442.694580078125, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "text": "How does the reaction profile show that ", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 277.47442626953125, "r": 183.92755126953125, "b": 263.4693806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 4.", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 263.8937784830729, "r": 536.1382242838541, "b": 249.46433512369788, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 218.05910237630212, "r": 569.5411783854166, "b": 205.75164794921875, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 218.05910237630212, "r": 569.5411783854166, "b": 205.75164794921875, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 9, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 10, "kind": "text", "label": "page_header", "bbox": {"l": 282.86789957682294, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 317.53928629557294, "t": 681.9230041503906, "r": 341.2173258463542, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 317.53928629557294, "t": 666.2203776041666, "r": 396.6070149739583, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "text": "O Carbon atom", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 78.64488220214844, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 346.2911783854167, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about different forms o", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 743.4603068033854, "r": 337.41192626953125, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5 represents the structure of dia", "furniture": false}, {"page": 10, "kind": "text", "label": "section_header", "bbox": {"l": 267.64630126953125, "t": 716.7234090169271, "r": 313.73388671875, "b": 702.2939758300781, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 317.53928629557294, "t": 681.9230041503906, "r": 341.2173258463542, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 317.53928629557294, "t": 666.2203776041666, "r": 396.6070149739583, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "text": "O Carbon atom", "furniture": false}, {"page": 10, "kind": "text", "label": "list_item", "bbox": {"l": 49.89299011230469, "t": 544.418965657552, "r": 345.8683675130208, "b": 529.1407470703125, "coord_origin": "BOTTOMLEFT"}, "text": "03.1 Describe the structure and bonding ", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 529.1407470703125, "r": 535.7154134114584, "b": 515.9844970703125, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 10, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 310.5772501627604, "r": 364.0497233072917, "b": 294.4502156575521, "coord_origin": "BOTTOMLEFT"}, "text": "03.2 Explain why diamond has a very high", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 294.02581787109375, "r": 535.7154134114584, "b": 280.86956787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 10, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 11, "kind": "text", "label": "page_header", "bbox": {"l": 284.1363525390625, "t": 812.2123209635416, "r": 293.86126708984375, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": true}, {"page": 11, "kind": "text", "label": "section_header", "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 297.24383544921875, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6 represents the molecule C70", "furniture": false}, {"page": 11, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 746.4310709635416, "r": 313.73388671875, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 541.0238037109375, "r": 102.32291666666667, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "03.3", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 538.4774373372395, "r": 322.6131591796875, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "text": "What is the name of this type of molecul", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 525.3211873372395, "r": 535.7154134114584, "b": 510.8917643229167, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 510.8917643229167, "r": 200.8404337565104, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 470.99859619140625, "r": 161.51798502604166, "b": 456.14479573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Fullerene", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 433.65183512369794, "r": 165.74620564778647, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Graphene", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 396.30507405598956, "r": 164.05492146809897, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Nanotube", "furniture": false}, {"page": 11, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.73910522460938, "t": 360.65586344401044, "r": 156.866943359375, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "text": "Polymer", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 294.8746134440104, "r": 102.32291666666667, "b": 280.4451700846354, "coord_origin": "BOTTOMLEFT"}, "text": "03.4", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 293.1770222981771, "r": 503.5809733072917, "b": 279.1719767252604, "coord_origin": "BOTTOMLEFT"}, "text": "Molecules such as Cro can be used in med", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 266.0157267252604, "r": 433.8153483072917, "b": 253.28387451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest one reason why the Cro molecule ", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 491.741943359375, "t": 253.70827229817712, "r": 536.98388671875, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 11, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 12, "kind": "text", "label": "page_header", "bbox": {"l": 282.86789957682294, "t": 813.909901936849, "r": 295.97536214192706, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "03.5", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.3191782633463, "r": 478.6344401041667, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the number of C7o molecules th", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 733.2748209635416, "r": 339.9488525390625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "The Avogadro constant = 6.02 \u00d7 1023 per ", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 720.1185709635416, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 502.8282470703125, "r": 321.76751708984375, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Number of molecules =", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.64488220214844, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 505.79901123046875, "r": 568.6955159505209, "b": 493.91595458984375, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 12, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 13, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.441151936849, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "04", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 772.3191782633463, "r": 363.2040608723958, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about zinc and compound", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 745.582285563151, "r": 483.7083333333333, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "text": "A student produces pure crystals of zinc", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 705.2647399902344, "r": 270.60605875651044, "b": 692.1084899902344, "coord_origin": "BOTTOMLEFT"}, "text": "The equation for the reaction is:", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 213.94791666666666, "t": 679.801025390625, "r": 434.2381591796875, "b": 664.9472045898438, "coord_origin": "BOTTOMLEFT"}, "text": "ZnO(s) + 2HCl(aq)\u2192 ZnCl2(aq) + H2O()", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 47.356058756510414, "t": 642.0298665364584, "r": 506.9635416666667, "b": 622.0832926432291, "coord_origin": "BOTTOMLEFT"}, "text": "4]. The student adds zinc oxide to hyd", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 611.0490112304688, "r": 502.3125, "b": 586.4341023763021, "coord_origin": "BOTTOMLEFT"}, "text": "Giveoneobservationthatthestudentcouldmak", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 491.741943359375, "t": 586.4341023763021, "r": 536.98388671875, "b": 572.004659016927, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 483.73044840494794, "r": 108.24242146809895, "b": 466.75465901692706, "coord_origin": "BOTTOMLEFT"}, "text": "04.2", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 102.74573771158855, "t": 481.60850016276044, "r": 450.3053792317708, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "text": "IWhy is excess zinc oxide used rather th", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 491.741943359375, "t": 468.02785237630206, "r": 537.4066975911459, "b": 453.17401123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "text": "04.3", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 349.19720458984375, "r": 534.8697916666666, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "text": "Name one other compound that the student", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 323.3091023763021, "r": 536.1382242838541, "b": 308.8796590169271, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 232.91290283203125, "r": 108.24242146809895, "b": 218.48350016276038, "coord_origin": "BOTTOMLEFT"}, "text": "04.4", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 105.2826639811198, "t": 231.21535237630212, "r": 513.3058675130209, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how the student should obtain c", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 202.35646565755212, "r": 536.5610758463541, "b": 187.92702229817712, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 13, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 14, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 772.7435709635416, "r": 480.3257649739583, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Zinc chloride is also produced in a disp", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 270.1832275390625, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Theequationfor thereaction is:", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 251.15625, "t": 708.659901936849, "r": 397.45263671875, "b": 695.503651936849, "coord_origin": "BOTTOMLEFT"}, "text": "n+\u00b2Ouz\u2190\u00b2on+uz", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 656.8836873372396, "r": 103.5913798014323, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "text": "04.5", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 654.76171875, "r": 332.3380533854167, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Complete the ionic equation for this rea", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 639.9078776041666, "r": 535.7154134114584, "b": 625.4784545898438, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 164.90056355794272, "t": 613.1709798177084, "r": 205.9142862955729, "b": 596.6195882161459, "coord_origin": "BOTTOMLEFT"}, "text": "Zn +", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 310.77414957682294, "t": 613.1709798177084, "r": 385.1907958984375, "b": 598.7415568033854, "coord_origin": "BOTTOMLEFT"}, "text": "\u2192\u2192 Zn2+ +", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 542.2969970703125, "r": 101.9000956217448, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "text": "04.6", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 539.7506306966145, "r": 390.2646484375, "b": 527.018778483073, "coord_origin": "BOTTOMLEFT"}, "text": "Why is zinc described as being oxidised ", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 491.741943359375, "t": 527.018778483073, "r": 537.4066975911459, "b": 512.589335123698, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 14, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 15, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 104.85984293619792, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "04.7", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 145.06313069661462, "r": 569.9639892578125, "b": 131.05808512369788, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 104.85984293619792, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "04.7", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 746.0066731770834, "r": 525.1448567708334, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Figure 7 to show how zinc, copp", "furniture": false}, {"page": 15, "kind": "text", "label": "section_header", "bbox": {"l": 114.16192626953125, "t": 706.9623209635416, "r": 146.29639689127603, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Label:", "furniture": false}, {"page": 15, "kind": "text", "label": "list_item", "bbox": {"l": 119.65861002604167, "t": 687.0157470703125, "r": 147.56486002604166, "b": 675.1326802571615, "coord_origin": "BOTTOMLEFT"}, "text": "zinc", "furniture": false}, {"page": 15, "kind": "text", "label": "list_item", "bbox": {"l": 124.30965169270833, "t": 666.644775390625, "r": 161.51798502604166, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "text": "copper", "furniture": false}, {"page": 15, "kind": "text", "label": "list_item", "bbox": {"l": 118.81296793619792, "t": 648.3957926432291, "r": 253.27034505208334, "b": 636.9371134440104, "coord_origin": "BOTTOMLEFT"}, "text": "the othersubstanceused.", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 623.3564656575521, "r": 342.9086100260417, "b": 609.3514404296875, "coord_origin": "BOTTOMLEFT"}, "text": "The symbol represents the lamp.", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 485.8224283854167, "t": 610.6246134440104, "r": 537.4066975911459, "b": 596.1951904296875, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "caption", "bbox": {"l": 268.91477457682294, "t": 584.7365112304688, "r": 314.57952880859375, "b": 569.8826904296875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 145.06313069661462, "r": 569.9639892578125, "b": 131.05808512369788, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 207.1827596028646, "t": 136.57525634765625, "r": 370.3920491536458, "b": 122.99460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for the next question", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover", "furniture": false}, {"page": 15, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 16, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 360.2443033854167, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about groups in the per", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 731.152842203776, "r": 459.1846516927083, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "text": "The elements in Group 1 become more reac", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 705.2647399902344, "r": 315.84800211588544, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "text": "Rubidium is below potassium in Group 1.", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 653.488525390625, "r": 101.47727457682292, "b": 639.0591023763021, "coord_origin": "BOTTOMLEFT"}, "text": "05.1", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 652.2153523763021, "r": 334.0293375651042, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Rubidium and potassium are added to wate", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 625.0540568033854, "r": 508.2319742838542, "b": 598.7415568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Predict one observation you would see th", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 599.1659545898438, "r": 534.8697916666666, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 483.73044840494794, "r": 108.66524251302083, "b": 467.17905680338544, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 102.74573771158855, "t": 480.33530680338544, "r": 380.116943359375, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "text": "IExplain why rubidium is more reactive t", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 467.60345458984375, "r": 536.5610758463541, "b": 453.17401123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 249.03993733723962, "r": 106.55113728841145, "b": 233.33730061848962, "coord_origin": "BOTTOMLEFT"}, "text": "05.3", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 246.06915283203125, "r": 414.788330078125, "b": 233.33730061848962, "coord_origin": "BOTTOMLEFT"}, "text": "Complete the equation for the reaction o", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 217.63470458984375, "r": 278.21685791015625, "b": 204.90285237630212, "coord_origin": "BOTTOMLEFT"}, "text": "You should balance the equation.", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 204.47845458984375, "r": 535.7154134114584, "b": 191.32220458984375, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 162.3636271158854, "t": 169.25364176432288, "r": 188.5785929361979, "b": 152.70220947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Rb", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 204.64583333333334, "t": 167.98044840494788, "r": 223.25, "b": 154.82419840494788, "coord_origin": "BOTTOMLEFT"}, "text": "+", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 243.96826171875, "t": 169.25364176432288, "r": 278.21685791015625, "b": 151.85341389973962, "coord_origin": "BOTTOMLEFT"}, "text": "H2O", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 16, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 17, "kind": "text", "label": "page_header", "bbox": {"l": 282.86789957682294, "t": 813.909901936849, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 126.38970947265625, "r": 568.6955159505209, "b": 114.08225504557288, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 271.87451171875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "The noble gases are in Group 0.", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 746.0066731770834, "r": 83.29592386881511, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 84.14157104492188, "t": 744.7334899902344, "r": 100.63162231445312, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 744.7334899902344, "r": 371.6604817708333, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Which is a correct statement about the n", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 732.0016377766927, "r": 535.7154134114584, "b": 717.1478068033854, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 716.7234090169271, "r": 201.26324462890625, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 17, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 676.8302612304688, "r": 454.5336100260417, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "text": "The noble gases all have atoms with eigh", "furniture": false}, {"page": 17, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 640.332275390625, "r": 468.0639241536458, "b": 625.9028523763021, "coord_origin": "BOTTOMLEFT"}, "text": "The noble gases have boiling points that", "furniture": false}, {"page": 17, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 602.9855143229166, "r": 354.3247884114583, "b": 590.6780395507812, "coord_origin": "BOTTOMLEFT"}, "text": "The noble gases have molecules with two ", "furniture": false}, {"page": 17, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 565.6387329101562, "r": 407.1775309244792, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "text": "The noble gases react with metals to for", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 515.1357014973958, "r": 101.9000956217448, "b": 500.70627848307294, "coord_origin": "BOTTOMLEFT"}, "text": "05.5", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 513.862528483073, "r": 408.023193359375, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1 shows information about the thre", "furniture": false}, {"page": 17, "kind": "text", "label": "section_header", "bbox": {"l": 270.1832275390625, "t": 483.30605061848956, "r": 310.77414957682294, "b": 471.42299397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 167.0146687825521, "t": 448.93007405598956, "r": 238.8944091796875, "b": 436.19822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Massnumber", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 274.8342692057292, "t": 449.77886962890625, "r": 416.0568033854167, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Percentage abundance (%)", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 195.34375, "t": 425.58831787109375, "r": 210.5653279622396, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 361.5127766927083, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "90.48", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 194.9209187825521, "t": 403.09539794921875, "r": 210.14251708984375, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 336.9890950520833, "t": 402.24660237630206, "r": 361.0899658203125, "b": 389.51475016276044, "coord_origin": "BOTTOMLEFT"}, "text": "0.27", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 194.9209187825521, "t": 379.75364176432294, "r": 210.9881591796875, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 336.5662841796875, "t": 379.32924397786456, "r": 361.0899658203125, "b": 366.59739176432294, "coord_origin": "BOTTOMLEFT"}, "text": "9.25", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 330.09942626953125, "r": 344.5998942057292, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the relative atomic mass (Ar) ", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 302.0893351236979, "r": 312.0426025390625, "b": 289.35748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Give your answer to 3 significant figure", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 286.3866984049479, "r": 535.7154134114584, "b": 273.2304484049479, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 186.8873087565104, "t": 122.99460856119788, "r": 407.1775309244792, "b": 108.14076741536462, "coord_origin": "BOTTOMLEFT"}, "text": "Relative atomic mass (3 significant figu", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 553.8967692057291, "t": 126.38970947265625, "r": 568.6955159505209, "b": 114.08225504557288, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 17, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 18, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 79.06770833333333, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.7435709635416, "r": 282.02223714192706, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "Thisquestion is about electrolysis.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 747.2798563639323, "r": 512.0373942057291, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Molten sodium chloride is electrolysed i", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 721.816151936849, "r": 425.7816975911458, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8 shows a simplified version of t", "furniture": false}, {"page": 18, "kind": "text", "label": "caption", "bbox": {"l": 267.64630126953125, "t": 696.3524373372396, "r": 314.15671793619794, "b": 681.9230041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 183.92755126953125, "t": 669.6155395507812, "r": 248.19649251302084, "b": 655.6105143229166, "coord_origin": "BOTTOMLEFT"}, "text": "Chlorine gas", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 386.4592692057292, "t": 627.6004231770834, "r": 430.4327392578125, "b": 615.7173665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Molten", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 394.9156901041667, "t": 615.29296875, "r": 432.9696858723958, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "text": "sodium", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 147.98768107096353, "t": 560.121602376302, "r": 183.92755126953125, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "text": "Molten", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 371.2376708984375, "t": 560.121602376302, "r": 407.6003824869792, "b": 546.1165568033855, "coord_origin": "BOTTOMLEFT"}, "text": "Molten", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 148.41051228841147, "t": 546.5409545898438, "r": 186.8873087565104, "b": 534.6578776041667, "coord_origin": "BOTTOMLEFT"}, "text": "sodium", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 371.2376708984375, "t": 546.1165568033855, "r": 410.1372884114583, "b": 534.6578776041667, "coord_origin": "BOTTOMLEFT"}, "text": "sodium", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 148.41051228841147, "t": 535.5066731770833, "r": 189.42423502604166, "b": 522.3504231770833, "coord_origin": "BOTTOMLEFT"}, "text": "chloride", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 372.5061442057292, "t": 534.6578776041667, "r": 412.6742350260417, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "text": "chloride", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 222.40435791015625, "t": 479.06211344401044, "r": 252.4247029622396, "b": 467.17905680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Mesh'", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 439.59336344401044, "r": 102.74573771158855, "b": 423.89072672526044, "coord_origin": "BOTTOMLEFT"}, "text": "06.1", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 437.47137451171875, "r": 423.6676025390625, "b": 422.61757405598956, "coord_origin": "BOTTOMLEFT"}, "text": "Which is the correct half equation for t", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 423.46636962890625, "r": 536.1382242838541, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 409.03692626953125, "r": 200.8404337565104, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 368.71938069661456, "r": 200.4176025390625, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Na + e \u2192 Na+", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 331.79697672526044, "r": 199.57196044921875, "b": 318.21636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Na \u2192 Na+ + e\"", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 294.02581787109375, "r": 199.99479166666666, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Na+ + e \u2192 Na", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 257.10345458984375, "r": 199.99479166666666, "b": 245.64479573567712, "coord_origin": "BOTTOMLEFT"}, "text": "Na+ \u2192 Na + e", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 18, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 19, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 411.8285725911458, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "A mesh is used to keep the products of t", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 747.7042541503906, "r": 101.47727457682292, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "text": "06.2", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 746.4310709635416, "r": 486.2452392578125, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest one reason why the products of t", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 730.3040568033854, "r": 536.1382242838541, "b": 715.8746236165365, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 614.019775390625, "r": 101.47727457682292, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 612.7466023763021, "r": 447.7684733072917, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "text": "Which type of particle passes through th", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 586.0097045898438, "r": 535.7154134114584, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 572.004659016927, "r": 200.8404337565104, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "text": "Tick () one box.", "furniture": false}, {"page": 19, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 531.262715657552, "r": 141.64535522460938, "b": 517.6820678710938, "coord_origin": "BOTTOMLEFT"}, "text": "Atom", "furniture": false}, {"page": 19, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 494.34035237630206, "r": 156.866943359375, "b": 481.18410237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Electron", "furniture": false}, {"page": 19, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 456.14479573567706, "r": 131.92045084635416, "b": 444.26169840494794, "coord_origin": "BOTTOMLEFT"}, "text": "lon", "furniture": false}, {"page": 19, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 420.91998291015625, "r": 159.82670084635416, "b": 407.76373291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Molecule", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 317.3675740559896, "r": 390.6875, "b": 303.78692626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Question6continueson thenextpage", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 20, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 506.5406901041667, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Aqueous sodium chloride solution is elec", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 748.128651936849, "r": 356.4389241536458, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "text": "Two gases and an alkaline solution are p", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 697.2012329101562, "r": 101.9000956217448, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "text": "06.4", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 680.6498209635416, "r": 266.8006591796875, "b": 669.6155395507812, "coord_origin": "BOTTOMLEFT"}, "text": "sodiumionsandchlorideions?", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 667.91796875, "r": 535.7154134114584, "b": 654.76171875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 552.4824829101562, "r": 101.47727457682292, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "text": "06.5", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 550.3605143229167, "r": 295.1297200520833, "b": 537.2042643229167, "coord_origin": "BOTTOMLEFT"}, "text": "Name the alkaline solution produced.", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 537.2042643229167, "r": 535.7154134114584, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 446.80808512369794, "r": 83.29592386881511, "b": 433.22743733723956, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 84.98721313476562, "t": 445.95928955078125, "r": 101.054443359375, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 446.38368733723956, "r": 336.5662841796875, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how the alkaline solution is pro", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 419.22239176432294, "r": 366.5866292317708, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "text": "You should refer to the processes at the", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 406.91493733723956, "r": 536.1382242838541, "b": 392.48549397786456, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 558.125, "t": 256.2546590169271, "r": 564.89013671875, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 20, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 21, "kind": "text", "label": "list_item", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 385.1907958984375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "07 This question is about silicon and co", "furniture": false}, {"page": 21, "kind": "text", "label": "list_item", "bbox": {"l": 50.31581115722656, "t": 731.152842203776, "r": 171.2428995768229, "b": 703.1427612304688, "coord_origin": "BOTTOMLEFT"}, "text": "07.1 and silicon.", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 689.9865112304688, "r": 490.0506591796875, "b": 677.2546590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Silicon can be extracted by reducing sil", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 661.5520426432291, "r": 316.6936442057292, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "text": "The equation for one possible reaction i", "furniture": false}, {"page": 21, "kind": "text", "label": "formula", "bbox": {"l": 230.86079915364584, "t": 634.3907470703125, "r": 417.3252766927083, "b": 619.9613037109375, "coord_origin": "BOTTOMLEFT"}, "text": "2C(s) + SiO2(s)\u2192 Si(s) + 2CO(g)", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 603.8342895507812, "r": 520.4938151041666, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Explain what this reaction shows about t", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 588.1316731770834, "r": 535.7154134114584, "b": 575.3998209635417, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 21, "kind": "text", "label": "list_item", "bbox": {"l": 48.62452697753906, "t": 422.19317626953125, "r": 305.7002766927083, "b": 406.06614176432294, "coord_origin": "BOTTOMLEFT"}, "text": "07.2 Aluminium also reduces silicon diox", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 391.21230061848956, "r": 512.0373942057291, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon is used rather than aluminium to ", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 352.16794840494794, "r": 312.0426025390625, "b": 338.58730061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon can be obtained by heating coal.", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 325.8554484049479, "r": 332.3380533854167, "b": 313.5479939778646, "coord_origin": "BOTTOMLEFT"}, "text": "Aluminium is obtained from aluminium oxi", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 298.69415283203125, "r": 382.6538899739583, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why aluminium is more expensive ", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 285.9623006184896, "r": 536.1382242838541, "b": 270.6841023763021, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 21, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 22, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 310.351318359375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Magnesiumalsoreducessilicondioxide.", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 748.128651936849, "r": 269.7604166666667, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "text": "The equationfor thereaction is:", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 224.09564208984375, "t": 723.0893351236979, "r": 424.5132649739583, "b": 708.2355041503906, "coord_origin": "BOTTOMLEFT"}, "text": "2Mg(s) + SiO2(s) \u2192 Si(s) + 2MgO(s)", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 670.8887329101562, "r": 102.32291666666667, "b": 655.6105143229166, "coord_origin": "BOTTOMLEFT"}, "text": "07.3", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 669.1911417643229, "r": 516.6884358723959, "b": 643.3030395507812, "coord_origin": "BOTTOMLEFT"}, "text": "Give one reason why the products are dif", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 639.9078776041666, "r": 535.2926025390625, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 525.3211873372395, "r": 102.74573771158855, "b": 509.1941731770833, "coord_origin": "BOTTOMLEFT"}, "text": "07.4", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 523.19921875, "r": 518.3797200520834, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the minimum mass in grams of m", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 483.30605061848956, "r": 409.2916666666667, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Relative atomic masses (Ar): O = 16 Mg ", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 470.14980061848956, "r": 536.1382242838541, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[5 marks]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 234.66617838541666, "t": 176.46836344401038, "r": 391.1103108723958, "b": 164.16090901692712, "coord_origin": "BOTTOMLEFT"}, "text": "Minimummassof magnesium=", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 22, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 23, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 63.84611511230469, "t": 24.95928955078125, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 255.38446044921875, "t": 664.9472045898438, "r": 268.491943359375, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 315.0023600260417, "t": 664.9472045898438, "r": 327.68701171875, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 216.4848429361979, "t": 621.2344970703125, "r": 227.47821044921875, "b": 609.7758382161459, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 254.9616495768229, "t": 622.5076904296875, "r": 268.06911214192706, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "text": "!S", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 315.0023600260417, "t": 622.5076904296875, "r": 328.10984293619794, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "text": "Si", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 354.7476399739583, "t": 621.2344970703125, "r": 365.7410074869792, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 256.2301025390625, "t": 578.370585123698, "r": 266.8006591796875, "b": 566.487528483073, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 578.370585123698, "r": 326.41855875651044, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 376.734375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "SizHe is a covalent compound of silicon ", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 746.4310709635416, "r": 101.9000956217448, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "07.5", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 743.8847045898438, "r": 478.2116292317708, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Figure 9 to show the outer shel", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 731.152842203776, "r": 535.2926025390625, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 23, "kind": "text", "label": "section_header", "bbox": {"l": 268.491943359375, "t": 701.4451802571615, "r": 313.3110758463542, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 255.38446044921875, "t": 664.9472045898438, "r": 268.491943359375, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 315.0023600260417, "t": 664.9472045898438, "r": 327.68701171875, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 216.4848429361979, "t": 621.2344970703125, "r": 227.47821044921875, "b": 609.7758382161459, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 254.9616495768229, "t": 622.5076904296875, "r": 268.06911214192706, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "text": "!S", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 315.0023600260417, "t": 622.5076904296875, "r": 328.10984293619794, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "text": "Si", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 354.7476399739583, "t": 621.2344970703125, "r": 365.7410074869792, "b": 610.2002156575521, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 256.2301025390625, "t": 578.370585123698, "r": 266.8006591796875, "b": 566.487528483073, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 578.370585123698, "r": 326.41855875651044, "b": 566.0631306966145, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 520.2284545898438, "r": 101.9000956217448, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "text": "07.6", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 516.8332926432292, "r": 237.62593587239584, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Si2H6 reacts with oxygen.", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 490.09637451171875, "r": 270.60605875651044, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "text": "The equation for the reaction is:", "furniture": false}, {"page": 23, "kind": "text", "label": "formula", "bbox": {"l": 210.9881591796875, "t": 464.63267008463544, "r": 437.6207275390625, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "text": "(6)OH9 + (s)\"O!S (6)O L + (6)9H!S\u4e59", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 439.16896565755206, "r": 418.59375, "b": 425.16392008463544, "coord_origin": "BOTTOMLEFT"}, "text": "30 cm? of Si2H is reacted with 150 cm? (", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 399.70021565755206, "r": 414.788330078125, "b": 386.54396565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the total volume of gases pres", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 373.81211344401044, "r": 479.9029134114583, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "text": "All volumes of gases are measured at the", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 359.80706787109375, "r": 535.7154134114584, "b": 347.07521565755206, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 326.84136962890625, "t": 119.17502848307288, "r": 537.8295491536459, "b": 105.16998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Volume of gases = cm3", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 121.29701741536462, "r": 569.5411783854166, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 553.4739583333334, "t": 121.29701741536462, "r": 569.5411783854166, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 23, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.4855066935221, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 87.10132853190105, "t": 744.309092203776, "r": 99.78598022460938, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "1", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 447.65688069661456, "r": 101.9000956217448, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "08.2", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 79.06770833333333, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.5923614501953, "r": 309.0828450520833, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about acids and alkalis", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 87.10132853190105, "t": 744.309092203776, "r": 99.78598022460938, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "1", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 745.1578877766927, "r": 324.304443359375, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the pH of an acid depends on", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 116.69886271158855, "t": 723.9381306966146, "r": 238.4715779622396, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "text": "thestrengthoftheacid", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 706.113525390625, "r": 266.8006591796875, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "text": "the concentration of the acid.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 693.3816731770834, "r": 535.7154134114584, "b": 678.9522399902344, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 447.65688069661456, "r": 101.9000956217448, "b": 432.80303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "08.2", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 445.95928955078125, "r": 445.2315266927083, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "text": "A student titrated 25.00 cm3 of hydrochl", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 403.94419352213544, "r": 243.96826171875, "b": 392.48549397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2 shows the results.", "furniture": false}, {"page": 24, "kind": "text", "label": "section_header", "bbox": {"l": 269.7604166666667, "t": 378.90484619140625, "r": 311.6197916666667, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 62.57765197753906, "t": 346.65081787109375, "r": 151.79308064778647, "b": 334.76776123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Titration number", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 269.33758544921875, "t": 346.65081787109375, "r": 277.7940266927083, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "text": "1", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 325.5729166666667, "t": 347.07521565755206, "r": 335.2978108723958, "b": 333.07017008463544, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 383.0767008463542, "t": 346.65081787109375, "r": 391.5331217447917, "b": 334.34336344401044, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 438.8892008463542, "t": 347.07521565755206, "r": 448.6140950520833, "b": 333.91896565755206, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 495.9701741536458, "t": 347.07521565755206, "r": 505.695068359375, "b": 333.49456787109375, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 62.57765197753906, "t": 327.55303955078125, "r": 212.25663248697916, "b": 315.2455851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Volume of bariumhydroxide", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 258.34421793619794, "t": 321.61151123046875, "r": 289.21022542317706, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "text": "23.90", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 315.0023600260417, "t": 321.61151123046875, "r": 345.8683675130208, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "text": "23.45", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 371.6604817708333, "t": 321.61151123046875, "r": 402.5264892578125, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "text": "23.55", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 428.3186442057292, "t": 321.61151123046875, "r": 459.1846516927083, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "text": "23.55", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 321.61151123046875, "r": 516.265625, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "text": "23.45", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 61.73200480143229, "t": 314.39678955078125, "r": 172.5113525390625, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "text": "solution used in cm?", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 274.5036417643229, "r": 507.8091634114583, "b": 248.61553955078125, "coord_origin": "BOTTOMLEFT"}, "text": "The student calculated the volume of bar", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 234.61049397786462, "r": 523.03076171875, "b": 209.99558512369788, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the student used a volume of", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 209.14678955078125, "r": 536.1382242838541, "b": 194.71734619140625, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 542.4805908203125, "t": 788.4461924235026, "r": 580.9573567708334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 24, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.054443359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "08.3", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.054443359375, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "08.3", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.7435709635416, "r": 499.3527425130208, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "25.00 cm? of the hydrochloric acid react", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 733.69921875, "r": 270.1832275390625, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "text": "The equation for the reaction is:", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 197.0350341796875, "t": 707.8111063639323, "r": 451.1510416666667, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "text": "2HCl(aq)+ Ba(OH)2(aq)\u2192 BaCl2(aq)+ 2H2O(l", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 668.3423665364584, "r": 421.5535074869792, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the concentration of the hydro", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 655.1861165364584, "r": 536.1382242838541, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 161.51798502604166, "t": 413.70526123046875, "r": 536.5610758463541, "b": 401.39780680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Concentration of the hydrochloric acid =", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 321.1871134440104, "r": 390.6875, "b": 307.6064656575521, "coord_origin": "BOTTOMLEFT"}, "text": "Question8continuesonthenextpage", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 443.9630533854167, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Another student titrated sulfuric acid w", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 748.5530497233073, "r": 270.1832275390625, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "text": "The equation for the reaction is:", "furniture": false}, {"page": 26, "kind": "text", "label": "formula", "bbox": {"l": 195.34375, "t": 723.5137329101562, "r": 453.26513671875, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 696.7768351236979, "r": 513.7286783854166, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "text": "The student measured the electrical cond", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 670.0399373372396, "r": 437.1979166666667, "b": 658.1568806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Thebetteraconductor,thehighertheelectric", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 644.1518351236979, "r": 254.538818359375, "b": 631.4199829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10 shows the results.", "furniture": false}, {"page": 26, "kind": "text", "label": "caption", "bbox": {"l": 265.5321858723958, "t": 618.2637329101562, "r": 315.84800211588544, "b": 605.1074829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 169.1287841796875, "t": 568.6094970703125, "r": 176.3167521158854, "b": 559.6972045898438, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 99.3631591796875, "t": 518.106465657552, "r": 146.29639689127603, "b": 505.37461344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Electrical", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 168.70596313476562, "t": 513.0137329101562, "r": 177.16239420572916, "b": 502.8282470703125, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 98.94033813476562, "t": 507.9209798177083, "r": 158.9810587565104, "b": 491.79396565755206, "coord_origin": "BOTTOMLEFT"}, "text": "conductivity", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 99.3631591796875, "t": 494.76475016276044, "r": 154.33001708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "in arbitrary", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 99.3631591796875, "t": 481.18410237630206, "r": 124.73248291015625, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "text": "units", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 230.01513671875, "t": 390.78794352213544, "r": 244.81392415364584, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 285.82763671875, "t": 390.78794352213544, "r": 301.0492350260417, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 343.3314208984375, "t": 390.78794352213544, "r": 358.1302083333333, "b": 378.90484619140625, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 400.4123942057292, "t": 390.36354573567706, "r": 413.9427083333333, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 185.1960245768229, "t": 377.20729573567706, "r": 431.7012125651042, "b": 364.89980061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Volumeof bariumhydroxidesolution added i", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 336.88975016276044, "r": 88.36979166666667, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "text": "08.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 82.02746073404948, "t": 336.46535237630206, "r": 101.054443359375, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "text": ":4", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 336.88975016276044, "r": 88.36979166666667, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "text": "08.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 82.02746073404948, "t": 336.46535237630206, "r": 101.054443359375, "b": 323.7335001627604, "coord_origin": "BOTTOMLEFT"}, "text": ":4", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 335.61655680338544, "r": 524.7220458984375, "b": 310.1528523763021, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why the electrical conductivity ", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 295.7234090169271, "r": 276.94838460286456, "b": 283.41595458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Use the equationfor thereaction.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 270.25970458984375, "r": 255.80729166666666, "b": 256.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Refer to ions in your answer.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 257.9522501627604, "r": 535.7154134114584, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 63.42329406738281, "t": 25.80808512369788, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 26, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 27, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.2123209635416, "r": 295.97536214192706, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "27", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 553.0511067708334, "t": 659.0056762695312, "r": 569.9639892578125, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "08.5", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 772.7435709635416, "r": 457.4933675130208, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "The student then added a further 10 cm? ", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 745.582285563151, "r": 364.8953450520833, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "text": "The electrical conductivity of the mixtu", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 719.6941731770834, "r": 222.8271687825521, "b": 706.5379231770834, "coord_origin": "BOTTOMLEFT"}, "text": "Giveonereasonwhy.", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 704.840342203776, "r": 536.1382242838541, "b": 690.4109090169271, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 553.0511067708334, "t": 659.0056762695312, "r": 569.9639892578125, "b": 645.4250284830729, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 230.86079915364584, "t": 562.2435709635417, "r": 346.2911783854167, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOFQUESTIONS", "furniture": false}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 445.11049397786456, "r": 397.45263671875, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 542.0577392578125, "t": 788.4461924235026, "r": 581.3802083333334, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 28, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 29, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 541.2121175130209, "t": 786.32421875, "r": 580.5345458984375, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "31", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 31, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 32, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "section_header", "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Copyrightinformation", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "text": "For confidentialitypurposes,allacknowled", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "text": "Permissiontoreproduce all copyright mate", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Copyright @ 2022 AQA and its licensors.A", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "section_header", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 186.04166666666666, "t": 445.11049397786456, "r": 394.9156901041667, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 363.2040608723958, "t": 44.90590413411462, "r": 507.8091634114583, "b": 33.44716389973962, "coord_origin": "BOTTOMLEFT"}, "text": "226G8462/1H", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 541.2121175130209, "t": 786.32421875, "r": 580.5345458984375, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 32, "kind": "text", "label": "page_footer", "bbox": {"l": 474.8290608723958, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8462/1H", "furniture": true}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 38.028892517089844, "t": 797.4698028564453, "r": 168.19972229003906, "b": 750.2145767211914, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 41.59428787231445, "t": 53.4034423828125, "r": 246.23011779785156, "b": 17.48321533203125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 500.0463562011719, "t": 546.2381591796875, "r": 543.3062133789062, "b": 493.0670166015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 43.85730743408203, "t": 53.138671875, "r": 99.28272247314453, "b": 17.32171630859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 83.22163391113281, "t": 775.5824356079102, "r": 104.6264419555664, "b": 759.376838684082, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 82.88858032226562, "t": 490.4773864746094, "r": 103.99593353271484, "b": 474.3543395996094, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 43.826263427734375, "t": 53.1265869140625, "r": 99.09163665771484, "b": 17.47698974609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 216.1488037109375, "t": 687.8902130126953, "r": 364.1007385253906, "b": 529.9866638183594, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 43.824642181396484, "t": 53.1064453125, "r": 99.16098022460938, "b": 17.65423583984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 545.0658569335938, "t": 516.5293884277344, "r": 576.5323486328125, "b": 477.6912536621094, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 43.76749038696289, "t": 53.12872314453125, "r": 99.13385772705078, "b": 17.51544189453125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 84.31061553955078, "t": 713.8152923583984, "r": 498.6824645996094, "b": 367.89630126953125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 43.6757698059082, "t": 53.302734375, "r": 99.16030883789062, "b": 17.4625244140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 43.825653076171875, "t": 53.16912841796875, "r": 99.22120666503906, "b": 17.67669677734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 39.997745513916016, "t": 788.6085472106934, "r": 540.5895385742188, "b": 76.569580078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 43.730838775634766, "t": 53.16070556640625, "r": 99.11856842041016, "b": 17.56536865234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 148.96104431152344, "t": 699.4140472412109, "r": 431.3801574707031, "b": 511.32061767578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 43.72150421142578, "t": 53.21575927734375, "r": 99.02352142333984, "b": 17.614990234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 545.0675048828125, "t": 241.86834716796875, "r": 577.0537719726562, "b": 200.44451904296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 183.67413330078125, "t": 689.0947418212891, "r": 395.67596435546875, "b": 583.9583435058594, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 43.66802215576172, "t": 53.22222900390625, "r": 99.1289291381836, "b": 17.5638427734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 43.81427001953125, "t": 53.1534423828125, "r": 99.220947265625, "b": 17.87664794921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 204.51419067382812, "t": 716.3077774047852, "r": 373.9934387207031, "b": 569.1023864746094, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 43.833866119384766, "t": 53.0880126953125, "r": 99.1875991821289, "b": 17.359130859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 544.8119506835938, "t": 529.9595642089844, "r": 576.8878173828125, "b": 489.5596923828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 43.73081970214844, "t": 53.15118408203125, "r": 99.1497802734375, "b": 17.478515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 43.679386138916016, "t": 53.180908203125, "r": 99.15983581542969, "b": 17.7747802734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 46.86721420288086, "t": 776.192756652832, "r": 104.57872772216797, "b": 759.2460327148438, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 43.66917419433594, "t": 53.17962646484375, "r": 99.1082534790039, "b": 17.5198974609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 210.0513153076172, "t": 557.4714965820312, "r": 371.6581726074219, "b": 505.3802490234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 544.9921875, "t": 168.60968017578125, "r": 577.043212890625, "b": 127.175048828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 43.66910934448242, "t": 53.190185546875, "r": 99.1316909790039, "b": 17.5001220703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 82.45284271240234, "t": 516.9572143554688, "r": 104.8023681640625, "b": 500.1972351074219, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 43.7761116027832, "t": 53.252685546875, "r": 99.26835632324219, "b": 17.78460693359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 544.7325439453125, "t": 150.69403076171875, "r": 577.20947265625, "b": 109.1588134765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 39.47840118408203, "t": 788.3730697631836, "r": 539.8247680664062, "b": 75.8057861328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 43.725730895996094, "t": 53.2596435546875, "r": 99.10089874267578, "b": 17.6256103515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 43.847145080566406, "t": 53.126220703125, "r": 99.17255401611328, "b": 17.7830810546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 43.71705627441406, "t": 53.154052734375, "r": 99.15788269042969, "b": 17.366455078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 545.0584716796875, "t": 282.157958984375, "r": 576.5506591796875, "b": 241.53350830078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 43.726165771484375, "t": 53.06036376953125, "r": 99.18004608154297, "b": 17.6517333984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 43.74374771118164, "t": 53.08709716796875, "r": 99.16704559326172, "b": 17.24615478515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 82.2315444946289, "t": 748.2027435302734, "r": 104.81997680664062, "b": 731.6419372558594, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 43.73017120361328, "t": 53.1356201171875, "r": 99.146728515625, "b": 17.383056640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 205.07598876953125, "t": 675.6852722167969, "r": 375.23626708984375, "b": 558.8597717285156, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 545.0231323242188, "t": 145.28521728515625, "r": 577.076171875, "b": 104.4761962890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 81.33708953857422, "t": 748.4152221679688, "r": 104.49987030029297, "b": 731.7340087890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 46.28067398071289, "t": 448.952392578125, "r": 105.23295593261719, "b": 431.4825134277344, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 43.59077835083008, "t": 53.1778564453125, "r": 99.12206268310547, "b": 17.450927734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 46.18698501586914, "t": 776.3649291992188, "r": 105.48291778564453, "b": 758.8308334350586, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 43.78736114501953, "t": 53.08837890625, "r": 99.23674011230469, "b": 17.3798828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 99.21434020996094, "t": 594.9752044677734, "r": 436.32781982421875, "b": 363.9990539550781, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 46.077030181884766, "t": 338.9711608886719, "r": 105.3624267578125, "b": 321.97808837890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 43.590415954589844, "t": 53.24151611328125, "r": 99.1473388671875, "b": 17.32464599609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 545.11279296875, "t": 682.5220031738281, "r": 577.2296142578125, "b": 641.0832061767578, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 43.74171447753906, "t": 53.149169921875, "r": 99.22322845458984, "b": 17.59033203125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 43.53289794921875, "t": 53.03009033203125, "r": 99.4490737915039, "b": 16.610595703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 43.74699020385742, "t": 53.18353271484375, "r": 99.3206787109375, "b": 17.10015869140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 43.7423095703125, "t": 53.17816162109375, "r": 99.29827880859375, "b": 17.1097412109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 43.725128173828125, "t": 53.1527099609375, "r": 99.40816497802734, "b": 17.32061767578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 348.2997131347656, "t": 71.1689453125, "r": 526.5169067382812, "b": 35.192138671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "table", "label": "table", "bbox": {"l": 443.3713684082031, "t": 396.29754638671875, "r": 544.0729370117188, "b": 194.6727294921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}]} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/page_roles.json b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/page_roles.json new file mode 100644 index 0000000..aee87a2 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/page_roles.json @@ -0,0 +1,228 @@ +{ + "pages": { + "1": { + "role": "cover", + "chars": 893, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "2": { + "role": "question", + "chars": 561, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "3": { + "role": "question", + "chars": 315, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "4": { + "role": "question", + "chars": 230, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "5": { + "role": "question", + "chars": 423, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "6": { + "role": "continuation", + "chars": 229, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "7": { + "role": "question", + "chars": 409, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "8": { + "role": "continuation", + "chars": 912, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "9": { + "role": "question", + "chars": 322, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "10": { + "role": "question", + "chars": 267, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "11": { + "role": "question", + "chars": 307, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "12": { + "role": "question", + "chars": 182, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "13": { + "role": "question", + "chars": 646, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "14": { + "role": "question", + "chars": 290, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "15": { + "role": "question", + "chars": 245, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "16": { + "role": "question", + "chars": 463, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "17": { + "role": "question", + "chars": 590, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "18": { + "role": "question", + "chars": 392, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "19": { + "role": "question", + "chars": 333, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "20": { + "role": "question", + "chars": 336, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "21": { + "role": "question", + "chars": 583, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "22": { + "role": "question", + "chars": 397, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "23": { + "role": "question", + "chars": 471, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "24": { + "role": "question", + "chars": 572, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "25": { + "role": "question", + "chars": 353, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "26": { + "role": "continuation", + "chars": 556, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "27": { + "role": "question", + "chars": 194, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "28": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "29": { + "role": "blank", + "chars": 129, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "30": { + "role": "blank", + "chars": 129, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "31": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "32": { + "role": "appendix", + "chars": 650, + "margins_enabled": true, + "source": "auto", + "confirmed": false + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/report.md b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/report.md new file mode 100644 index 0000000..726ca74 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/report.md @@ -0,0 +1,15 @@ +# AQA GCSE Chemistry 8462/1H 2022 Jun (image-only OCR baseline) + +- **slug:** `b1-aqa-chemistry-8462-1h-2022jun` · **board:** aqa · **level:** GCSE · **path:** B1 image-only OCR (RapidOCR margin-pass) +- **questions/parts:** 8 / 42 +- **marks:** 91/100 (91.0% of official max) +- **coverage vs GT:** 89.4% (missed ['02.2', '02.4', '04.1', '08.1', '08.4']) +- **G6 verdict:** warn +- **answer-region count:** 192 + +**Flags (human-review hints):** +- [warn] C1_marks_sum: marks sum 91 below official max 100 (-9) — missing parts or unread marks +- [warn] C4_subpart_seq: sub-part gaps: Q02 missing ['2', '4'], Q08 missing ['4'] +- [warn] C5_coverage: 64.3% vs GT (27/42); missed ['02.2', '02.4', '04.1', '08.1', '08.4', '09.1', '09.2', '09.3', '10.1', '10.2'] + +**Artifacts:** `structured.json`, `validate.json`, `furniture.json`, `bands.json`, `page_roles.json`, `template.json`, `overlays/` (0 images) diff --git a/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/structured.json b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/structured.json new file mode 100644 index 0000000..7780359 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/structured.json @@ -0,0 +1,3237 @@ +{ + "board": "aqa", + "paper_code": "8462/1", + "front_matter": { + "exam_board": "AQA", + "paper_code": "8462/1", + "qualification": "GCSE", + "subject": "Chemistry", + "tier": "Higher", + "time_allowed": "1 hour 45 minutes", + "max_marks": 100, + "session": "Jun 2022" + }, + "path": "aqa-docling+rapidocr (v1)", + "pages": [], + "questions": [ + { + "question": "01", + "parts": [ + { + "label": "01.1", + "page": 2, + "bbox": { + "l": 49.04734802246094, + "t": 562.2435709635417, + "r": 376.3115234375, + "b": 546.1165568033855, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.2", + "page": 2, + "bbox": { + "l": 48.62452697753906, + "t": 394.60748291015625, + "r": 103.16855875651042, + "b": 378.90484619140625, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.3", + "page": 2, + "bbox": { + "l": 48.201700846354164, + "t": 253.70827229817712, + "r": 103.16855875651042, + "b": 237.58127848307288, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.4", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.5", + "page": 3, + "bbox": { + "l": 49.47016906738281, + "t": 490.09637451171875, + "r": 101.9000956217448, + "b": 475.24257405598956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.6", + "page": 3, + "bbox": { + "l": 49.89299011230469, + "t": 202.35646565755212, + "r": 101.9000956217448, + "b": 187.92702229817712, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.7", + "page": 4, + "bbox": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 104.01420084635417, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "02", + "parts": [ + { + "label": "02.1", + "page": 5, + "bbox": { + "l": 48.62452697753906, + "t": 626.3272298177084, + "r": 103.5913798014323, + "b": 610.2002156575521, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.3", + "page": 7, + "bbox": { + "l": 48.201700846354164, + "t": 358.10947672526044, + "r": 102.32291666666667, + "b": 341.98248291015625, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.5", + "page": 9, + "bbox": { + "l": 49.47016906738281, + "t": 436.62261962890625, + "r": 101.47727457682292, + "b": 421.76877848307294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.6", + "page": 9, + "bbox": { + "l": 49.47016906738281, + "t": 304.6357218424479, + "r": 101.9000956217448, + "b": 290.63067626953125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "03", + "parts": [ + { + "label": "03.1", + "page": 10, + "bbox": { + "l": 49.89299011230469, + "t": 544.418965657552, + "r": 345.8683675130208, + "b": 529.1407470703125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.2", + "page": 10, + "bbox": { + "l": 49.04734802246094, + "t": 310.5772501627604, + "r": 364.0497233072917, + "b": 294.4502156575521, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.3", + "page": 11, + "bbox": { + "l": 47.77887980143229, + "t": 541.0238037109375, + "r": 102.32291666666667, + "b": 525.745585123698, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.4", + "page": 11, + "bbox": { + "l": 49.47016906738281, + "t": 294.8746134440104, + "r": 102.32291666666667, + "b": 280.4451700846354, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.5", + "page": 12, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "04", + "parts": [ + { + "label": "04.2", + "page": 13, + "bbox": { + "l": 48.201700846354164, + "t": 483.73044840494794, + "r": 108.24242146809895, + "b": 466.75465901692706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.3", + "page": 13, + "bbox": { + "l": 49.89299011230469, + "t": 351.31919352213544, + "r": 101.9000956217448, + "b": 336.46535237630206, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.4", + "page": 13, + "bbox": { + "l": 48.62452697753906, + "t": 232.91290283203125, + "r": 108.24242146809895, + "b": 218.48350016276038, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.5", + "page": 14, + "bbox": { + "l": 49.47016906738281, + "t": 656.8836873372396, + "r": 103.5913798014323, + "b": 642.4542643229166, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.6", + "page": 14, + "bbox": { + "l": 49.89299011230469, + "t": 542.2969970703125, + "r": 101.9000956217448, + "b": 527.4431762695312, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.7", + "page": 15, + "bbox": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 104.85984293619792, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "05", + "parts": [ + { + "label": "05.1", + "page": 16, + "bbox": { + "l": 49.47016906738281, + "t": 653.488525390625, + "r": 101.47727457682292, + "b": 639.0591023763021, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.2", + "page": 16, + "bbox": { + "l": 48.62452697753906, + "t": 483.73044840494794, + "r": 108.66524251302083, + "b": 467.17905680338544, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.3", + "page": 16, + "bbox": { + "l": 47.77887980143229, + "t": 249.03993733723962, + "r": 106.55113728841145, + "b": 233.33730061848962, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.4", + "page": 17, + "bbox": { + "l": 50.31581115722656, + "t": 746.0066731770834, + "r": 83.29592386881511, + "b": 732.426035563151, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.5", + "page": 17, + "bbox": { + "l": 49.89299011230469, + "t": 515.1357014973958, + "r": 101.9000956217448, + "b": 500.70627848307294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "06", + "parts": [ + { + "label": "06.1", + "page": 18, + "bbox": { + "l": 48.201700846354164, + "t": 439.59336344401044, + "r": 102.74573771158855, + "b": 423.89072672526044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.2", + "page": 19, + "bbox": { + "l": 49.47016906738281, + "t": 747.7042541503906, + "r": 101.47727457682292, + "b": 732.8504231770834, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.3", + "page": 19, + "bbox": { + "l": 49.89299011230469, + "t": 614.019775390625, + "r": 101.47727457682292, + "b": 600.0147298177084, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.4", + "page": 20, + "bbox": { + "l": 49.47016906738281, + "t": 697.2012329101562, + "r": 101.9000956217448, + "b": 682.347401936849, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.5", + "page": 20, + "bbox": { + "l": 48.62452697753906, + "t": 552.4824829101562, + "r": 101.47727457682292, + "b": 538.0530395507812, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.6", + "page": 20, + "bbox": { + "l": 50.31581115722656, + "t": 446.80808512369794, + "r": 83.29592386881511, + "b": 433.22743733723956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "07", + "parts": [ + { + "label": "07.1", + "page": 21, + "bbox": { + "l": 50.31581115722656, + "t": 731.152842203776, + "r": 171.2428995768229, + "b": 703.1427612304688, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.2", + "page": 21, + "bbox": { + "l": 48.62452697753906, + "t": 422.19317626953125, + "r": 305.7002766927083, + "b": 406.06614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.3", + "page": 22, + "bbox": { + "l": 49.04734802246094, + "t": 670.8887329101562, + "r": 102.32291666666667, + "b": 655.6105143229166, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.4", + "page": 22, + "bbox": { + "l": 48.62452697753906, + "t": 525.3211873372395, + "r": 102.74573771158855, + "b": 509.1941731770833, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 5, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.5", + "page": 23, + "bbox": { + "l": 49.47016906738281, + "t": 746.4310709635416, + "r": 101.9000956217448, + "b": 732.0016377766927, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.6", + "page": 23, + "bbox": { + "l": 48.62452697753906, + "t": 520.2284545898438, + "r": 101.9000956217448, + "b": 504.1014404296875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "08", + "parts": [ + { + "label": "08.2", + "page": 24, + "bbox": { + "l": 50.31581115722656, + "t": 447.65688069661456, + "r": 101.9000956217448, + "b": 432.80303955078125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.3", + "page": 25, + "bbox": { + "l": 49.89299011230469, + "t": 774.8655446370443, + "r": 101.054443359375, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "08.5", + "page": 27, + "bbox": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + } + ], + "regions": [ + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 555.4532470703125, + "r": 186.04166666666666, + "b": 496.88669840494794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "GCSE CHEMISTRY" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 407.76373291015625, + "r": 92.59801228841145, + "b": 395.03188069661456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Materials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 380.60243733723956, + "r": 83.71875, + "b": 369.14377848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a ruler" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 367.44618733723956, + "r": 153.484375, + "b": 356.83632405598956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a scientific calculator" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 354.71433512369794, + "r": 191.9611612955729, + "b": 342.40688069661456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the periodic table (enclosed)." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 329.2506306966146, + "r": 108.66524251302083, + "b": 317.7919718424479, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Instructions" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 316.5187784830729, + "r": 230.86079915364584, + "b": 303.3625284830729, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Use black ink or black ball-point pen." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 303.3625284830729, + "r": 241.43133544921875, + "b": 289.7818806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Pencil should only be used for drawing." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 277.47442626953125, + "r": 373.351806640625, + "b": 250.73752848307288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Answer all questions in the spaces provided. Do not write outside the box around" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 291.4794718424479, + "r": 241.0085245768229, + "b": 276.20123291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Fill in the boxes at the top of this page." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 250.73752848307288, + "r": 424.9360758463542, + "b": 224.00063069661462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "If you need extra space for your answer(s), use the lined pages at the end of th" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 224.84942626953125, + "r": 402.5264892578125, + "b": 200.23447672526038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Do all rough work in this book. Cross through any work you do not want to be mar" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 198.96132405598962, + "r": 356.4389241536458, + "b": 185.38067626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7In all calculations, show clearly how you work out your answer." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 173.92197672526038, + "r": 106.12831624348958, + "b": 160.34136962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Information" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 159.49257405598962, + "r": 251.57906087239584, + "b": 147.18511962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The maximum mark for this paper is 100." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 145.91192626953125, + "r": 282.445068359375, + "b": 133.60447184244788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The marks for questions are shown in brackets." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 120.02382405598962, + "r": 391.5331217447917, + "b": 94.56011962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You are reminded of the need for good English and clear presentation in your ans" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 316.2708333333333, + "t": 20.71531168619788, + "r": 367.8551025390625, + "b": 12.227437337239621, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/E10" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 467.6410725911458, + "t": 33.87156168619788, + "r": 545.8631591796875, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 2, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 293.4384358723958, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 2, + "bbox": { + "l": 267.64630126953125, + "t": 716.7234090169271, + "r": 313.3110758463542, + "b": 702.2939758300781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 2, + "bbox": { + "l": 49.04734802246094, + "t": 562.2435709635417, + "r": 376.3115234375, + "b": 546.1165568033855, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01.1 Element Q is a dull solid with a melting point of 44 \u00b0C." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 2, + "bbox": { + "l": 153.90719604492188, + "t": 438.74456787109375, + "r": 161.09516398111978, + "b": 429.83229573567706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 2, + "bbox": { + "l": 235.0890096028646, + "t": 438.32017008463544, + "r": 242.2769775390625, + "b": 429.83229573567706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 2, + "bbox": { + "l": 316.6936442057292, + "t": 437.47137451171875, + "r": 322.19032796223956, + "b": 431.10544840494794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 2, + "bbox": { + "l": 397.45263671875, + "t": 437.47137451171875, + "r": 402.5264892578125, + "b": 431.10544840494794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 2, + "bbox": { + "l": 153.90719604492188, + "t": 296.9966023763021, + "r": 161.09516398111978, + "b": 288.9330851236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 2, + "bbox": { + "l": 235.5118408203125, + "t": 296.57220458984375, + "r": 241.43133544921875, + "b": 290.63067626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 2, + "bbox": { + "l": 316.6936442057292, + "t": 296.57220458984375, + "r": 322.6131591796875, + "b": 290.63067626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 2, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 3, + "bbox": { + "l": 286.25046793619794, + "t": 809.6659495035807, + "r": 291.7471516927083, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 3, + "bbox": { + "l": 268.06911214192706, + "t": 703.9915568033854, + "r": 314.15671793619794, + "b": 689.1377258300781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 3, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 4, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 5, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 5, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 802.4512329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.9573567708334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 6, + "bbox": { + "l": 115.007568359375, + "t": 772.7435709635416, + "r": 445.6543375651042, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3 shows a line of best fit drawn through the student's results." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 6, + "bbox": { + "l": 268.06911214192706, + "t": 743.0359090169271, + "r": 314.15671793619794, + "b": 728.6064758300781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 6, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 7, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 8, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 9, + "bbox": { + "l": 114.16192626953125, + "t": 772.3191782633463, + "r": 478.6344401041667, + "b": 746.4310709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4 shows a reaction profile for thereaction of sodium carbonate with hydro" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 9, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 10, + "bbox": { + "l": 282.86789957682294, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 10, + "bbox": { + "l": 267.64630126953125, + "t": 716.7234090169271, + "r": 313.73388671875, + "b": 702.2939758300781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 10, + "bbox": { + "l": 49.89299011230469, + "t": 544.418965657552, + "r": 345.8683675130208, + "b": 529.1407470703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "03.1 Describe the structure and bonding of diamond." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 10, + "bbox": { + "l": 49.04734802246094, + "t": 310.5772501627604, + "r": 364.0497233072917, + "b": 294.4502156575521, + "coord_origin": "BOTTOMLEFT" + }, + "text": "03.2 Explain why diamond has a very high melting point." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 10, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 11, + "bbox": { + "l": 284.1363525390625, + "t": 812.2123209635416, + "r": 293.86126708984375, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 11, + "bbox": { + "l": 115.007568359375, + "t": 774.441151936849, + "r": 297.24383544921875, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 6 represents the molecule C70" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 11, + "bbox": { + "l": 268.06911214192706, + "t": 746.4310709635416, + "r": 313.73388671875, + "b": 731.5772399902344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 6" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.16192626953125, + "t": 470.99859619140625, + "r": 161.51798502604166, + "b": 456.14479573567706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Fullerene" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.58474731445312, + "t": 433.65183512369794, + "r": 165.74620564778647, + "b": 419.22239176432294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Graphene" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 114.16192626953125, + "t": 396.30507405598956, + "r": 164.05492146809897, + "b": 383.57322184244794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Nanotube" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 11, + "bbox": { + "l": 113.73910522460938, + "t": 360.65586344401044, + "r": 156.866943359375, + "b": 344.95322672526044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Polymer" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 11, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 12, + "bbox": { + "l": 282.86789957682294, + "t": 813.909901936849, + "r": 295.97536214192706, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 12, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 13, + "bbox": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 13, + "bbox": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 14, + "bbox": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "14" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 14, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 15, + "bbox": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "15" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 15, + "bbox": { + "l": 114.16192626953125, + "t": 706.9623209635416, + "r": 146.29639689127603, + "b": 695.0792541503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Label:" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 15, + "bbox": { + "l": 119.65861002604167, + "t": 687.0157470703125, + "r": 147.56486002604166, + "b": 675.1326802571615, + "coord_origin": "BOTTOMLEFT" + }, + "text": "zinc" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 15, + "bbox": { + "l": 124.30965169270833, + "t": 666.644775390625, + "r": 161.51798502604166, + "b": 655.1861165364584, + "coord_origin": "BOTTOMLEFT" + }, + "text": "copper" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 15, + "bbox": { + "l": 118.81296793619792, + "t": 648.3957926432291, + "r": 253.27034505208334, + "b": 636.9371134440104, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the othersubstanceused." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 15, + "bbox": { + "l": 268.91477457682294, + "t": 584.7365112304688, + "r": 314.57952880859375, + "b": 569.8826904296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 15, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 16, + "bbox": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 16, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 17, + "bbox": { + "l": 282.86789957682294, + "t": 813.909901936849, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "17" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 17, + "bbox": { + "l": 114.58474731445312, + "t": 676.8302612304688, + "r": 454.5336100260417, + "b": 663.6740112304688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The noble gases all have atoms with eight electrons in the outer shell." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 17, + "bbox": { + "l": 114.58474731445312, + "t": 640.332275390625, + "r": 468.0639241536458, + "b": 625.9028523763021, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The noble gases have boiling points that increase going down the group." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 17, + "bbox": { + "l": 114.58474731445312, + "t": 602.9855143229166, + "r": 354.3247884114583, + "b": 590.6780395507812, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The noble gases have molecules with two atoms." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 17, + "bbox": { + "l": 114.58474731445312, + "t": 565.6387329101562, + "r": 407.1775309244792, + "b": 553.331278483073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The noble gases react with metals to form ionic compounds." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 17, + "bbox": { + "l": 270.1832275390625, + "t": 483.30605061848956, + "r": 310.77414957682294, + "b": 471.42299397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 17, + "bbox": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 18, + "bbox": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 18, + "bbox": { + "l": 267.64630126953125, + "t": 696.3524373372396, + "r": 314.15671793619794, + "b": 681.9230041503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 18, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 19, + "bbox": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "19" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 19, + "bbox": { + "l": 114.16192626953125, + "t": 531.262715657552, + "r": 141.64535522460938, + "b": 517.6820678710938, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Atom" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 19, + "bbox": { + "l": 114.16192626953125, + "t": 494.34035237630206, + "r": 156.866943359375, + "b": 481.18410237630206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Electron" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 19, + "bbox": { + "l": 114.16192626953125, + "t": 456.14479573567706, + "r": 131.92045084635416, + "b": 444.26169840494794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "lon" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 19, + "bbox": { + "l": 114.16192626953125, + "t": 420.91998291015625, + "r": 159.82670084635416, + "b": 407.76373291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Molecule" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 20, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.398193359375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 20, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 21, + "bbox": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 385.1907958984375, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "text": "07 This question is about silicon and compounds of silicon." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 21, + "bbox": { + "l": 50.31581115722656, + "t": 731.152842203776, + "r": 171.2428995768229, + "b": 703.1427612304688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "07.1 and silicon." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 21, + "bbox": { + "l": 48.62452697753906, + "t": 422.19317626953125, + "r": 305.7002766927083, + "b": 406.06614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "07.2 Aluminium also reduces silicon dioxide." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 21, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 22, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 22, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 23, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 23, + "bbox": { + "l": 268.491943359375, + "t": 701.4451802571615, + "r": 313.3110758463542, + "b": 688.2889302571615, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 23, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 281.59942626953125, + "t": 813.4855066935221, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 116.69886271158855, + "t": 723.9381306966146, + "r": 238.4715779622396, + "b": 712.4794616699219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "thestrengthoftheacid" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 114.16192626953125, + "t": 706.113525390625, + "r": 266.8006591796875, + "b": 692.957275390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the concentration of the acid." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 24, + "bbox": { + "l": 269.7604166666667, + "t": 378.90484619140625, + "r": 311.6197916666667, + "b": 365.74859619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 24, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "26" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 26, + "bbox": { + "l": 265.5321858723958, + "t": 618.2637329101562, + "r": 315.84800211588544, + "b": 605.1074829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 26, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 27, + "bbox": { + "l": 282.445068359375, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 28, + "bbox": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "29" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 29, + "bbox": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "30" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 541.2121175130209, + "t": 786.32421875, + "r": 580.5345458984375, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 30, + "bbox": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "31" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 31, + "bbox": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 32, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "32" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 32, + "bbox": { + "l": 54.54403177897135, + "t": 162.88771565755212, + "r": 134.03455607096353, + "b": 153.12660725911462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Copyrightinformation" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 32, + "bbox": { + "l": 173.77982584635416, + "t": 774.8655446370443, + "r": 403.7949625651042, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "There are no questions printed on this page" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 32, + "bbox": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8462/1H" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 38.028892517089844, + "t": 797.4698028564453, + "r": 168.19972229003906, + "b": 750.2145767211914, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 41.59428787231445, + "t": 53.4034423828125, + "r": 246.23011779785156, + "b": 17.48321533203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 500.0463562011719, + "t": 546.2381591796875, + "r": 543.3062133789062, + "b": 493.0670166015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 43.85730743408203, + "t": 53.138671875, + "r": 99.28272247314453, + "b": 17.32171630859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 83.22163391113281, + "t": 775.5824356079102, + "r": 104.6264419555664, + "b": 759.376838684082, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 82.88858032226562, + "t": 490.4773864746094, + "r": 103.99593353271484, + "b": 474.3543395996094, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 43.826263427734375, + "t": 53.1265869140625, + "r": 99.09163665771484, + "b": 17.47698974609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 216.1488037109375, + "t": 687.8902130126953, + "r": 364.1007385253906, + "b": 529.9866638183594, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 43.824642181396484, + "t": 53.1064453125, + "r": 99.16098022460938, + "b": 17.65423583984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 545.0658569335938, + "t": 516.5293884277344, + "r": 576.5323486328125, + "b": 477.6912536621094, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 43.76749038696289, + "t": 53.12872314453125, + "r": 99.13385772705078, + "b": 17.51544189453125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 84.31061553955078, + "t": 713.8152923583984, + "r": 498.6824645996094, + "b": 367.89630126953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 43.6757698059082, + "t": 53.302734375, + "r": 99.16030883789062, + "b": 17.4625244140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 43.825653076171875, + "t": 53.16912841796875, + "r": 99.22120666503906, + "b": 17.67669677734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 39.997745513916016, + "t": 788.6085472106934, + "r": 540.5895385742188, + "b": 76.569580078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 43.730838775634766, + "t": 53.16070556640625, + "r": 99.11856842041016, + "b": 17.56536865234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 148.96104431152344, + "t": 699.4140472412109, + "r": 431.3801574707031, + "b": 511.32061767578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 43.72150421142578, + "t": 53.21575927734375, + "r": 99.02352142333984, + "b": 17.614990234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 545.0675048828125, + "t": 241.86834716796875, + "r": 577.0537719726562, + "b": 200.44451904296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 183.67413330078125, + "t": 689.0947418212891, + "r": 395.67596435546875, + "b": 583.9583435058594, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 43.66802215576172, + "t": 53.22222900390625, + "r": 99.1289291381836, + "b": 17.5638427734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 43.81427001953125, + "t": 53.1534423828125, + "r": 99.220947265625, + "b": 17.87664794921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 204.51419067382812, + "t": 716.3077774047852, + "r": 373.9934387207031, + "b": 569.1023864746094, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 43.833866119384766, + "t": 53.0880126953125, + "r": 99.1875991821289, + "b": 17.359130859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 544.8119506835938, + "t": 529.9595642089844, + "r": 576.8878173828125, + "b": 489.5596923828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 43.73081970214844, + "t": 53.15118408203125, + "r": 99.1497802734375, + "b": 17.478515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 43.679386138916016, + "t": 53.180908203125, + "r": 99.15983581542969, + "b": 17.7747802734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 46.86721420288086, + "t": 776.192756652832, + "r": 104.57872772216797, + "b": 759.2460327148438, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 43.66917419433594, + "t": 53.17962646484375, + "r": 99.1082534790039, + "b": 17.5198974609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 210.0513153076172, + "t": 557.4714965820312, + "r": 371.6581726074219, + "b": 505.3802490234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 544.9921875, + "t": 168.60968017578125, + "r": 577.043212890625, + "b": 127.175048828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 43.66910934448242, + "t": 53.190185546875, + "r": 99.1316909790039, + "b": 17.5001220703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 82.45284271240234, + "t": 516.9572143554688, + "r": 104.8023681640625, + "b": 500.1972351074219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 43.7761116027832, + "t": 53.252685546875, + "r": 99.26835632324219, + "b": 17.78460693359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 544.7325439453125, + "t": 150.69403076171875, + "r": 577.20947265625, + "b": 109.1588134765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 39.47840118408203, + "t": 788.3730697631836, + "r": 539.8247680664062, + "b": 75.8057861328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 43.725730895996094, + "t": 53.2596435546875, + "r": 99.10089874267578, + "b": 17.6256103515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 43.847145080566406, + "t": 53.126220703125, + "r": 99.17255401611328, + "b": 17.7830810546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 43.71705627441406, + "t": 53.154052734375, + "r": 99.15788269042969, + "b": 17.366455078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 545.0584716796875, + "t": 282.157958984375, + "r": 576.5506591796875, + "b": 241.53350830078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 43.726165771484375, + "t": 53.06036376953125, + "r": 99.18004608154297, + "b": 17.6517333984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 43.74374771118164, + "t": 53.08709716796875, + "r": 99.16704559326172, + "b": 17.24615478515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 82.2315444946289, + "t": 748.2027435302734, + "r": 104.81997680664062, + "b": 731.6419372558594, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 43.73017120361328, + "t": 53.1356201171875, + "r": 99.146728515625, + "b": 17.383056640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 205.07598876953125, + "t": 675.6852722167969, + "r": 375.23626708984375, + "b": 558.8597717285156, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 545.0231323242188, + "t": 145.28521728515625, + "r": 577.076171875, + "b": 104.4761962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 81.33708953857422, + "t": 748.4152221679688, + "r": 104.49987030029297, + "b": 731.7340087890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 46.28067398071289, + "t": 448.952392578125, + "r": 105.23295593261719, + "b": 431.4825134277344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 43.59077835083008, + "t": 53.1778564453125, + "r": 99.12206268310547, + "b": 17.450927734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 46.18698501586914, + "t": 776.3649291992188, + "r": 105.48291778564453, + "b": 758.8308334350586, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 43.78736114501953, + "t": 53.08837890625, + "r": 99.23674011230469, + "b": 17.3798828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 99.21434020996094, + "t": 594.9752044677734, + "r": 436.32781982421875, + "b": 363.9990539550781, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 46.077030181884766, + "t": 338.9711608886719, + "r": 105.3624267578125, + "b": 321.97808837890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 43.590415954589844, + "t": 53.24151611328125, + "r": 99.1473388671875, + "b": 17.32464599609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 545.11279296875, + "t": 682.5220031738281, + "r": 577.2296142578125, + "b": 641.0832061767578, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 43.74171447753906, + "t": 53.149169921875, + "r": 99.22322845458984, + "b": 17.59033203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 43.53289794921875, + "t": 53.03009033203125, + "r": 99.4490737915039, + "b": 16.610595703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 43.74699020385742, + "t": 53.18353271484375, + "r": 99.3206787109375, + "b": 17.10015869140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 43.7423095703125, + "t": 53.17816162109375, + "r": 99.29827880859375, + "b": 17.1097412109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 43.725128173828125, + "t": 53.1527099609375, + "r": 99.40816497802734, + "b": 17.32061767578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 348.2997131347656, + "t": 71.1689453125, + "r": 526.5169067382812, + "b": 35.192138671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 1, + "bbox": { + "l": 443.3713684082031, + "t": 396.29754638671875, + "r": 544.0729370117188, + "b": 194.6727294921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + } + ], + "tables": [], + "stats": { + "n_questions": 8, + "n_parts": 42, + "marks_parts_known": 42, + "marks_sum": 91, + "marks_check": { + "sum": 91, + "expected_max": 100, + "pct": 91.0 + }, + "gemma_answer_regions": 0, + "gemma_marks_filled": 0, + "gemma_marks_gapfilled": 0, + "n_data_tables": 0, + "n_furniture_tables": 1, + "table_sources": {}, + "table_pages": [], + "region_type_counts": { + "context_caption": 5, + "context_data": 1, + "context_figure": 61, + "furniture": 66, + "heading": 16, + "instruction": 24, + "mcq_option": 19 + } + }, + "coverage": { + "coverage_pct": 64.3, + "recovered": 27, + "total": 42, + "missed": [ + "02.2", + "02.4", + "04.1", + "08.1", + "08.4", + "09.1", + "09.2", + "09.3", + "10.1", + "10.2", + "10.3", + "11.1", + "11.2", + "11.3", + "11.4" + ], + "source": "builtin-physics-gt" + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/template.json b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/template.json new file mode 100644 index 0000000..b04649e --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/template.json @@ -0,0 +1,4256 @@ +{ + "meta": { + "schema": "exam-template/first-pass/v1", + "board": "aqa", + "paper_code": "8462/1", + "source_pdf": "samples/b1/aqa-chemistry-8462-1h-2022jun.pdf", + "n_pages": 32, + "coord_origin": "BOTTOMLEFT", + "units": "pdf_points", + "generated_at": "2026-06-08T01:49:03", + "ui_principle": "directional limits = draggable axis-locked lines; object footprints = boxes", + "confirmed": false, + "confirmed_by": null, + "confirmed_at": null + }, + "margins": [ + { + "edge": "left", + "axis": "x", + "value": 46.3, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "right", + "axis": "x", + "value": 543.3, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 2 + }, + { + "edge": "bottom", + "axis": "y", + "value": 136.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 2 + }, + { + "edge": "top", + "axis": "y", + "value": 775.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "bottom", + "axis": "y", + "value": 477.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "bottom", + "axis": "y", + "value": 367.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "top", + "axis": "y", + "value": 788.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "bottom", + "axis": "y", + "value": 76.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "bottom", + "axis": "y", + "value": 280.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "bottom", + "axis": "y", + "value": 489.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "bottom", + "axis": "y", + "value": 512.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "top", + "axis": "y", + "value": 746.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "bottom", + "axis": "y", + "value": 151.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "top", + "axis": "y", + "value": 788.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "bottom", + "axis": "y", + "value": 241.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "bottom", + "axis": "y", + "value": 164.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "bottom", + "axis": "y", + "value": 194.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "bottom", + "axis": "y", + "value": 243.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "bottom", + "axis": "y", + "value": 550.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "bottom", + "axis": "y", + "value": 33.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + } + ], + "pages": { + "1": { + "role": "cover", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 467.6410725911458, + "t": 33.87156168619788, + "r": 545.8631591796875, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 38.028892517089844, + "t": 797.4698028564453, + "r": 168.19972229003906, + "b": 750.2145767211914, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 41.59428787231445, + "t": 53.4034423828125, + "r": 246.23011779785156, + "b": 17.48321533203125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 500.0463562011719, + "t": 546.2381591796875, + "r": 543.3062133789062, + "b": 493.0670166015625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "2": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.1", + "question": "01", + "y_start": 562.2, + "y_end": 394.6, + "label_box": { + "l": 49.04734802246094, + "t": 562.2435709635417, + "r": 376.3115234375, + "b": 546.1165568033855, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 562.2, + "r": 543.3, + "b": 394.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.2", + "question": "01", + "y_start": 394.6, + "y_end": 253.7, + "label_box": { + "l": 48.62452697753906, + "t": 394.60748291015625, + "r": 103.16855875651042, + "b": 378.90484619140625, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 394.6, + "r": 543.3, + "b": 253.7, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.3", + "question": "01", + "y_start": 253.7, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 253.70827229817712, + "r": 103.16855875651042, + "b": 237.58127848307288, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 253.7, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 293.4384358723958, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.9573567708334, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.85730743408203, + "t": 53.138671875, + "r": 99.28272247314453, + "b": 17.32171630859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "3": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.4", + "question": "01", + "y_start": 775.7, + "y_end": 490.1, + "label_box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 775.7, + "r": 543.3, + "b": 490.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.5", + "question": "01", + "y_start": 490.1, + "y_end": 202.4, + "label_box": { + "l": 49.47016906738281, + "t": 490.09637451171875, + "r": 101.9000956217448, + "b": 475.24257405598956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 490.1, + "r": 543.3, + "b": 202.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.6", + "question": "01", + "y_start": 202.4, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 202.35646565755212, + "r": 101.9000956217448, + "b": 187.92702229817712, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 202.4, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 286.25046793619794, + "t": 809.6659495035807, + "r": 291.7471516927083, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.826263427734375, + "t": 53.1265869140625, + "r": 99.09163665771484, + "b": 17.47698974609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 216.1488037109375, + "t": 687.8902130126953, + "r": 364.1007385253906, + "b": 529.9866638183594, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "4": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.7", + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 776.1387329101562, + "r": 104.01420084635417, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 776.1, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 23.68609619140625, + "r": 78.22206115722656, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.824642181396484, + "t": 53.1064453125, + "r": 99.16098022460938, + "b": 17.65423583984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.0658569335938, + "t": 516.5293884277344, + "r": 576.5323486328125, + "b": 477.6912536621094, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "5": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.1", + "question": "02", + "y_start": 626.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 626.3272298177084, + "r": 103.5913798014323, + "b": 610.2002156575521, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 626.3, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 79.91335042317708, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.76749038696289, + "t": 53.12872314453125, + "r": 99.13385772705078, + "b": 17.51544189453125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "6": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 802.4512329101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.9573567708334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.6757698059082, + "t": 53.302734375, + "r": 99.16030883789062, + "b": 17.4625244140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "7": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 358.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.3", + "question": "02", + "y_start": 358.1, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 358.10947672526044, + "r": 102.32291666666667, + "b": 341.98248291015625, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 358.1, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 102.32291666666667, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.825653076171875, + "t": 53.16912841796875, + "r": 99.22120666503906, + "b": 17.67669677734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "8": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 50.31581115722656, + "t": 774.8655446370443, + "r": 90.48389689127605, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 50.31581115722656, + "t": 774.8655446370443, + "r": 90.48389689127605, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.730838775634766, + "t": 53.16070556640625, + "r": 99.11856842041016, + "b": 17.56536865234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "9": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 436.6, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.5", + "question": "02", + "y_start": 436.6, + "y_end": 304.6, + "label_box": { + "l": 49.47016906738281, + "t": 436.62261962890625, + "r": 101.47727457682292, + "b": 421.76877848307294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 436.6, + "r": 543.3, + "b": 304.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.6", + "question": "02", + "y_start": 304.6, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 304.6357218424479, + "r": 101.9000956217448, + "b": 290.63067626953125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 304.6, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.72150421142578, + "t": 53.21575927734375, + "r": 99.02352142333984, + "b": 17.614990234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 148.96104431152344, + "t": 699.4140472412109, + "r": 431.3801574707031, + "b": 511.32061767578125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0675048828125, + "t": 241.86834716796875, + "r": 577.0537719726562, + "b": 200.44451904296875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "10": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.1", + "question": "03", + "y_start": 544.4, + "y_end": 310.6, + "label_box": { + "l": 49.89299011230469, + "t": 544.418965657552, + "r": 345.8683675130208, + "b": 529.1407470703125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 544.4, + "r": 543.3, + "b": 310.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.2", + "question": "03", + "y_start": 310.6, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 310.5772501627604, + "r": 364.0497233072917, + "b": 294.4502156575521, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 310.6, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.86789957682294, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 78.64488220214844, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.66802215576172, + "t": 53.22222900390625, + "r": 99.1289291381836, + "b": 17.5638427734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 183.67413330078125, + "t": 689.0947418212891, + "r": 395.67596435546875, + "b": 583.9583435058594, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "11": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 541.0, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.3", + "question": "03", + "y_start": 541.0, + "y_end": 294.9, + "label_box": { + "l": 47.77887980143229, + "t": 541.0238037109375, + "r": 102.32291666666667, + "b": 525.745585123698, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 541.0, + "r": 543.3, + "b": 294.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.4", + "question": "03", + "y_start": 294.9, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 294.8746134440104, + "r": 102.32291666666667, + "b": 280.4451700846354, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 294.9, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 284.1363525390625, + "t": 812.2123209635416, + "r": 293.86126708984375, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.81427001953125, + "t": 53.1534423828125, + "r": 99.220947265625, + "b": 17.87664794921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 204.51419067382812, + "t": 716.3077774047852, + "r": 373.9934387207031, + "b": 569.1023864746094, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "12": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.5", + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 775.3, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.86789957682294, + "t": 813.909901936849, + "r": 295.97536214192706, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.11049397786462, + "r": 78.64488220214844, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.833866119384766, + "t": 53.0880126953125, + "r": 99.1875991821289, + "b": 17.359130859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 544.8119506835938, + "t": 529.9595642089844, + "r": 576.8878173828125, + "b": 489.5596923828125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "13": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.2", + "question": "04", + "y_start": 483.7, + "y_end": 351.3, + "label_box": { + "l": 48.201700846354164, + "t": 483.73044840494794, + "r": 108.24242146809895, + "b": 466.75465901692706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 483.7, + "r": 543.3, + "b": 351.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.3", + "question": "04", + "y_start": 351.3, + "y_end": 232.9, + "label_box": { + "l": 49.89299011230469, + "t": 351.31919352213544, + "r": 101.9000956217448, + "b": 336.46535237630206, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 351.3, + "r": 543.3, + "b": 232.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.4", + "question": "04", + "y_start": 232.9, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 232.91290283203125, + "r": 108.24242146809895, + "b": 218.48350016276038, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 232.9, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.441151936849, + "r": 79.06770833333333, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73081970214844, + "t": 53.15118408203125, + "r": 99.1497802734375, + "b": 17.478515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "14": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 656.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.5", + "question": "04", + "y_start": 656.9, + "y_end": 542.3, + "label_box": { + "l": 49.47016906738281, + "t": 656.8836873372396, + "r": 103.5913798014323, + "b": 642.4542643229166, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 656.9, + "r": 543.3, + "b": 542.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.6", + "question": "04", + "y_start": 542.3, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 542.2969970703125, + "r": 101.9000956217448, + "b": 527.4431762695312, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 542.3, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.679386138916016, + "t": 53.180908203125, + "r": 99.15983581542969, + "b": 17.7747802734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "15": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.7", + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 104.85984293619792, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 775.3, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.66917419433594, + "t": 53.17962646484375, + "r": 99.1082534790039, + "b": 17.5198974609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 210.0513153076172, + "t": 557.4714965820312, + "r": 371.6581726074219, + "b": 505.3802490234375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.9921875, + "t": 168.60968017578125, + "r": 577.043212890625, + "b": 127.175048828125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "16": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.1", + "question": "05", + "y_start": 653.5, + "y_end": 483.7, + "label_box": { + "l": 49.47016906738281, + "t": 653.488525390625, + "r": 101.47727457682292, + "b": 639.0591023763021, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 653.5, + "r": 543.3, + "b": 483.7, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.2", + "question": "05", + "y_start": 483.7, + "y_end": 249.0, + "label_box": { + "l": 48.62452697753906, + "t": 483.73044840494794, + "r": 108.66524251302083, + "b": 467.17905680338544, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 483.7, + "r": 543.3, + "b": 249.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.3", + "question": "05", + "y_start": 249.0, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 249.03993733723962, + "r": 106.55113728841145, + "b": 233.33730061848962, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 249.0, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.06770833333333, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.66910934448242, + "t": 53.190185546875, + "r": 99.1316909790039, + "b": 17.5001220703125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "17": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 746.0, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.4", + "question": "05", + "y_start": 746.0, + "y_end": 515.1, + "label_box": { + "l": 50.31581115722656, + "t": 746.0066731770834, + "r": 83.29592386881511, + "b": 732.426035563151, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 746.0, + "r": 543.3, + "b": 515.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.5", + "question": "05", + "y_start": 515.1, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 515.1357014973958, + "r": 101.9000956217448, + "b": 500.70627848307294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 515.1, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.86789957682294, + "t": 813.909901936849, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7761116027832, + "t": 53.252685546875, + "r": 99.26835632324219, + "b": 17.78460693359375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 544.7325439453125, + "t": 150.69403076171875, + "r": 577.20947265625, + "b": 109.1588134765625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "18": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.1", + "question": "06", + "y_start": 439.6, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 439.59336344401044, + "r": 102.74573771158855, + "b": 423.89072672526044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 439.6, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 775.2899424235026, + "r": 79.06770833333333, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.725730895996094, + "t": 53.2596435546875, + "r": 99.10089874267578, + "b": 17.6256103515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "19": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 747.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.2", + "question": "06", + "y_start": 747.7, + "y_end": 614.0, + "label_box": { + "l": 49.47016906738281, + "t": 747.7042541503906, + "r": 101.47727457682292, + "b": 732.8504231770834, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 747.7, + "r": 543.3, + "b": 614.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.3", + "question": "06", + "y_start": 614.0, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 614.019775390625, + "r": 101.47727457682292, + "b": 600.0147298177084, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 614.0, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.847145080566406, + "t": 53.126220703125, + "r": 99.17255401611328, + "b": 17.7830810546875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "20": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 697.2, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.4", + "question": "06", + "y_start": 697.2, + "y_end": 552.5, + "label_box": { + "l": 49.47016906738281, + "t": 697.2012329101562, + "r": 101.9000956217448, + "b": 682.347401936849, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 697.2, + "r": 543.3, + "b": 552.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.5", + "question": "06", + "y_start": 552.5, + "y_end": 446.8, + "label_box": { + "l": 48.62452697753906, + "t": 552.4824829101562, + "r": 101.47727457682292, + "b": 538.0530395507812, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 552.5, + "r": 543.3, + "b": 446.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.6", + "question": "06", + "y_start": 446.8, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 446.80808512369794, + "r": 83.29592386881511, + "b": 433.22743733723956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 446.8, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.398193359375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.1336924235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.71705627441406, + "t": 53.154052734375, + "r": 99.15788269042969, + "b": 17.366455078125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.0584716796875, + "t": 282.157958984375, + "r": 576.5506591796875, + "b": 241.53350830078125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "21": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 731.2, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.1", + "question": "07", + "y_start": 731.2, + "y_end": 422.2, + "label_box": { + "l": 50.31581115722656, + "t": 731.152842203776, + "r": 171.2428995768229, + "b": 703.1427612304688, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 731.2, + "r": 543.3, + "b": 422.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.2", + "question": "07", + "y_start": 422.2, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 422.19317626953125, + "r": 305.7002766927083, + "b": 406.06614176432294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 422.2, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 61.73200480143229, + "t": 23.26169840494788, + "r": 65.11458333333333, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.726165771484375, + "t": 53.06036376953125, + "r": 99.18004608154297, + "b": 17.6517333984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "22": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 670.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.3", + "question": "07", + "y_start": 670.9, + "y_end": 525.3, + "label_box": { + "l": 49.04734802246094, + "t": 670.8887329101562, + "r": 102.32291666666667, + "b": 655.6105143229166, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 670.9, + "r": 543.3, + "b": 525.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.4", + "question": "07", + "y_start": 525.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 525.3211873372395, + "r": 102.74573771158855, + "b": 509.1941731770833, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 525.3, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74374771118164, + "t": 53.08709716796875, + "r": 99.16704559326172, + "b": 17.24615478515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "23": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 746.4, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.5", + "question": "07", + "y_start": 746.4, + "y_end": 520.2, + "label_box": { + "l": 49.47016906738281, + "t": 746.4310709635416, + "r": 101.9000956217448, + "b": 732.0016377766927, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 746.4, + "r": 543.3, + "b": 520.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.6", + "question": "07", + "y_start": 520.2, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 520.2284545898438, + "r": 101.9000956217448, + "b": 504.1014404296875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 520.2, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 63.84611511230469, + "t": 24.95928955078125, + "r": 79.06770833333333, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73017120361328, + "t": 53.1356201171875, + "r": 99.146728515625, + "b": 17.383056640625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 205.07598876953125, + "t": 675.6852722167969, + "r": 375.23626708984375, + "b": 558.8597717285156, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0231323242188, + "t": 145.28521728515625, + "r": 577.076171875, + "b": 104.4761962890625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "24": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.2", + "question": "08", + "y_start": 447.7, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 447.65688069661456, + "r": 101.9000956217448, + "b": 432.80303955078125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 447.7, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.4855066935221, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.8655446370443, + "r": 79.06770833333333, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.4805908203125, + "t": 788.4461924235026, + "r": 580.9573567708334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.59077835083008, + "t": 53.1778564453125, + "r": 99.12206268310547, + "b": 17.450927734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 81.33708953857422, + "t": 748.4152221679688, + "r": 104.49987030029297, + "b": 731.7340087890625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "25": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.3", + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 774.8655446370443, + "r": 101.054443359375, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 774.9, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.11049397786462, + "r": 78.22206115722656, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.78736114501953, + "t": 53.08837890625, + "r": 99.23674011230469, + "b": 17.3798828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "26": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 63.42329406738281, + "t": 25.80808512369788, + "r": 79.4905293782552, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.590415954589844, + "t": 53.24151611328125, + "r": 99.1473388671875, + "b": 17.32464599609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 99.21434020996094, + "t": 594.9752044677734, + "r": 436.32781982421875, + "b": 363.9990539550781, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 46.077030181884766, + "t": 338.9711608886719, + "r": 105.3624267578125, + "b": 321.97808837890625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "27": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "08.5", + "question": "08", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 46.3, + "t": 774.9, + "r": 543.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74171447753906, + "t": 53.149169921875, + "r": 99.22322845458984, + "b": 17.59033203125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 545.11279296875, + "t": 682.5220031738281, + "r": 577.2296142578125, + "b": 641.0832061767578, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "28": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.75899251302083, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 542.0577392578125, + "t": 788.4461924235026, + "r": 581.3802083333334, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.53289794921875, + "t": 53.03009033203125, + "r": 99.4490737915039, + "b": 16.610595703125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "29": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.04072062174479, + "t": 24.95928955078125, + "r": 66.80586751302083, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 71.87973531087239, + "t": 25.38368733723962, + "r": 79.06770833333333, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74699020385742, + "t": 53.18353271484375, + "r": 99.3206787109375, + "b": 17.10015869140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "30": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 541.2121175130209, + "t": 786.32421875, + "r": 580.5345458984375, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7423095703125, + "t": 53.17816162109375, + "r": 99.29827880859375, + "b": 17.1097412109375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "31": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.95928955078125, + "r": 66.38304646809895, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.725128173828125, + "t": 53.1527099609375, + "r": 99.40816497802734, + "b": 17.32061767578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "32": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 541.2121175130209, + "t": 786.32421875, + "r": 580.5345458984375, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 348.2997131347656, + "t": 71.1689453125, + "r": 526.5169067382812, + "b": 35.192138671875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/validate.json b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/validate.json new file mode 100644 index 0000000..fb81bef --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-chemistry-8462-1h-2022jun/validate.json @@ -0,0 +1,138 @@ +{ + "paper_code": "8462/1", + "board": "aqa", + "summary": { + "worst_severity": "warn", + "needs_priority_review": true, + "n_flags": 3, + "marks_sum": 91, + "official_max": 100, + "parts_total": 42, + "parts_low_conf": 0, + "questions_expected": 8, + "questions_recovered": 8 + }, + "flags": [ + "[warn] C1_marks_sum: marks sum 91 below official max 100 (-9) \u2014 missing parts or unread marks", + "[warn] C4_subpart_seq: sub-part gaps: Q02 missing ['2', '4'], Q08 missing ['4']", + "[warn] C5_coverage: 64.3% vs GT (27/42); missed ['02.2', '02.4', '04.1', '08.1', '08.4', '09.1', '09.2', '09.3', '10.1', '10.2']" + ], + "checks": [ + { + "id": "C1_marks_sum", + "severity": "warn", + "status": "under", + "detail": "marks sum 91 below official max 100 (-9) \u2014 missing parts or unread marks" + }, + { + "id": "C2_part_marks", + "severity": "info", + "status": "ok", + "detail": "every part carries a plausible mark" + }, + { + "id": "C3_question_seq", + "severity": "info", + "status": "ok", + "detail": "questions 1-8 contiguous" + }, + { + "id": "C4_subpart_seq", + "severity": "warn", + "status": "gap", + "detail": "sub-part gaps: Q02 missing ['2', '4'], Q08 missing ['4']" + }, + { + "id": "C5_coverage", + "severity": "warn", + "status": "missed", + "detail": "64.3% vs GT (27/42); missed ['02.2', '02.4', '04.1', '08.1', '08.4', '09.1', '09.2', '09.3', '10.1', '10.2']" + } + ], + "part_confidence": { + "01.1": "medium", + "01.2": "medium", + "01.3": "medium", + "01.4": "medium", + "01.5": "medium", + "01.6": "medium", + "01.7": "medium", + "02.1": "medium", + "02.3": "medium", + "02.5": "medium", + "02.6": "medium", + "03.1": "medium", + "03.2": "medium", + "03.3": "medium", + "03.4": "medium", + "03.5": "medium", + "04.2": "medium", + "04.3": "medium", + "04.4": "medium", + "04.5": "medium", + "04.6": "medium", + "04.7": "medium", + "05.1": "medium", + "05.2": "medium", + "05.3": "medium", + "05.4": "medium", + "05.5": "medium", + "06.1": "medium", + "06.2": "medium", + "06.3": "medium", + "06.4": "medium", + "06.5": "medium", + "06.6": "medium", + "07.1": "medium", + "07.2": "medium", + "07.3": "medium", + "07.4": "medium", + "07.5": "medium", + "07.6": "medium", + "08.2": "medium", + "08.3": "medium", + "08.5": "medium" + }, + "question_sequence": [ + { + "n": 1, + "label": "01", + "recovered": true + }, + { + "n": 2, + "label": "02", + "recovered": true + }, + { + "n": 3, + "label": "03", + "recovered": true + }, + { + "n": 4, + "label": "04", + "recovered": true + }, + { + "n": 5, + "label": "05", + "recovered": true + }, + { + "n": 6, + "label": "06", + "recovered": true + }, + { + "n": 7, + "label": "07", + "recovered": true + }, + { + "n": 8, + "label": "08", + "recovered": true + } + ] +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/bands.json b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/bands.json new file mode 100644 index 0000000..3879ade --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/bands.json @@ -0,0 +1,439 @@ +{ + "board": "aqa", + "paper_code": null, + "coord_origin": "BOTTOMLEFT", + "pages": { + "3": { + "main": [ + { + "question": "01", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "01.1", + "question": "01", + "y_start": 745.6, + "y_end": 440.4 + }, + { + "label": "01.2", + "question": "01", + "y_start": 440.4, + "y_end": 0.0 + } + ] + }, + "4": { + "main": [ + { + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.3", + "question": "01", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "5": { + "main": [ + { + "question": "01", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.4", + "question": "01", + "y_start": 775.3, + "y_end": 594.9 + }, + { + "label": "01.5", + "question": "01", + "y_start": 594.9, + "y_end": 279.2 + }, + { + "label": "01.6", + "question": "01", + "y_start": 279.2, + "y_end": 0.0 + } + ] + }, + "6": { + "main": [ + { + "question": "01", + "y_start": 521.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.7", + "question": "01", + "y_start": 521.9, + "y_end": 345.0 + }, + { + "label": "01.8", + "question": "01", + "y_start": 345.0, + "y_end": 0.0 + } + ] + }, + "8": { + "main": [ + { + "question": "02", + "y_start": 350.0, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "02.2", + "question": "02", + "y_start": 350.0, + "y_end": 232.1 + }, + { + "label": "02.3", + "question": "02", + "y_start": 232.1, + "y_end": 0.0 + } + ] + }, + "9": { + "main": [ + { + "question": "02", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.4", + "question": "02", + "y_start": 775.7, + "y_end": 633.1 + }, + { + "label": "02.5", + "question": "02", + "y_start": 633.1, + "y_end": 0.0 + } + ] + }, + "10": { + "main": [ + { + "question": "02", + "y_start": 736.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.6", + "question": "02", + "y_start": 736.7, + "y_end": 0.0 + } + ] + }, + "11": { + "main": [ + { + "question": "02", + "y_start": 218.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.7", + "question": "02", + "y_start": 218.9, + "y_end": 0.0 + } + ] + }, + "12": { + "main": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "03.2", + "question": "03", + "y_start": 214.2, + "y_end": 0.0 + } + ] + }, + "13": { + "main": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.3", + "question": "03", + "y_start": 774.9, + "y_end": 618.7 + }, + { + "label": "03.4", + "question": "03", + "y_start": 618.7, + "y_end": 0.0 + } + ] + }, + "14": { + "main": [ + { + "question": "03", + "y_start": 189.6, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.5", + "question": "03", + "y_start": 189.6, + "y_end": 0.0 + } + ] + }, + "15": { + "main": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.6", + "question": "03", + "y_start": 775.3, + "y_end": 478.6 + }, + { + "label": "03.7", + "question": "03", + "y_start": 478.6, + "y_end": 0.0 + } + ] + }, + "16": { + "main": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "04.2", + "question": "04", + "y_start": 603.4, + "y_end": 0.0 + } + ] + }, + "17": { + "main": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.3", + "question": "04", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "19": { + "main": [ + { + "question": "04", + "y_start": 406.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.4", + "question": "04", + "y_start": 406.1, + "y_end": 196.0 + }, + { + "label": "04.5", + "question": "04", + "y_start": 196.0, + "y_end": 0.0 + } + ] + }, + "23": { + "main": [ + { + "question": "05", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.2", + "question": "05", + "y_start": 775.7, + "y_end": 541.9 + }, + { + "label": "05.3", + "question": "05", + "y_start": 541.9, + "y_end": 322.5 + }, + { + "label": "05.4", + "question": "05", + "y_start": 322.5, + "y_end": 0.0 + } + ] + }, + "24": { + "main": [ + { + "question": "05", + "y_start": 351.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.5", + "question": "05", + "y_start": 351.3, + "y_end": 0.0 + } + ] + }, + "25": { + "main": [ + { + "question": "05", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.6", + "question": "05", + "y_start": 774.4, + "y_end": 0.0 + } + ] + }, + "26": { + "main": [ + { + "question": "06", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.1", + "question": "06", + "y_start": 742.6, + "y_end": 612.7 + }, + { + "label": "06.2", + "question": "06", + "y_start": 612.7, + "y_end": 0.0 + } + ] + }, + "27": { + "main": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.3", + "question": "06", + "y_start": 774.9, + "y_end": 0.0 + } + ] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/furniture.json b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/furniture.json new file mode 100644 index 0000000..1d8a423 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/furniture.json @@ -0,0 +1 @@ +{"n_pages": 32, "freq_threshold": 0.4, "furniture_cells": {"3,1": 31, "3,32": 18, "12,34": 29, "21,1": 32, "24,32": 18}, "content_margins": {"content_x_band": {"x_left": 48.6, "x_right": 538.3}, "per_page": {"1": {"top": 799.2, "bottom": 12.2, "left": 36.8, "right": 545.0}, "2": {"top": 774.9, "bottom": 417.1, "left": 173.8, "right": 403.8}, "3": {"top": 774.9, "bottom": 58.1, "left": 49.0, "right": 538.3}, "4": {"top": 774.4, "bottom": 210.0, "left": 114.2, "right": 534.9}, "5": {"top": 774.9, "bottom": 56.8, "left": 47.8, "right": 538.7}, "6": {"top": 774.9, "bottom": 260.1, "left": 48.2, "right": 575.8}, "7": {"top": 775.3, "bottom": 58.1, "left": 49.9, "right": 537.8}, "8": {"top": 788.6, "bottom": 75.7, "left": 39.8, "right": 541.8}, "9": {"top": 774.9, "bottom": 58.1, "left": 49.5, "right": 538.3}, "10": {"top": 787.8, "bottom": 74.9, "left": 38.9, "right": 539.6}, "11": {"top": 774.0, "bottom": 57.2, "left": 48.6, "right": 575.8}, "12": {"top": 775.3, "bottom": 185.4, "left": 48.6, "right": 536.1}, "13": {"top": 788.3, "bottom": 58.1, "left": 40.0, "right": 538.7}, "14": {"top": 774.4, "bottom": 116.6, "left": 50.3, "right": 535.7}, "15": {"top": 774.9, "bottom": 57.2, "left": 48.6, "right": 575.3}, "16": {"top": 774.9, "bottom": 410.7, "left": 49.0, "right": 536.1}, "17": {"top": 775.3, "bottom": 57.2, "left": 113.7, "right": 538.7}, "18": {"top": 774.4, "bottom": 263.0, "left": 114.2, "right": 499.4}, "19": {"top": 789.3, "bottom": 58.1, "left": 38.3, "right": 584.8}, "20": {"top": 774.9, "bottom": 416.7, "left": 173.8, "right": 403.8}, "21": {"top": 774.0, "bottom": 57.2, "left": 50.3, "right": 538.3}, "22": {"top": 775.3, "bottom": 316.9, "left": 52.2, "right": 527.8}, "23": {"top": 774.9, "bottom": 57.2, "left": 49.5, "right": 539.1}, "24": {"top": 788.1, "bottom": 75.4, "left": 39.7, "right": 539.0}, "25": {"top": 748.6, "bottom": 57.2, "left": 113.7, "right": 576.1}, "26": {"top": 774.9, "bottom": 312.7, "left": 48.6, "right": 536.1}, "27": {"top": 748.6, "bottom": 103.0, "left": 113.7, "right": 575.8}, "28": {"top": 775.3, "bottom": 421.3, "left": 173.8, "right": 403.8}, "29": {"top": 788.9, "bottom": 745.6, "left": 54.5, "right": 580.5}, "30": {"top": 771.0, "bottom": 745.6, "left": 54.5, "right": 444.0}, "31": {"top": 788.9, "bottom": 745.6, "left": 54.5, "right": 580.5}, "32": {"top": 774.9, "bottom": 30.5, "left": 53.7, "right": 539.1}}}, "ab_test_figures": {"context_figure_before_mask": 55, "context_figure_after_mask": 22, "removed_as_furniture": 33, "removed_breakdown": {"cell 3,1": 31, "cell 3,32": 2}}, "text_furniture_removed": 118, "items": [{"page": 1, "kind": "text", "label": "text", "bbox": {"l": 36.785509745279946, "t": 789.7193756103516, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "text": "AQA", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "text": "Please write clearly in block capitals.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Centre number", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatenumber", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 653.488525390625, "r": 101.9000956217448, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Surname", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.389678955078125, "t": 628.8736165364584, "r": 120.08144124348958, "b": 614.4441731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Forename(s)", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 600.863525390625, "r": 155.59848022460938, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatesignature", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 166.16902669270834, "t": 587.2828776041666, "r": 296.82102457682294, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "text": "I declare this is my own work.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 41.859375, "t": 555.4532470703125, "r": 545.0174967447916, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "text": "GCSE H COMBINED SCIENCE: TRILOGY", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 40.16808573404948, "t": 481.60850016276044, "r": 160.6723429361979, "b": 445.53489176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Higher Tier Biology Paper 1H", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 398.00262451171875, "r": 92.17519124348958, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Materials", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 37.63115437825521, "t": 384.84637451171875, "r": 186.4644775390625, "b": 369.56817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "For this paper you must have:", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 370.41697184244794, "r": 83.71875, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a ruler", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.7452646891276, "t": 357.68511962890625, "r": 155.1756591796875, "b": 347.07521565755206, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a scientific calculator.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 39.32244110107422, "t": 331.37261962890625, "r": 108.66524251302083, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "text": "Instructions", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 319.06512451171875, "r": 231.28361002604166, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "text": "Use black ink or black ball-point pen.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 293.1770222981771, "r": 241.0085245768229, "b": 278.74761962890625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Fill in the boxes at the top of this pa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 306.7576700846354, "r": 242.6998087565104, "b": 291.4794718424479, "coord_origin": "BOTTOMLEFT"}, "text": "Pencil should only be used for drawing.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 278.74761962890625, "r": 269.7604166666667, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questions in the spaces provi", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 266.0157267252604, "r": 424.0904134114583, "b": 240.12762451171875, "coord_origin": "BOTTOMLEFT"}, "text": "If you need extra space for your answer(", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 239.70322672526038, "r": 430.0099283854167, "b": 215.51271565755212, "coord_origin": "BOTTOMLEFT"}, "text": "Do all rough work in this book. Cross th", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 214.23952229817712, "r": 356.4389241536458, "b": 201.08327229817712, "coord_origin": "BOTTOMLEFT"}, "text": "In all calculations,show clearly howyou ", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 39.32244110107422, "t": 187.50262451171875, "r": 106.12831624348958, "b": 176.04396565755212, "coord_origin": "BOTTOMLEFT"}, "text": "Information", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 173.92197672526038, "r": 245.23673502604166, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "text": "The maximum mark for this paper is 70.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 42.282196044921875, "t": 160.34136962890625, "r": 281.59942626953125, "b": 149.30710856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Themarksforquestionsareshowninbrackets.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 47.77887980143229, "t": 147.60951741536462, "r": 324.304443359375, "b": 135.30206298828125, "coord_origin": "BOTTOMLEFT"}, "text": "You are expected to use a calculator whe", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 135.30206298828125, "r": 475.6747233072917, "b": 122.14581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7You are reminded of the need for good E", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 238.8944091796875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "JUN228464B1H01", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 325.5729166666667, "t": 428.55910237630206, "r": 539.5208333333334, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Time allowed: 1 hour 15 minutes", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 315.42519124348956, "t": 20.71531168619788, "r": 367.4322916666667, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/E14", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 447.7684733072917, "t": 33.44716389973962, "r": 545.4403076171875, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "8464/B/1H", "furniture": true}, {"page": 2, "kind": "text", "label": "page_header", "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 183.92755126953125, "t": 440.44215901692706, "r": 394.070068359375, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 544.171875, "t": 790.1437733968099, "r": 583.9171142578125, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 2, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 3, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 81.1818135579427, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "01", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 367.4322916666667, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Bacteria can cause avarietyof diseases i", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 745.582285563151, "r": 99.78598022460938, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "01.1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 745.1578877766927, "r": 451.9966634114583, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "text": "What are two similarities between a bact", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 732.8504231770834, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 717.1478068033854, "r": 210.9881591796875, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (v) two boxes.", "furniture": false}, {"page": 3, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 677.6790568033854, "r": 250.7334187825521, "b": 665.3716023763021, "coord_origin": "BOTTOMLEFT"}, "text": "Both have a cell membrane.", "furniture": false}, {"page": 3, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 640.332275390625, "r": 217.7533162434896, "b": 628.8736165364584, "coord_origin": "BOTTOMLEFT"}, "text": "Bothhaveacell wall.", "furniture": false}, {"page": 3, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 603.8342895507812, "r": 217.7533162434896, "b": 590.2536417643229, "coord_origin": "BOTTOMLEFT"}, "text": "Both have a nucleus.", "furniture": false}, {"page": 3, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 566.0631306966145, "r": 219.4446004231771, "b": 552.4824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Both have cytoplasm.", "furniture": false}, {"page": 3, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 529.1407470703125, "r": 213.52508544921875, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "text": "Both have plasmids.", "furniture": false}, {"page": 3, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 440.44215901692706, "r": 390.2646484375, "b": 424.73952229817706, "coord_origin": "BOTTOMLEFT"}, "text": "01.2 Salmonella food poisoning is caused", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 413.70526123046875, "r": 353.0563557942708, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Give one symptom of salmonella food pois", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 387.39276123046875, "r": 370.8148600260417, "b": 373.81211344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Do not refer to vomiting or diarrhoea in", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 374.23651123046875, "r": 536.1382242838541, "b": 359.80706787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 257.5278523763021, "r": 391.1103108723958, "b": 243.52280680338538, "coord_origin": "BOTTOMLEFT"}, "text": "Question1continueson thenextpage", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 3, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 776.1387329101562, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "01.3", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 358.5530192057292, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "What is the name of the first antibiotic", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 761.7092946370443, "r": 534.8697916666666, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 644.1518351236979, "r": 468.0639241536458, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "text": "A child with a severe bacterial infectio", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 602.5611165364584, "r": 512.460205078125, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1 shows how the concentration of ", "furniture": false}, {"page": 4, "kind": "text", "label": "caption", "bbox": {"l": 301.89487711588544, "t": 565.214335123698, "r": 347.5596516927083, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 202.95454915364584, "t": 454.44720458984375, "r": 209.71968587239584, "b": 445.95928955078125, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 124.30965169270833, "t": 432.37864176432294, "r": 192.80680338541666, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Concentration", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 123.46400960286458, "t": 420.49558512369794, "r": 194.49810791015625, "b": 409.03692626953125, "coord_origin": "BOTTOMLEFT"}, "text": "oflivebacteria", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 408.18813069661456, "r": 190.69270833333334, "b": 395.45627848307294, "coord_origin": "BOTTOMLEFT"}, "text": "in the body in", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 395.88067626953125, "r": 191.5383504231771, "b": 383.99761962890625, "coord_origin": "BOTTOMLEFT"}, "text": "arbitrary units", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 202.95454915364584, "t": 397.57822672526044, "r": 209.71968587239584, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 323.88161214192706, "t": 274.92803955078125, "r": 331.06960042317706, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 379.2712809244792, "t": 275.3524373372396, "r": 387.7277425130208, "b": 264.7425740559896, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 493.8560384114583, "t": 274.92803955078125, "r": 500.6212158203125, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 337.41192626953125, "t": 263.4693806966146, "r": 401.258056640625, "b": 249.03993733723962, "coord_origin": "BOTTOMLEFT"}, "text": "Time in days", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 246.49355061848962, "r": 239.74005126953125, "b": 233.76169840494788, "coord_origin": "BOTTOMLEFT"}, "text": "Course of", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 233.76169840494788, "r": 238.8944091796875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "antibiotics", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 195.76656087239584, "t": 221.87864176432288, "r": 231.7064412434896, "b": 209.99558512369788, "coord_origin": "BOTTOMLEFT"}, "text": "started", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 4, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 5, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "01.4", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 524.7220458984375, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "text": "The concentration of live bacteria in th", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 735.8211873372396, "r": 239.74005126953125, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest one reason why.", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 723.0893351236979, "r": 535.7154134114584, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 594.9219970703125, "r": 103.5913798014323, "b": 579.643778483073, "coord_origin": "BOTTOMLEFT"}, "text": "01.5", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 593.6488037109375, "r": 286.25046793619794, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "text": "After 3 days of taking the antibiotic:", "furniture": false}, {"page": 5, "kind": "text", "label": "list_item", "bbox": {"l": 115.43039957682292, "t": 561.394775390625, "r": 216.90767415364584, "b": 549.0873209635417, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7thechildfeltbetter", "furniture": false}, {"page": 5, "kind": "text", "label": "list_item", "bbox": {"l": 113.73910522460938, "t": 543.1457926432292, "r": 332.76088460286456, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7there were still bacteria in the child'", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 510.04296875, "r": 256.65293375651044, "b": 497.73549397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Why did the child feel better?", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 497.31109619140625, "r": 536.1382242838541, "b": 482.88169352213544, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 482.88169352213544, "r": 200.8404337565104, "b": 468.45225016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (v) one box.", "furniture": false}, {"page": 5, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.43039957682292, "t": 441.71535237630206, "r": 339.9488525390625, "b": 430.68105061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Bacteriahadbecomeimmunetotheantibiotic.", "furniture": false}, {"page": 5, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 405.64174397786456, "r": 343.3314208984375, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "The child had becomeresistant to thebact", "furniture": false}, {"page": 5, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 368.71938069661456, "r": 356.4389241536458, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Therewerefewer toxins in the body than a", "furniture": false}, {"page": 5, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 279.1719767252604, "r": 486.6680908203125, "b": 263.4693806966146, "coord_origin": "BOTTOMLEFT"}, "text": "01.6 Suggest why doctors do not give ant", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 265.59136962890625, "r": 535.2926025390625, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 191.11551920572916, "t": 148.03391520182288, "r": 394.4928792317708, "b": 134.02886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Question1continuesonthenextpage", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 5, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 286.67327880859375, "t": 809.6659495035807, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 212.25663248697916, "t": 644.1518351236979, "r": 219.8674112955729, "b": 636.0883382161459, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 211.83380126953125, "t": 622.0832926432291, "r": 219.4446004231771, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 278.21685791015625, "t": 620.8100992838541, "r": 290.4786783854167, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "text": "00", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 275.7768351236979, "r": 563.1988525390625, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 6, "kind": "text", "label": "caption", "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 359.398681640625, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2 shows blood viewed using a micr", "furniture": false}, {"page": 6, "kind": "text", "label": "section_header", "bbox": {"l": 302.3177083333333, "t": 748.5530497233073, "r": 348.4053141276042, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 212.25663248697916, "t": 644.1518351236979, "r": 219.8674112955729, "b": 636.0883382161459, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 211.83380126953125, "t": 622.0832926432291, "r": 219.4446004231771, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 278.21685791015625, "t": 620.8100992838541, "r": 290.4786783854167, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "text": "00", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 521.926025390625, "r": 104.85984293619792, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "text": "01.7", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 521.5016276041667, "r": 368.2779134114583, "b": 508.3453776041667, "coord_origin": "BOTTOMLEFT"}, "text": "A vaccine will stimulate the production ", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 494.76475016276044, "r": 393.2244059244792, "b": 482.03289794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Which part of the blood in Figure 2 prod", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 482.03289794921875, "r": 536.1382242838541, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 468.02785237630206, "r": 201.26324462890625, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 6, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 204.2230021158854, "t": 429.83229573567706, "r": 213.1022745768229, "b": 419.64678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 6, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 363.6268717447917, "t": 428.55910237630206, "r": 370.3920491536458, "b": 420.91998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 344.95322672526044, "r": 102.32291666666667, "b": 328.82623291015625, "coord_origin": "BOTTOMLEFT"}, "text": "01.8", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 343.68007405598956, "r": 419.8622233072917, "b": 330.09942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Which part of the blood in Figure 2 star", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 330.52382405598956, "r": 536.1382242838541, "b": 316.0943806966146, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 316.5187784830729, "r": 201.26324462890625, "b": 300.8161417643229, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 6, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 204.2230021158854, "t": 277.8988240559896, "r": 212.679443359375, "b": 268.1377156575521, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 275.7768351236979, "r": 563.1988525390625, "b": 266.0157267252604, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 80.75899251302083, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 283.29071044921875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about cell division.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 745.582285563151, "r": 88.79261271158855, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "text": "02.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 745.1578877766927, "r": 456.2248942057292, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the biological structures from the", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 732.8504231770834, "r": 536.1382242838541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 157.71259562174478, "t": 695.503651936849, "r": 179.2765096028646, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "text": "cell", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 238.4715779622396, "t": 695.503651936849, "r": 308.23720296223956, "b": 682.7717997233073, "coord_origin": "BOTTOMLEFT"}, "text": "chromosome", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 362.78125, "t": 694.23046875, "r": 393.2244059244792, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "text": "gene", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 460.8759358723958, "t": 695.503651936849, "r": 504.8494059244792, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "text": "nucleus", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 147.98768107096353, "t": 638.2103068033854, "r": 192.38399251302084, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "text": "Smallest", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 149.6789754231771, "t": 561.394775390625, "r": 189.8470662434896, "b": 546.965352376302, "coord_origin": "BOTTOMLEFT"}, "text": "Largest", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 191.5383504231771, "t": 496.03794352213544, "r": 394.070068359375, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Question2continuesonthenextpage", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 7, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "caption", "bbox": {"l": 115.007568359375, "t": 774.8655446370443, "r": 457.9161783854167, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3 shows how a fertilised egg cell", "furniture": false}, {"page": 8, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 749.4018351236979, "r": 347.9824625651042, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 372.928955078125, "t": 698.4744160970052, "r": 462.1444091796875, "b": 683.1961873372396, "coord_origin": "BOTTOMLEFT"}, "text": "Fertilised egg cell", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 373.351806640625, "t": 598.7415568033854, "r": 413.5198567708333, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "text": "Embryo", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 286.67327880859375, "t": 546.5409545898438, "r": 342.4857991536458, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "text": "Process A", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 167.86032104492188, "t": 428.55910237630206, "r": 244.81392415364584, "b": 415.82725016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Red blood cells", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 284.1363525390625, "t": 428.55910237630206, "r": 345.445556640625, "b": 415.82725016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Muscle cells", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 407.6003824869792, "t": 428.13470458984375, "r": 464.2585042317708, "b": 415.40285237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Nerve cells", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 350.04600016276044, "r": 103.5913798014323, "b": 334.34336344401044, "coord_origin": "BOTTOMLEFT"}, "text": "02.2", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 348.34840901692706, "r": 203.8001912434896, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Name Process A.", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 336.04095458984375, "r": 536.1382242838541, "b": 321.61151123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 232.06414794921875, "r": 101.47727457682292, "b": 217.21030680338538, "coord_origin": "BOTTOMLEFT"}, "text": "02.3", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 231.21535237630212, "r": 494.7017008463542, "b": 205.32725016276038, "coord_origin": "BOTTOMLEFT"}, "text": "How many cell divisions are needed to fo", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 205.75164794921875, "r": 535.2926025390625, "b": 192.59539794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 261.72678629557294, "t": 128.08730061848962, "r": 384.7679850260417, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "text": "Numberofcell divisions\uff1a", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.4905293782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 8, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 9, "kind": "text", "label": "page_header", "bbox": {"l": 286.25046793619794, "t": 810.0903447469076, "r": 291.7471516927083, "b": 802.875628153483, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 325.5729166666667, "t": 577.9461873372395, "r": 390.6875, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "text": "Startofcycle", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 282.86789957682294, "t": 546.965352376302, "r": 324.304443359375, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 3", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 245.23673502604166, "t": 526.5943806966145, "r": 289.63303629557294, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 2:", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 513.4381306966145, "r": 282.86789957682294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "mitosis", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 370.8148600260417, "b": 411.58327229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 1", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 102.74573771158855, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "02.4", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 433.8153483072917, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "In humans a fertilised egg cell contains", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 749.4018351236979, "r": 441.4261067708333, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "text": "How many chromosomes will there be in ea", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 737.5187683105469, "r": 536.1382242838541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 633.1175537109375, "r": 105.70548502604167, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "text": "02.5", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 632.6931762695312, "r": 407.6003824869792, "b": 620.3857014973959, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4 represents a cell cycle for a h", "furniture": false}, {"page": 9, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 605.5318806966146, "r": 348.4053141276042, "b": 591.1024373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 325.5729166666667, "t": 577.9461873372395, "r": 390.6875, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "text": "Startofcycle", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 282.86789957682294, "t": 546.965352376302, "r": 324.304443359375, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 3", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 245.23673502604166, "t": 526.5943806966145, "r": 289.63303629557294, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 2:", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 513.4381306966145, "r": 282.86789957682294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "mitosis", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 330.2239583333333, "t": 426.43711344401044, "r": 370.8148600260417, "b": 411.58327229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 1", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 304.2113240559896, "r": 485.3996175130208, "b": 275.3524373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Describe one change in the cell that occ", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 277.0500284830729, "r": 536.5610758463541, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 251.16192626953125, "r": 154.75283813476562, "b": 236.30808512369788, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 1", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 199.38572184244788, "r": 154.33001708984375, "b": 185.80507405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 2", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 148.03391520182288, "r": 154.75283813476562, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Stage 3", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 9, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 10, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 428.3186442057292, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Cell division is important in the growth", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 736.6699829101562, "r": 101.47727457682292, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "text": "02.6", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 735.8211873372396, "r": 500.1983642578125, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5 shows the mean height of boys a", "furniture": false}, {"page": 10, "kind": "text", "label": "section_header", "bbox": {"l": 285.82763671875, "t": 707.38671875, "r": 331.06960042317706, "b": 694.23046875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 132.7660929361979, "t": 658.5812784830729, "r": 153.90719604492188, "b": 646.2738037109375, "coord_origin": "BOTTOMLEFT"}, "text": "200", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 133.61173502604166, "t": 629.7223917643229, "r": 153.484375, "b": 618.2637329101562, "coord_origin": "BOTTOMLEFT"}, "text": "180", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 132.7660929361979, "t": 602.13671875, "r": 154.33001708984375, "b": 589.8292643229166, "coord_origin": "BOTTOMLEFT"}, "text": "160", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 450.3053792317708, "t": 586.8584798177084, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 132.7660929361979, "t": 573.7022298177083, "r": 154.33001708984375, "b": 561.394775390625, "coord_origin": "BOTTOMLEFT"}, "text": "140", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 449.882568359375, "t": 565.214335123698, "r": 476.0975341796875, "b": 549.51171875, "coord_origin": "BOTTOMLEFT"}, "text": "Boys", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 89.6382548014323, "t": 543.1457926432292, "r": 120.50426228841145, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "text": "Mean", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 132.7660929361979, "t": 545.2677612304688, "r": 154.33001708984375, "b": 532.9603068033855, "coord_origin": "BOTTOMLEFT"}, "text": "120", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 449.882568359375, "t": 547.8141276041667, "r": 474.8290608723958, "b": 534.2334798177083, "coord_origin": "BOTTOMLEFT"}, "text": "Girls", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 89.6382548014323, "t": 532.1115112304688, "r": 122.61836751302083, "b": 517.2576904296875, "coord_origin": "BOTTOMLEFT"}, "text": "height", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 89.6382548014323, "t": 519.379659016927, "r": 118.39014689127605, "b": 506.22340901692706, "coord_origin": "BOTTOMLEFT"}, "text": "in cm", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 132.7660929361979, "t": 516.8332926432292, "r": 154.33001708984375, "b": 504.52581787109375, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 138.68559773763022, "t": 487.97442626953125, "r": 153.90719604492188, "b": 476.09136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 138.68559773763022, "t": 459.53993733723956, "r": 155.1756591796875, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 138.68559773763022, "t": 431.52984619140625, "r": 154.33001708984375, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 138.68559773763022, "t": 403.09539794921875, "r": 153.90719604492188, "b": 390.78794352213544, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 146.29639689127603, "t": 372.53892008463544, "r": 153.06155395507812, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 153.90719604492188, "t": 364.05104573567706, "r": 160.6723429361979, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 181.390625, "t": 364.47544352213544, "r": 189.8470662434896, "b": 354.71433512369794, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 208.45123291015625, "t": 364.47544352213544, "r": 218.1761271158854, "b": 355.56313069661456, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 238.4715779622396, "t": 364.05104573567706, "r": 245.23673502604166, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 364.05104573567706, "r": 273.98862711588544, "b": 355.13873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 292.16998291015625, "t": 364.47544352213544, "r": 306.12310791015625, "b": 354.28993733723956, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 309.50567626953125, "t": 364.89980061848956, "r": 419.4393717447917, "b": 353.44114176432294, "coord_origin": "BOTTOMLEFT"}, "text": "\u00a512141618", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 253.69317626953125, "t": 352.16794840494794, "r": 315.84800211588544, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Age in years", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 10, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 11, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.2123209635416, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 774.0167541503906, "r": 366.5866292317708, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "Compare the growth of boys with the grow", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 308.23720296223956, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "text": "Use data from Figure 5 in your answer.", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 736.2455851236979, "r": 535.7154134114584, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 218.90789794921875, "r": 103.5913798014323, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "text": "02.7", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 218.05910237630212, "r": 491.741943359375, "b": 203.20526123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Give one way that cell division by mitos", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 489.6278483072917, "t": 204.47845458984375, "r": 536.1382242838541, "b": 190.04901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 552.6282958984375, "t": 158.21938069661462, "r": 567.8498942057291, "b": 145.48752848307288, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 11, "kind": "text", "label": "page_footer", "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 12, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 79.4905293782552, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 319.6534016927083, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "Amylase is an enzyme that digests starch", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 744.7334899902344, "r": 87.52414957682292, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "text": "03.", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 732.8504231770834, "r": 536.1382242838541, "b": 717.996592203776, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 717.996592203776, "r": 201.68607584635416, "b": 702.7183736165365, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (v) one box.", "furniture": false}, {"page": 12, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 677.6790568033854, "r": 308.23720296223956, "b": 664.5228068033854, "coord_origin": "BOTTOMLEFT"}, "text": "Liver, small intestine and large intesti", "furniture": false}, {"page": 12, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 640.332275390625, "r": 282.86789957682294, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "text": "Salivary glands, stomach and liver", "furniture": false}, {"page": 12, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.58474731445312, "t": 604.6830851236979, "r": 335.72064208984375, "b": 590.2536417643229, "coord_origin": "BOTTOMLEFT"}, "text": "Salivary glands, pancreas and small inte", "furniture": false}, {"page": 12, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 566.9119262695312, "r": 302.7405192057292, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "text": "Stomach, pancreas and large intestine", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 464.20827229817706, "r": 430.4327392578125, "b": 450.62762451171875, "coord_origin": "BOTTOMLEFT"}, "text": "A student investigated the effect of pH ", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 437.04697672526044, "r": 235.5118408203125, "b": 425.58831787109375, "coord_origin": "BOTTOMLEFT"}, "text": "This is the method used.", "furniture": false}, {"page": 12, "kind": "text", "label": "list_item", "bbox": {"l": 115.007568359375, "t": 411.58327229817706, "r": 290.4786783854167, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Prepare amylase solution at pH 5", "furniture": false}, {"page": 12, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 385.69517008463544, "r": 386.0364583333333, "b": 373.38771565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Mix the amylase solution with starch in ", "furniture": false}, {"page": 12, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 360.23146565755206, "r": 524.7220458984375, "b": 335.61655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Remove a drop of the amylase-starch mixt", "furniture": false}, {"page": 12, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 322.0359090169271, "r": 394.9156901041667, "b": 308.8796590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Record the time when all the starch has ", "furniture": false}, {"page": 12, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 295.29901123046875, "r": 509.9232991536458, "b": 268.98651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Repeat steps 1 to 4 using amylase soluti", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 214.23952229817712, "r": 103.5913798014323, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "text": "03.2", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 212.96636962890625, "r": 388.5733642578125, "b": 200.65887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "What was the independent variable in thi", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 200.23447672526038, "r": 536.1382242838541, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 12, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 13, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 101.47727457682292, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "03.3", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 490.0506591796875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how the student would know when", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 760.8605041503906, "r": 535.2926025390625, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 618.6881306966146, "r": 102.74573771158855, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "text": "03.4", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 618.6881306966146, "r": 293.86126708984375, "b": 606.3806762695312, "coord_origin": "BOTTOMLEFT"}, "text": "Figure6shows the student'sresults.", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 268.06911214192706, "t": 591.5268351236979, "r": 313.3110758463542, "b": 577.097391764323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 128.11505126953125, "t": 539.7506306966145, "r": 143.33663940429688, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "text": "10-", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 134.03455607096353, "t": 482.45729573567706, "r": 142.49099731445312, "b": 472.27178955078125, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 431.95424397786456, "r": 120.92708333333333, "b": 417.52480061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Time taken", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 134.88020833333334, "t": 425.16392008463544, "r": 142.06817626953125, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 63.84611511230469, "t": 418.79799397786456, "r": 122.61836751302083, "b": 404.79294840494794, "coord_origin": "BOTTOMLEFT"}, "text": "to digest all", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 64.26893615722656, "t": 406.91493733723956, "r": 115.007568359375, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "the starch", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 393.75868733723956, "r": 116.27604166666667, "b": 382.30002848307294, "coord_origin": "BOTTOMLEFT"}, "text": "in minutes", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 142.913818359375, "t": 245.22039794921875, "r": 149.6789754231771, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 246.49355061848962, "r": 320.921875, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 426.6273600260417, "t": 245.64479573567712, "r": 433.8153483072917, "b": 237.15688069661462, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 321.76751708984375, "t": 232.91290283203125, "r": 339.5260416666667, "b": 219.33229573567712, "coord_origin": "BOTTOMLEFT"}, "text": "pH", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 191.74660237630212, "r": 328.53265380859375, "b": 178.59035237630212, "coord_origin": "BOTTOMLEFT"}, "text": "What was the optimum pH forthe amylase?", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 165.43410237630212, "r": 184.35038248697916, "b": 152.70220947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 6.", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 153.55100504557288, "r": 535.7154134114584, "b": 138.27276611328125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 315.84800211588544, "t": 127.66290283203125, "r": 388.9962158203125, "b": 113.65785725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Optimum pH =", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 13, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 14, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 300.62640380859375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Ascientist did a different investigation", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 234.66617838541666, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "text": "This is the method used.", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 115.007568359375, "t": 722.2405497233073, "r": 346.7139892578125, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Prepare amylase solution at the optimum ", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.58474731445312, "t": 696.7768351236979, "r": 386.0364583333333, "b": 684.0449829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Mix the amylase solution with starch in ", "furniture": false}, {"page": 14, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 670.4643351236979, "r": 458.3389892578125, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Measure the concentration of sugar every", "furniture": false}, {"page": 14, "kind": "text", "label": "caption", "bbox": {"l": 115.43039957682292, "t": 628.8736165364584, "r": 299.3579508463542, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7 shows the scientist's results.", "furniture": false}, {"page": 14, "kind": "text", "label": "caption", "bbox": {"l": 268.491943359375, "t": 603.8342895507812, "r": 313.73388671875, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 66.80586751302083, "t": 424.31512451171875, "r": 136.57149251302084, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Concentration", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 65.96022542317708, "t": 412.85646565755206, "r": 120.08144124348958, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "text": "of sugar in", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 66.80586751302083, "t": 399.70021565755206, "r": 134.45738728841147, "b": 388.24155680338544, "coord_origin": "BOTTOMLEFT"}, "text": "arbitraryunits", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 134.03455607096353, "t": 380.60243733723956, "r": 142.49099731445312, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 195.34375, "t": 259.22540283203125, "r": 210.14251708984375, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 252.00189208984375, "t": 259.22540283203125, "r": 266.37782796223956, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 308.6600341796875, "t": 259.22540283203125, "r": 323.45880126953125, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 365.3181559244792, "t": 259.22540283203125, "r": 380.116943359375, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 419.4393717447917, "t": 259.6498006184896, "r": 440.1576741536458, "b": 246.49355061848962, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 476.0975341796875, "t": 259.22540283203125, "r": 496.8157958984375, "b": 246.49355061848962, "coord_origin": "BOTTOMLEFT"}, "text": "120", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 290.0558675130208, "t": 243.94720458984375, "r": 370.3920491536458, "b": 232.48854573567712, "coord_origin": "BOTTOMLEFT"}, "text": "Time inseconds", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 189.62461344401038, "r": 101.47727457682292, "b": 176.04396565755212, "coord_origin": "BOTTOMLEFT"}, "text": "03.5", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 190.47340901692712, "r": 435.5066324869792, "b": 177.31715901692712, "coord_origin": "BOTTOMLEFT"}, "text": "How much time did it take for the amylas", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 165.00970458984375, "r": 184.35038248697916, "b": 152.27781168619788, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 7.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 195.34375, "t": 129.36049397786462, "r": 340.37168375651044, "b": 116.62864176432288, "coord_origin": "BOTTOMLEFT"}, "text": "Time to digest all the starch =", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 152.27781168619788, "r": 535.7154134114584, "b": 139.12156168619788, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 488.7821858723958, "t": 128.51169840494788, "r": 532.3328450520834, "b": 117.47743733723962, "coord_origin": "BOTTOMLEFT"}, "text": "seconds Donotwrite outsidethe box", "furniture": false}, {"page": 14, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 15, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 297.24383544921875, "b": 798.6316782633463, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "03.6", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 432.1240234375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Determine the rate of sugar production p", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 761.7092946370443, "r": 536.1382242838541, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 227.0553995768229, "t": 558.4240112304688, "r": 263.41807047526044, "b": 544.8433634440105, "coord_origin": "BOTTOMLEFT"}, "text": "Rate =", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 410.1372884114583, "t": 557.9996134440105, "r": 532.7556559244791, "b": 544.418965657552, "coord_origin": "BOTTOMLEFT"}, "text": "arbitraryunitsper minute", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 478.63771565755206, "r": 105.2826639811198, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "text": "03.7", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 476.94012451171875, "r": 516.265625, "b": 450.62762451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how the structure of enzyme mole", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 450.62762451171875, "r": 535.7154134114584, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 552.2054850260416, "t": 145.91192626953125, "r": 568.272705078125, "b": 131.90688069661462, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 552.2054850260416, "t": 145.91192626953125, "r": 568.272705078125, "b": 131.90688069661462, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 15, "kind": "text", "label": "page_footer", "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 16, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "04", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 399.1439208984375, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Photosynthesis is an important chemical ", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 745.1578877766927, "r": 88.79261271158855, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "text": "04].", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 744.7334899902344, "r": 309.0828450520833, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Why is light needed for photosynthesis?", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 732.426035563151, "r": 536.1382242838541, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 16, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 603.4098917643229, "r": 313.73388671875, "b": 587.2828776041666, "coord_origin": "BOTTOMLEFT"}, "text": "04.2 What is the equation for photosynth", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 589.4048665364584, "r": 536.1382242838541, "b": 574.551025390625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 574.9754231770833, "r": 200.8404337565104, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 16, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.43039957682292, "t": 534.2334798177083, "r": 284.55918375651044, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "text": "C6H12O6+ CO2\u2192 6O2 + 6H2O", "furniture": false}, {"page": 16, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 115.007568359375, "t": 498.15989176432294, "r": 257.92138671875, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "text": "O+ OH\u2190O\u00b2H +\u00b2O", "furniture": false}, {"page": 16, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 461.23752848307294, "r": 293.015625, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "6CO2 + 6H2O \u2192 CH12O6 + 6O2", "furniture": false}, {"page": 16, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 114.16192626953125, "t": 423.89072672526044, "r": 293.015625, "b": 410.73447672526044, "coord_origin": "BOTTOMLEFT"}, "text": "6O2 + 6H2O \u2192 CH12O6 + 6CO2", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 16, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 17, "kind": "text", "label": "page_header", "bbox": {"l": 284.1363525390625, "t": 810.5147399902344, "r": 295.1297200520833, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "04.3", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 456.2248942057292, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "text": "A student investigated the effect of dif", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 737.0943806966146, "r": 298.51230875651044, "b": 723.9381306966146, "coord_origin": "BOTTOMLEFT"}, "text": "The student used pondweed in water.", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 710.7818806966146, "r": 529.3730875651041, "b": 698.4744160970052, "coord_origin": "BOTTOMLEFT"}, "text": "A piece of pondweed was placed in red li", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 686.5913492838541, "r": 325.5729166666667, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "text": "Eachcolour of lightwasthesame intensity.", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 646.6982014973959, "r": 531.9100341796875, "b": 621.6588948567709, "coord_origin": "BOTTOMLEFT"}, "text": "Describehowthestudentshouldmakeaccuratem", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 621.6588948567709, "r": 535.7154134114584, "b": 608.5026448567709, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 350.47039794921875, "r": 390.6875, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Question 4 continues on the next page", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 17, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 18, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.441151936849, "r": 499.3527425130208, "b": 749.4018351236979, "coord_origin": "BOTTOMLEFT"}, "text": "A scientist investigated the effect of d", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 736.6699829101562, "r": 393.6472574869792, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "The wavelength of light determines the c", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 699.3232116699219, "r": 294.7069091796875, "b": 685.3181660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Figure8 shows thestudent'sresults.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 673.4350992838541, "r": 298.51230875651044, "b": 660.7032470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Figure9showsthescientist'sresults.", "furniture": false}, {"page": 18, "kind": "text", "label": "caption", "bbox": {"l": 302.7405192057292, "t": 634.3907470703125, "r": 347.9824625651042, "b": 621.2344970703125, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 241.43133544921875, "t": 583.4633382161458, "r": 255.80729166666666, "b": 571.5802612304688, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 248.19649251302084, "t": 525.3211873372395, "r": 254.9616495768229, "b": 516.8332926432292, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 162.78645833333334, "t": 471.84739176432294, "r": 201.68607584635416, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Rate of", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 248.19649251302084, "t": 468.87664794921875, "r": 255.38446044921875, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 162.3636271158854, "t": 459.11553955078125, "r": 238.04876708984375, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "text": "photosynthesis", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 163.20927937825522, "t": 447.23248291015625, "r": 241.85416666666666, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "text": "in arbitrary units", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 249.0421346028646, "t": 354.28993733723956, "r": 253.69317626953125, "b": 347.92401123046875, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 303.58616129557294, "t": 290.63067626953125, "r": 327.2642008463542, "b": 277.8988240559896, "coord_origin": "BOTTOMLEFT"}, "text": "Red", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 359.8214925130208, "t": 290.63067626953125, "r": 384.7679850260417, "b": 278.3232218424479, "coord_origin": "BOTTOMLEFT"}, "text": "Blue", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 411.8285725911458, "t": 290.63067626953125, "r": 445.6543375651042, "b": 277.47442626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Green", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 337.83473714192706, "t": 275.7768351236979, "r": 407.1775309244792, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Colour of light", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 18, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 19, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.7627766927084, "b": 779.5338948567709, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 547.1316324869791, "t": 780.3826853434244, "r": 583.4943033854166, "b": 771.8947804768881, "coord_origin": "BOTTOMLEFT"}, "text": "outsidethe", "furniture": true}, {"page": 19, "kind": "text", "label": "section_header", "bbox": {"l": 268.491943359375, "t": 775.2899424235026, "r": 313.73388671875, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 558.9706217447916, "t": 772.3191782633463, "r": 572.078125, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "box", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 137.4171346028646, "t": 723.9381306966146, "r": 153.484375, "b": 711.6306660970052, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 137.83995564778647, "t": 695.503651936849, "r": 153.484375, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "text": "70", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 137.4171346028646, "t": 667.0691731770834, "r": 153.484375, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 639.4834798177084, "r": 94.71211751302083, "b": 627.6004231770834, "coord_origin": "BOTTOMLEFT"}, "text": "Rate of", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 137.83995564778647, "t": 638.6347045898438, "r": 153.484375, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 57.080963134765625, "t": 626.3272298177084, "r": 131.49762980143228, "b": 614.8685709635416, "coord_origin": "BOTTOMLEFT"}, "text": "photosynthesis", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 619.5369262695312, "r": 153.90719604492188, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "text": "in arbitrary units 40-", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 137.4171346028646, "t": 581.7657470703125, "r": 153.484375, "b": 569.4582926432292, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 137.4171346028646, "t": 552.9068806966145, "r": 153.484375, "b": 541.0238037109375, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 138.26277669270834, "t": 524.8967895507812, "r": 153.06155395507812, "b": 513.0137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 145.45075480143228, "t": 495.18914794921875, "r": 152.21590169270834, "b": 486.70123291015625, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 144.60511271158853, "t": 487.12563069661456, "r": 166.59184773763022, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "400", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 258.76702880859375, "t": 487.12563069661456, "r": 280.33095296223956, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "500", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 371.6604817708333, "t": 487.12563069661456, "r": 392.8015950520833, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "600", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 487.12563069661456, "r": 506.1178792317708, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "700", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 278.63966878255206, "t": 471.42299397786456, "r": 401.258056640625, "b": 459.96433512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Wavelengthoflightinnm", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 406.06614176432294, "r": 102.74573771158855, "b": 388.66595458984375, "coord_origin": "BOTTOMLEFT"}, "text": "04.4", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 404.36855061848956, "r": 442.2717692057292, "b": 391.21230061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Why are the results for the two investig", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 391.21230061848956, "r": 535.7154134114584, "b": 378.05605061848956, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 195.99053955078125, "r": 101.054443359375, "b": 182.83428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "04.5", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 195.99053955078125, "r": 344.1770833333333, "b": 182.83428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest the range in wavelength of green", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 169.25364176432288, "r": 251.15625, "b": 156.52178955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 8 and Figure 9.", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 156.52178955078125, "r": 535.7154134114584, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 128.53787231445312, "t": 121.72141520182288, "r": 334.45216878255206, "b": 106.86757405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Range in wavelength of green light = fro", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 409.7144775390625, "t": 120.44822184244788, "r": 439.7348225911458, "b": 108.14076741536462, "coord_origin": "BOTTOMLEFT"}, "text": "nm to", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 514.9971516927084, "t": 118.75063069661462, "r": 532.7556559244791, "b": 108.98956298828125, "coord_origin": "BOTTOMLEFT"}, "text": "nm", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 125.54091389973962, "r": 564.0444742838541, "b": 115.35544840494788, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover", "furniture": false}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 20, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 26.23248291015625, "r": 80.75899251302083, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 184.35038248697916, "t": 440.44215901692706, "r": 394.070068359375, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 20, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 266.8006591796875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about tumours.", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 744.309092203776, "r": 88.36979166666667, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "text": "05.", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 745.1578877766927, "r": 454.9564208984375, "b": 718.8453877766927, "coord_origin": "BOTTOMLEFT"}, "text": "Describe the similarities and difference", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 718.8453877766927, "r": 536.5610758463541, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 240.12762451171875, "r": 390.6875, "b": 226.12261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Question5continuesonthenextpage", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.2523600260416, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 21, "kind": "text", "label": "page_footer", "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 22, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 499.7755533854167, "b": 749.8262329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10 shows data about skin cancer i", "furniture": false}, {"page": 22, "kind": "text", "label": "section_header", "bbox": {"l": 114.16192626953125, "t": 729.8796590169271, "r": 158.9810587565104, "b": 716.7234090169271, "coord_origin": "BOTTOMLEFT"}, "text": "It shows:", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 114.16192626953125, "t": 710.3574829101562, "r": 366.5866292317708, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "text": "the number of new cases of skin cancer i", "furniture": false}, {"page": 22, "kind": "text", "label": "section_header", "bbox": {"l": 265.5321858723958, "t": 646.2738037109375, "r": 316.6936442057292, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 87.9469706217448, "t": 600.4391276041666, "r": 113.3162841796875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "1200", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 457.9161783854167, "t": 600.4391276041666, "r": 477.3660074869792, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "text": "120", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 88.36979166666667, "t": 575.82421875, "r": 112.89346313476562, "b": 565.214335123698, "coord_origin": "BOTTOMLEFT"}, "text": "1000", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 457.4933675130208, "t": 575.82421875, "r": 477.3660074869792, "b": 564.7899373372395, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 475.2518717447917, "t": 561.8191731770833, "r": 513.3058675130209, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "text": "Number", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 557.1508178710938, "r": 112.04782104492188, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "text": "Number 800", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 457.4933675130208, "t": 552.4824829101562, "r": 518.3797200520834, "b": 537.628641764323, "coord_origin": "BOTTOMLEFT"}, "text": "80of people", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 543.9945678710938, "r": 84.98721313476562, "b": 532.535909016927, "coord_origin": "BOTTOMLEFT"}, "text": "ofnew", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 475.2518717447917, "t": 539.3262329101562, "r": 515.8427734375, "b": 527.8675537109375, "coord_origin": "BOTTOMLEFT"}, "text": "with skin", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 532.1115112304688, "r": 81.60463968912761, "b": 521.926025390625, "coord_origin": "BOTTOMLEFT"}, "text": "cases", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 527.4431762695312, "r": 113.73910522460938, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "text": "600-", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 457.070556640625, "t": 527.8675537109375, "r": 525.5677083333334, "b": 516.4088948567708, "coord_origin": "BOTTOMLEFT"}, "text": "60cancerper", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 521.5016276041667, "r": 84.56439208984375, "b": 510.8917643229167, "coord_origin": "BOTTOMLEFT"}, "text": "of skin", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 475.6747233072917, "t": 517.2576904296875, "r": 512.8830159505209, "b": 505.79901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "100000", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 54.12121073404948, "t": 508.769775390625, "r": 85.4100341796875, "b": 499.85748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "cancer", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 504.1014404296875, "r": 112.89346313476562, "b": 491.79396565755206, "coord_origin": "BOTTOMLEFT"}, "text": "400", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 457.070556640625, "t": 504.52581787109375, "r": 524.2992350260416, "b": 495.18914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "40population", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 93.86647542317708, "t": 479.06211344401044, "r": 113.3162841796875, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "text": "200", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 457.4933675130208, "t": 478.63771565755206, "r": 471.4464925130208, "b": 468.02785237630206, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 106.12831624348958, "t": 451.90081787109375, "r": 111.625, "b": 444.68609619140625, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 459.1846516927083, "t": 453.17401123046875, "r": 464.6813151041667, "b": 446.38368733723956, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 445.53489176432294, "r": 135.30302937825522, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 145.87357584635416, "t": 445.95928955078125, "r": 160.24952189127603, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 169.97442626953125, "t": 445.95928955078125, "r": 184.35038248697916, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 194.49810791015625, "t": 445.53489176432294, "r": 207.1827596028646, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 218.59895833333334, "t": 445.53489176432294, "r": 231.7064412434896, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "35", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 243.12261962890625, "t": 445.53489176432294, "r": 256.2301025390625, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 445.95928955078125, "r": 281.1765950520833, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "text": "45", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 290.90150960286456, "t": 445.95928955078125, "r": 304.4318033854167, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 445.53489176432294, "r": 328.53265380859375, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "55", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 339.5260416666667, "t": 445.53489176432294, "r": 352.6335042317708, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 364.0497233072917, "t": 445.53489176432294, "r": 377.1571858723958, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "65", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 387.7277425130208, "t": 445.53489176432294, "r": 400.835205078125, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "70", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 412.2514241536458, "t": 445.53489176432294, "r": 425.35888671875, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "75", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 435.929443359375, "t": 445.11049397786456, "r": 449.4597574869792, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 434.07623291015625, "r": 134.45738728841147, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 146.7192179361979, "t": 434.50063069661456, "r": 158.9810587565104, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 170.820068359375, "t": 434.07623291015625, "r": 183.0819091796875, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 195.76656087239584, "t": 433.65183512369794, "r": 205.9142862955729, "b": 423.89072672526044, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 219.02176920572916, "t": 434.07623291015625, "r": 230.86079915364584, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 243.54545084635416, "t": 434.07623291015625, "r": 255.38446044921875, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 268.06911214192706, "t": 434.07623291015625, "r": 279.90814208984375, "b": 423.46636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 291.7471516927083, "t": 434.07623291015625, "r": 303.58616129557294, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 315.84800211588544, "t": 434.07623291015625, "r": 327.2642008463542, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 339.9488525390625, "t": 434.07623291015625, "r": 351.7878824869792, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 364.4725341796875, "t": 434.50063069661456, "r": 376.3115234375, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 388.5733642578125, "t": 434.07623291015625, "r": 399.9895833333333, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 412.6742350260417, "t": 434.07623291015625, "r": 424.0904134114583, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 437.1979166666667, "t": 434.07623291015625, "r": 448.6140950520833, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 423.46636962890625, "r": 135.30302937825522, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 146.29639689127603, "t": 423.46636962890625, "r": 159.82670084635416, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 170.39724731445312, "t": 423.46636962890625, "r": 183.92755126953125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 194.07527669270834, "t": 423.04197184244794, "r": 207.6055908203125, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "34", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 218.1761271158854, "t": 423.46636962890625, "r": 231.7064412434896, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "39", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 242.6998087565104, "t": 423.46636962890625, "r": 256.2301025390625, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "44", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 267.2234700520833, "t": 423.46636962890625, "r": 280.7537841796875, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "49", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 291.32432047526044, "t": 423.46636962890625, "r": 304.4318033854167, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "54", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 423.04197184244794, "r": 328.53265380859375, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "59", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 339.5260416666667, "t": 423.46636962890625, "r": 352.6335042317708, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "64", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 364.0497233072917, "t": 423.04197184244794, "r": 377.1571858723958, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "69", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 387.7277425130208, "t": 423.04197184244794, "r": 401.258056640625, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "74", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 411.8285725911458, "t": 423.04197184244794, "r": 424.9360758463542, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "79", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 435.5066324869792, "t": 423.89072672526044, "r": 450.3053792317708, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "text": "84", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 235.93465169270834, "t": 406.49053955078125, "r": 293.86126708984375, "b": 393.75868733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Age in years", "furniture": false}, {"page": 22, "kind": "text", "label": "section_header", "bbox": {"l": 53.27556864420573, "t": 396.30507405598956, "r": 75.26230875651042, "b": 381.02683512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 82.87310282389323, "t": 377.63169352213544, "r": 164.90056355794272, "b": 366.17299397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Newmalecases", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 82.87310282389323, "t": 361.50465901692706, "r": 174.6254679361979, "b": 350.04600016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Newfemalecases", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 81.60463968912761, "t": 345.37762451171875, "r": 309.92848714192706, "b": 333.07017008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Number of males with skin cancer per 1oo", "furniture": false}, {"page": 22, "kind": "text", "label": "list_item", "bbox": {"l": 78.22206115722656, "t": 329.2506306966146, "r": 319.23057047526044, "b": 316.94317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Number of femaleswith skin cancer per 10", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 22, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 23, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.16855875651042, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 774.8655446370443, "r": 473.5605875651042, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "There are no new cases of skin cancer di", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 736.2455851236979, "r": 177.16239420572916, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why.", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 721.816151936849, "r": 536.1382242838541, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 541.8725992838542, "r": 101.9000956217448, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "text": "05.3", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 541.4482014973958, "r": 453.6879475911458, "b": 529.5651448567708, "coord_origin": "BOTTOMLEFT"}, "text": "Givetwoconclusions aboutthenumberofnewca", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 515.9844970703125, "r": 189.8470662434896, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 10.", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 503.2526448567708, "r": 536.1382242838541, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 423.04197184244794, "r": 121.77272542317708, "b": 415.40285237630206, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 322.4603068033854, "r": 103.16855875651042, "b": 308.0308634440104, "coord_origin": "BOTTOMLEFT"}, "text": "05.4", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 322.0359090169271, "r": 520.4938151041666, "b": 308.45526123046875, "coord_origin": "BOTTOMLEFT"}, "text": "The data for the number of people with s", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 295.7234090169271, "r": 428.741455078125, "b": 282.14276123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest why the data is not given as the", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 489.6278483072917, "t": 283.41595458984375, "r": 535.7154134114584, "b": 268.98651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 166.70729573567712, "r": 391.5331217447917, "b": 151.42901611328125, "coord_origin": "BOTTOMLEFT"}, "text": "Question 5 continues on the next page", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "caption", "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 255.80729166666666, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10 is repeated below.", "furniture": false}, {"page": 24, "kind": "text", "label": "caption", "bbox": {"l": 265.5321858723958, "t": 748.128651936849, "r": 316.2708333333333, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 87.9469706217448, "t": 702.7183736165365, "r": 113.73910522460938, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "text": "1200", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.9161783854167, "t": 702.7183736165365, "r": 477.3660074869792, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "text": "120", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 87.9469706217448, "t": 678.9522399902344, "r": 113.3162841796875, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "text": "1000", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 456.647705078125, "t": 678.9522399902344, "r": 477.788818359375, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 475.2518717447917, "t": 664.9472045898438, "r": 513.3058675130209, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "text": "Number", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 659.4300537109375, "r": 112.47064208984375, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Number 800", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.9161783854167, "t": 654.76171875, "r": 518.3797200520834, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "text": "80of people", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 646.6982014973959, "r": 84.56439208984375, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "text": "ofnew", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 475.2518717447917, "t": 642.0298665364584, "r": 516.265625, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "text": "with skin", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 634.8151448567709, "r": 81.60463968912761, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "text": "cases", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 629.7223917643229, "r": 113.3162841796875, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "text": "600", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.070556640625, "t": 630.1467895507812, "r": 525.5677083333334, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "text": "60cancerper", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 625.0540568033854, "r": 84.56439208984375, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "text": "of skin", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 476.0975341796875, "t": 619.1125284830729, "r": 512.0373942057291, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "text": "100000", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 611.8978068033854, "r": 85.83285522460938, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "text": "cancer", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 605.5318806966146, "r": 113.3162841796875, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "text": "400", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 456.647705078125, "t": 607.2294514973959, "r": 524.7220458984375, "b": 597.4683634440104, "coord_origin": "BOTTOMLEFT"}, "text": "-40population", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 581.3413492838542, "r": 112.89346313476562, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "text": "200", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.4933675130208, "t": 581.3413492838542, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 105.70548502604167, "t": 555.0288492838542, "r": 112.47064208984375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 458.3389892578125, "t": 555.8776448567708, "r": 465.1041666666667, "b": 548.238525390625, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 547.8141276041667, "r": 135.30302937825522, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 146.29639689127603, "t": 547.3897298177083, "r": 159.82670084635416, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 170.39724731445312, "t": 547.8141276041667, "r": 183.50472005208334, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 193.6524658203125, "t": 548.238525390625, "r": 208.02840169270834, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 218.59895833333334, "t": 547.8141276041667, "r": 231.7064412434896, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "35", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 243.12261962890625, "t": 547.8141276041667, "r": 256.2301025390625, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 548.238525390625, "r": 281.1765950520833, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "text": "45", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 291.32432047526044, "t": 547.8141276041667, "r": 304.4318033854167, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 547.8141276041667, "r": 328.53265380859375, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "55", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 339.5260416666667, "t": 547.8141276041667, "r": 352.6335042317708, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 363.6268717447917, "t": 548.238525390625, "r": 377.5799967447917, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "text": "65", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 387.7277425130208, "t": 547.8141276041667, "r": 400.835205078125, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "70", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 412.2514241536458, "t": 547.8141276041667, "r": 425.35888671875, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "75", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 435.929443359375, "t": 547.3897298177083, "r": 449.4597574869792, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 536.7798665364583, "r": 134.03455607096353, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 146.7192179361979, "t": 536.35546875, "r": 158.55823771158853, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 171.2428995768229, "t": 536.35546875, "r": 182.6590779622396, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 195.34375, "t": 536.7798665364583, "r": 206.33711751302084, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 219.02176920572916, "t": 536.35546875, "r": 230.86079915364584, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 243.54545084635416, "t": 536.7798665364583, "r": 255.38446044921875, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 268.06911214192706, "t": 536.35546875, "r": 279.4853108723958, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 291.7471516927083, "t": 536.35546875, "r": 303.58616129557294, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 316.2708333333333, "t": 536.35546875, "r": 327.2642008463542, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 339.9488525390625, "t": 536.7798665364583, "r": 351.7878824869792, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 364.4725341796875, "t": 536.7798665364583, "r": 376.3115234375, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 388.5733642578125, "t": 536.35546875, "r": 399.9895833333333, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 412.6742350260417, "t": 536.35546875, "r": 424.0904134114583, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 437.1979166666667, "t": 536.35546875, "r": 448.6140950520833, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 525.745585123698, "r": 135.30302937825522, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 146.29639689127603, "t": 525.745585123698, "r": 159.82670084635416, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 170.39724731445312, "t": 525.745585123698, "r": 183.92755126953125, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 194.07527669270834, "t": 525.745585123698, "r": 207.1827596028646, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "34", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 218.59895833333334, "t": 525.745585123698, "r": 231.7064412434896, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "39", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 242.6998087565104, "t": 525.745585123698, "r": 256.2301025390625, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "44", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 267.2234700520833, "t": 525.745585123698, "r": 280.33095296223956, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "49", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 291.32432047526044, "t": 525.745585123698, "r": 304.4318033854167, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "54", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 525.745585123698, "r": 328.53265380859375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "59", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 339.5260416666667, "t": 525.745585123698, "r": 352.6335042317708, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "64", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 364.0497233072917, "t": 525.745585123698, "r": 376.734375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "69", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 387.7277425130208, "t": 525.745585123698, "r": 401.258056640625, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "74", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 411.8285725911458, "t": 525.3211873372395, "r": 424.9360758463542, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "79", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 435.5066324869792, "t": 525.745585123698, "r": 449.4597574869792, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "84", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 235.93465169270834, "t": 509.1941731770833, "r": 293.86126708984375, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Age in years", "furniture": false}, {"page": 24, "kind": "text", "label": "section_header", "bbox": {"l": 54.12121073404948, "t": 497.73549397786456, "r": 73.99384053548177, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 82.45028177897136, "t": 481.18410237630206, "r": 165.3233846028646, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Newmalecases", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 82.45028177897136, "t": 465.05706787109375, "r": 174.6254679361979, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Newfemalecases", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 63.00047302246094, "t": 448.50567626953125, "r": 309.92848714192706, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "--Number of maleswithskin cancerper 1ooo", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 81.60463968912761, "t": 431.95424397786456, "r": 318.3849283854167, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Numberoffemaleswithskincancerper1oooo0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "text": "05.5", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 350.89479573567706, "r": 315.0023600260417, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Describe two trends shown inFigure 10.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 325.4310506184896, "r": 535.2926025390625, "b": 299.1185506184896, "coord_origin": "BOTTOMLEFT"}, "text": "Use only the data for the number of peop", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 207.44919840494788, "r": 121.77272542317708, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 24, "kind": "text", "label": "caption", "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 255.80729166666666, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10 is repeated below.", "furniture": false}, {"page": 24, "kind": "text", "label": "caption", "bbox": {"l": 265.5321858723958, "t": 748.128651936849, "r": 316.2708333333333, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 87.9469706217448, "t": 702.7183736165365, "r": 113.73910522460938, "b": 690.8353068033854, "coord_origin": "BOTTOMLEFT"}, "text": "1200", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.9161783854167, "t": 702.7183736165365, "r": 477.3660074869792, "b": 691.2597045898438, "coord_origin": "BOTTOMLEFT"}, "text": "120", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 87.9469706217448, "t": 678.9522399902344, "r": 113.3162841796875, "b": 667.0691731770834, "coord_origin": "BOTTOMLEFT"}, "text": "1000", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 456.647705078125, "t": 678.9522399902344, "r": 477.788818359375, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 475.2518717447917, "t": 664.9472045898438, "r": 513.3058675130209, "b": 652.2153523763021, "coord_origin": "BOTTOMLEFT"}, "text": "Number", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 659.4300537109375, "r": 112.47064208984375, "b": 642.0298665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Number 800", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.9161783854167, "t": 654.76171875, "r": 518.3797200520834, "b": 640.332275390625, "coord_origin": "BOTTOMLEFT"}, "text": "80of people", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 646.6982014973959, "r": 84.56439208984375, "b": 635.2395426432291, "coord_origin": "BOTTOMLEFT"}, "text": "ofnew", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 475.2518717447917, "t": 642.0298665364584, "r": 516.265625, "b": 630.5711873372396, "coord_origin": "BOTTOMLEFT"}, "text": "with skin", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 634.8151448567709, "r": 81.60463968912761, "b": 623.3564656575521, "coord_origin": "BOTTOMLEFT"}, "text": "cases", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 629.7223917643229, "r": 113.3162841796875, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "text": "600", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.070556640625, "t": 630.1467895507812, "r": 525.5677083333334, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "text": "60cancerper", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 625.0540568033854, "r": 84.56439208984375, "b": 612.3222045898438, "coord_origin": "BOTTOMLEFT"}, "text": "of skin", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 476.0975341796875, "t": 619.1125284830729, "r": 512.0373942057291, "b": 608.9270426432291, "coord_origin": "BOTTOMLEFT"}, "text": "100000", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 53.27556864420573, "t": 611.8978068033854, "r": 85.83285522460938, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "text": "cancer", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 605.5318806966146, "r": 113.3162841796875, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "text": "400", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 456.647705078125, "t": 607.2294514973959, "r": 524.7220458984375, "b": 597.4683634440104, "coord_origin": "BOTTOMLEFT"}, "text": "-40population", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 93.4436543782552, "t": 581.3413492838542, "r": 112.89346313476562, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "text": "200", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 457.4933675130208, "t": 581.3413492838542, "r": 471.023681640625, "b": 570.731465657552, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 105.70548502604167, "t": 555.0288492838542, "r": 112.47064208984375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 458.3389892578125, "t": 555.8776448567708, "r": 465.1041666666667, "b": 548.238525390625, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 547.8141276041667, "r": 135.30302937825522, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 146.29639689127603, "t": 547.3897298177083, "r": 159.82670084635416, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 170.39724731445312, "t": 547.8141276041667, "r": 183.50472005208334, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 193.6524658203125, "t": 548.238525390625, "r": 208.02840169270834, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 218.59895833333334, "t": 547.8141276041667, "r": 231.7064412434896, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "35", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 243.12261962890625, "t": 547.8141276041667, "r": 256.2301025390625, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 548.238525390625, "r": 281.1765950520833, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "text": "45", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 291.32432047526044, "t": 547.8141276041667, "r": 304.4318033854167, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 547.8141276041667, "r": 328.53265380859375, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "55", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 339.5260416666667, "t": 547.8141276041667, "r": 352.6335042317708, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 363.6268717447917, "t": 548.238525390625, "r": 377.5799967447917, "b": 535.9310709635417, "coord_origin": "BOTTOMLEFT"}, "text": "65", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 387.7277425130208, "t": 547.8141276041667, "r": 400.835205078125, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "70", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 412.2514241536458, "t": 547.8141276041667, "r": 425.35888671875, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "75", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 435.929443359375, "t": 547.3897298177083, "r": 449.4597574869792, "b": 536.7798665364583, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 122.61836751302083, "t": 536.7798665364583, "r": 134.03455607096353, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 146.7192179361979, "t": 536.35546875, "r": 158.55823771158853, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 171.2428995768229, "t": 536.35546875, "r": 182.6590779622396, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 195.34375, "t": 536.7798665364583, "r": 206.33711751302084, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 219.02176920572916, "t": 536.35546875, "r": 230.86079915364584, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 243.54545084635416, "t": 536.7798665364583, "r": 255.38446044921875, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 268.06911214192706, "t": 536.35546875, "r": 279.4853108723958, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 291.7471516927083, "t": 536.35546875, "r": 303.58616129557294, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 316.2708333333333, "t": 536.35546875, "r": 327.2642008463542, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 339.9488525390625, "t": 536.7798665364583, "r": 351.7878824869792, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 364.4725341796875, "t": 536.7798665364583, "r": 376.3115234375, "b": 525.3211873372395, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 388.5733642578125, "t": 536.35546875, "r": 399.9895833333333, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 412.6742350260417, "t": 536.35546875, "r": 424.0904134114583, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 437.1979166666667, "t": 536.35546875, "r": 448.6140950520833, "b": 525.745585123698, "coord_origin": "BOTTOMLEFT"}, "text": "to", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 525.745585123698, "r": 135.30302937825522, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 146.29639689127603, "t": 525.745585123698, "r": 159.82670084635416, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 170.39724731445312, "t": 525.745585123698, "r": 183.92755126953125, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 194.07527669270834, "t": 525.745585123698, "r": 207.1827596028646, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "34", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 218.59895833333334, "t": 525.745585123698, "r": 231.7064412434896, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "39", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 242.6998087565104, "t": 525.745585123698, "r": 256.2301025390625, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "44", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 267.2234700520833, "t": 525.745585123698, "r": 280.33095296223956, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "49", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 291.32432047526044, "t": 525.745585123698, "r": 304.4318033854167, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "54", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 315.42519124348956, "t": 525.745585123698, "r": 328.53265380859375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "59", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 339.5260416666667, "t": 525.745585123698, "r": 352.6335042317708, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "64", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 364.0497233072917, "t": 525.745585123698, "r": 376.734375, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "69", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 387.7277425130208, "t": 525.745585123698, "r": 401.258056640625, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "74", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 411.8285725911458, "t": 525.3211873372395, "r": 424.9360758463542, "b": 515.5600992838542, "coord_origin": "BOTTOMLEFT"}, "text": "79", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 435.5066324869792, "t": 525.745585123698, "r": 449.4597574869792, "b": 515.1357014973958, "coord_origin": "BOTTOMLEFT"}, "text": "84", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 235.93465169270834, "t": 509.1941731770833, "r": 293.86126708984375, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "text": "Age in years", "furniture": false}, {"page": 24, "kind": "text", "label": "section_header", "bbox": {"l": 54.12121073404948, "t": 497.73549397786456, "r": 73.99384053548177, "b": 484.57924397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Key", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 82.45028177897136, "t": 481.18410237630206, "r": 165.3233846028646, "b": 467.60345458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Newmalecases", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 82.45028177897136, "t": 465.05706787109375, "r": 174.6254679361979, "b": 452.32521565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Newfemalecases", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 63.00047302246094, "t": 448.50567626953125, "r": 309.92848714192706, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "--Number of maleswithskin cancerper 1ooo", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 81.60463968912761, "t": 431.95424397786456, "r": 318.3849283854167, "b": 420.07118733723956, "coord_origin": "BOTTOMLEFT"}, "text": "Numberoffemaleswithskincancerper1oooo0", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 351.31919352213544, "r": 101.9000956217448, "b": 336.88975016276044, "coord_origin": "BOTTOMLEFT"}, "text": "05.5", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 350.89479573567706, "r": 315.0023600260417, "b": 339.01169840494794, "coord_origin": "BOTTOMLEFT"}, "text": "Describe two trends shown inFigure 10.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 325.4310506184896, "r": 535.2926025390625, "b": 299.1185506184896, "coord_origin": "BOTTOMLEFT"}, "text": "Use only the data for the number of peop", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 207.44919840494788, "r": 121.77272542317708, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 24, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 101.47727457682292, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "05.6", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 506.1178792317708, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the number of males aged 80 to", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 722.6649373372396, "r": 190.2698771158854, "b": 709.9330851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 10.", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 682.7717997233073, "r": 312.0426025390625, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Giveyour answer to3significant figures.", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 670.4643351236979, "r": 536.5610758463541, "b": 656.0348917643229, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 122.19554646809895, "t": 516.8332926432292, "r": 403.3721516927083, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "Number of males with skin cancer (3 sign", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 210.14251708984375, "t": 451.05202229817706, "r": 374.6202392578125, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverforthenextquestion", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 73.57101949055989, "t": 23.26169840494788, "r": 77.79924011230469, "b": 19.01772054036462, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 552.6282958984375, "t": 520.2284545898438, "r": 567.8498942057291, "b": 507.9209798177083, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": false}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.06770833333333, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 271.02886962890625, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about the heart.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 742.6115112304688, "r": 103.16855875651042, "b": 726.9088948567709, "coord_origin": "BOTTOMLEFT"}, "text": "06.1", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 742.1871236165365, "r": 312.46543375651044, "b": 729.0308736165365, "coord_origin": "BOTTOMLEFT"}, "text": "Why is theheart described as an organ?", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 729.0308736165365, "r": 536.1382242838541, "b": 714.6014302571615, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 612.7466023763021, "r": 103.16855875651042, "b": 597.0439656575521, "coord_origin": "BOTTOMLEFT"}, "text": "06.2", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 611.4734090169271, "r": 485.3996175130208, "b": 599.1659545898438, "coord_origin": "BOTTOMLEFT"}, "text": "Valves in the heart keep the blood flowi", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 585.5853068033855, "r": 397.45263671875, "b": 573.277852376302, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 11 shows the heart with one of th", "furniture": false}, {"page": 26, "kind": "text", "label": "section_header", "bbox": {"l": 298.93511962890625, "t": 560.9703776041667, "r": 350.5194091796875, "b": 545.2677612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 11", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 386.4592692057292, "t": 487.55002848307294, "r": 415.6339925130208, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Valve", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 339.86049397786456, "r": 535.2926025390625, "b": 312.6991984049479, "coord_origin": "BOTTOMLEFT"}, "text": "Explain the effects on a person if the v", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 386.4592692057292, "t": 487.55002848307294, "r": 415.6339925130208, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Valve", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 26, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 27, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "27", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 548.4000651041666, "t": 790.5681660970052, "r": 586.8768717447916, "b": 764.6800638834635, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.5530497233073, "r": 349.2509358723958, "b": 735.3967997233073, "coord_origin": "BOTTOMLEFT"}, "text": "The faulty valve is replaced during an o", "furniture": false}, {"page": 27, "kind": "text", "label": "section_header", "bbox": {"l": 115.007568359375, "t": 723.0893351236979, "r": 200.8404337565104, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "text": "Biological valves:", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 703.1427612304688, "r": 294.7069091796875, "b": 689.9865112304688, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7arefrom animals or human donors", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 115.8532206217448, "t": 683.6205851236979, "r": 328.53265380859375, "b": 670.0399373372396, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7allow blood to flow through them normal", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 117.5445048014323, "t": 663.6740112304688, "r": 415.211181640625, "b": 651.3665568033854, "coord_origin": "BOTTOMLEFT"}, "text": "wear out and stiffen over time, so may n", "furniture": false}, {"page": 27, "kind": "text", "label": "section_header", "bbox": {"l": 113.73910522460938, "t": 627.6004231770834, "r": 208.8740437825521, "b": 613.5953776041666, "coord_origin": "BOTTOMLEFT"}, "text": "Mechanical valves:", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 119.2357889811198, "t": 606.8050537109375, "r": 292.16998291015625, "b": 594.9219970703125, "coord_origin": "BOTTOMLEFT"}, "text": "aremadefromsyntheticmaterials", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 117.96732584635417, "t": 587.2828776041666, "r": 367.8551025390625, "b": 575.3998209635417, "coord_origin": "BOTTOMLEFT"}, "text": "may cause blood clots on the surface of ", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 117.5445048014323, "t": 567.7607014973958, "r": 455.3792317708333, "b": 555.0288492838542, "coord_origin": "BOTTOMLEFT"}, "text": "require anti-clotting drugs to be taken ", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 549.0873209635417, "r": 353.9019775390625, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7can last for a very long time in ideal ", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 503.6770426432292, "r": 457.4933675130208, "b": 490.94517008463544, "coord_origin": "BOTTOMLEFT"}, "text": "A young woman enjoys extreme sports and ", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 478.63771565755206, "r": 322.19032796223956, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "The woman needs a heart valve replacing.", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 439.16896565755206, "r": 496.3929850260417, "b": 413.28086344401044, "coord_origin": "BOTTOMLEFT"}, "text": "Describe the advantages and disadvantage", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 413.28086344401044, "r": 536.5610758463541, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 157.37058512369788, "r": 563.1988525390625, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 27, "kind": "text", "label": "section_header", "bbox": {"l": 231.28361002604166, "t": 114.08225504557288, "r": 346.7139892578125, "b": 103.04799397786462, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOFQUESTIONS", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 157.37058512369788, "r": 563.1988525390625, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 775.2899424235026, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 28, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 71.87973531087239, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 29, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "31", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.95928955078125, "r": 66.38304646809895, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 31, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 32, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "section_header", "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Copyrightinformation", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "text": "For confidentialitypurposes,allacknowled", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "text": "Permissiontoreproduce all copyright mate", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Copyright @ 2022 AQA and its licensors.A", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "section_header", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 189.42423502604166, "t": 445.11049397786456, "r": 397.8754475911458, "b": 421.34438069661456, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 350.5194091796875, "t": 40.23752848307288, "r": 520.4938151041666, "b": 30.47646077473962, "coord_origin": "BOTTOMLEFT"}, "text": "226G8464/B/1H", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 32, "kind": "text", "label": "page_footer", "bbox": {"l": 468.4867350260417, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/B/1H", "furniture": true}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 38.79020690917969, "t": 799.173755645752, "r": 169.33946228027344, "b": 751.7147903442383, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 41.60017776489258, "t": 53.42999267578125, "r": 260.07659912109375, "b": 17.52685546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 499.9033508300781, "t": 546.5209045410156, "r": 543.2935180664062, "b": 492.9393005371094, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 43.52507019042969, "t": 52.93896484375, "r": 99.53034210205078, "b": 16.421630859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 43.83540725708008, "t": 53.10052490234375, "r": 99.11125946044922, "b": 17.51763916015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 46.03716278076172, "t": 776.4842300415039, "r": 105.5737075805664, "b": 759.054817199707, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 43.68577194213867, "t": 53.19873046875, "r": 99.13436889648438, "b": 17.61859130859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 122.65338134765625, "t": 537.9430236816406, "r": 527.3243408203125, "b": 211.9937744140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 43.79792404174805, "t": 53.151611328125, "r": 99.16613006591797, "b": 17.473876953125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 210.1001739501953, "t": 722.9609222412109, "r": 437.40350341796875, "b": 588.2078247070312, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 543.9209594726562, "t": 301.45977783203125, "r": 575.7850341796875, "b": 260.12310791015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 43.72502517700195, "t": 53.22161865234375, "r": 99.1192626953125, "b": 17.5057373046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 43.864070892333984, "t": 53.17596435546875, "r": 99.15371704101562, "b": 17.64910888671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 39.79059600830078, "t": 788.6095008850098, "r": 541.789794921875, "b": 75.71734619140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 43.723236083984375, "t": 53.26629638671875, "r": 99.15318298339844, "b": 17.52349853515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 43.75616455078125, "t": 53.192626953125, "r": 99.12259674072266, "b": 17.61572265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 211.35031127929688, "t": 577.80078125, "r": 437.13006591796875, "b": 333.9020690917969, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 38.89862060546875, "t": 787.7944641113281, "r": 539.64013671875, "b": 74.93182373046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 43.67311096191406, "t": 53.34393310546875, "r": 99.1761245727539, "b": 17.4755859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 43.86758041381836, "t": 53.16552734375, "r": 99.29812622070312, "b": 17.9110107421875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 543.5928955078125, "t": 182.55889892578125, "r": 575.81787109375, "b": 140.96905517578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 43.76656723022461, "t": 53.13525390625, "r": 99.1600341796875, "b": 17.290283203125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 40.030799865722656, "t": 788.2958564758301, "r": 538.69287109375, "b": 76.6881103515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 43.775657653808594, "t": 53.22589111328125, "r": 99.17627716064453, "b": 17.506103515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 62.90594482421875, "t": 576.3164978027344, "r": 515.8779907226562, "b": 233.9420166015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 43.7238655090332, "t": 53.290283203125, "r": 99.1736831665039, "b": 17.81878662109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 43.874149322509766, "t": 53.11767578125, "r": 99.29041290283203, "b": 17.4774169921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 543.7330932617188, "t": 168.60357666015625, "r": 575.3134765625, "b": 129.1944580078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 43.810359954833984, "t": 53.197509765625, "r": 99.216064453125, "b": 17.51507568359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 43.746456146240234, "t": 53.1395263671875, "r": 99.22604370117188, "b": 17.85919189453125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 43.6071891784668, "t": 53.246337890625, "r": 98.94551086425781, "b": 17.580078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 162.3031463623047, "t": 607.6539764404297, "r": 486.8704833984375, "b": 263.14532470703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 38.28224563598633, "t": 788.180477142334, "r": 583.4287109375, "b": 74.904052734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 43.81598663330078, "t": 53.3416748046875, "r": 99.18052673339844, "b": 17.67620849609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 43.47386169433594, "t": 53.084716796875, "r": 99.52220916748047, "b": 16.42510986328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 43.79328155517578, "t": 53.08135986328125, "r": 99.27262878417969, "b": 17.63385009765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 52.177303314208984, "t": 618.5329437255859, "r": 527.7835083007812, "b": 317.54632568359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 43.62387466430664, "t": 53.17352294921875, "r": 99.01427459716797, "b": 17.2744140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 43.77910614013672, "t": 53.0966796875, "r": 99.09918975830078, "b": 17.35565185546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 39.65533447265625, "t": 788.0855979919434, "r": 539.0, "b": 75.42669677734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 43.760948181152344, "t": 53.21307373046875, "r": 99.20094299316406, "b": 17.48699951171875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 43.79350280761719, "t": 53.09893798828125, "r": 99.17039489746094, "b": 17.39202880859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 543.257080078125, "t": 544.8421020507812, "r": 576.107666015625, "b": 503.1017761230469, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 83.00977325439453, "t": 743.1391143798828, "r": 104.40795135498047, "b": 726.835205078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 43.74662780761719, "t": 53.166748046875, "r": 99.2194595336914, "b": 17.3209228515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 238.89454650878906, "t": 528.76025390625, "r": 415.30877685546875, "b": 366.0852355957031, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 45.50212860107422, "t": 776.1840591430664, "r": 105.26959991455078, "b": 758.967529296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 43.626678466796875, "t": 53.157470703125, "r": 99.11552429199219, "b": 17.59197998046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 543.0776977539062, "t": 182.75701904296875, "r": 575.8231201171875, "b": 141.1480712890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 43.510581970214844, "t": 53.04644775390625, "r": 99.4729995727539, "b": 16.531005859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 43.75505828857422, "t": 53.18896484375, "r": 99.31659698486328, "b": 17.0916748046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 43.75211715698242, "t": 53.1778564453125, "r": 99.30067443847656, "b": 17.100341796875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 43.744197845458984, "t": 53.14459228515625, "r": 99.40373992919922, "b": 17.3238525390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 43.74562454223633, "t": 53.2369384765625, "r": 99.2490005493164, "b": 17.05267333984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 334.3735656738281, "t": 67.7763671875, "r": 539.0877685546875, "b": 32.14874267578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "table", "label": "table", "bbox": {"l": 443.4596252441406, "t": 396.157958984375, "r": 544.1646118164062, "b": 227.15399169921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}]} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/page_roles.json b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/page_roles.json new file mode 100644 index 0000000..38427e2 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/page_roles.json @@ -0,0 +1,228 @@ +{ + "pages": { + "1": { + "role": "cover", + "chars": 885, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "2": { + "role": "blank", + "chars": 129, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "3": { + "role": "question", + "chars": 452, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "4": { + "role": "question", + "chars": 362, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "5": { + "role": "question", + "chars": 545, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "6": { + "role": "question", + "chars": 302, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "7": { + "role": "continuation", + "chars": 228, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "8": { + "role": "question", + "chars": 316, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "9": { + "role": "question", + "chars": 405, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "10": { + "role": "question", + "chars": 257, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "11": { + "role": "question", + "chars": 213, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "12": { + "role": "question", + "chars": 653, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "13": { + "role": "question", + "chars": 278, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "14": { + "role": "question", + "chars": 454, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "15": { + "role": "question", + "chars": 249, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "16": { + "role": "question", + "chars": 275, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "17": { + "role": "question", + "chars": 429, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "18": { + "role": "continuation", + "chars": 321, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "19": { + "role": "question", + "chars": 332, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "20": { + "role": "blank", + "chars": 130, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "21": { + "role": "continuation", + "chars": 202, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "22": { + "role": "continuation", + "chars": 488, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "23": { + "role": "question", + "chars": 390, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "24": { + "role": "question", + "chars": 959, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "25": { + "role": "question", + "chars": 257, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "26": { + "role": "question", + "chars": 331, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "27": { + "role": "question", + "chars": 644, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "28": { + "role": "blank", + "chars": 130, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "29": { + "role": "appendix", + "chars": 131, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "30": { + "role": "appendix", + "chars": 131, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "31": { + "role": "blank", + "chars": 130, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "32": { + "role": "appendix", + "chars": 654, + "margins_enabled": true, + "source": "auto", + "confirmed": false + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/report.md b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/report.md new file mode 100644 index 0000000..aec10a4 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/report.md @@ -0,0 +1,15 @@ +# AQA GCSE Combined Science Trilogy 8464/B/1H 2022 Jun (image-only OCR baseline) + +- **slug:** `b1-aqa-combined-8464-b1h-2022jun` · **board:** aqa · **level:** GCSE · **path:** B1 image-only OCR (RapidOCR margin-pass) +- **questions/parts:** 6 / 32 +- **marks:** 62/70 (88.6% of official max) +- **coverage vs GT:** 88.9% (missed ['02.1', '03.1', '04.1', '05.1']) +- **G6 verdict:** warn +- **answer-region count:** 214 + +**Flags (human-review hints):** +- [warn] C1_marks_sum: marks sum 62 below official max 70 (-8) — missing parts or unread marks +- [warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks — unread/garbled mark tokens +- [warn] C5_coverage: 47.6% vs GT (20/42); missed ['02.1', '03.1', '04.1', '05.1', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3'] + +**Artifacts:** `structured.json`, `validate.json`, `furniture.json`, `bands.json`, `page_roles.json`, `template.json`, `overlays/` (0 images) diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/structured.json b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/structured.json new file mode 100644 index 0000000..548c0f4 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/structured.json @@ -0,0 +1,3369 @@ +{ + "board": "aqa", + "paper_code": null, + "front_matter": { + "exam_board": "AQA", + "qualification": "GCSE", + "subject": "H Combined Science", + "tier": "Higher", + "time_allowed": "1 hour 15 minutes", + "max_marks": 70, + "session": "Jun 2022" + }, + "path": "aqa-docling+rapidocr (v1)", + "pages": [], + "questions": [ + { + "question": "01", + "parts": [ + { + "label": "01.1", + "page": 3, + "bbox": { + "l": 49.47016906738281, + "t": 745.582285563151, + "r": 99.78598022460938, + "b": 731.5772399902344, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.2", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 440.44215901692706, + "r": 390.2646484375, + "b": 424.73952229817706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.3", + "page": 4, + "bbox": { + "l": 49.04734802246094, + "t": 776.1387329101562, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.4", + "page": 5, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.5", + "page": 5, + "bbox": { + "l": 47.77887980143229, + "t": 594.9219970703125, + "r": 103.5913798014323, + "b": 579.643778483073, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.6", + "page": 5, + "bbox": { + "l": 48.201700846354164, + "t": 279.1719767252604, + "r": 486.6680908203125, + "b": 263.4693806966146, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.7", + "page": 6, + "bbox": { + "l": 49.89299011230469, + "t": 521.926025390625, + "r": 104.85984293619792, + "b": 506.22340901692706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.8", + "page": 6, + "bbox": { + "l": 48.201700846354164, + "t": 344.95322672526044, + "r": 102.32291666666667, + "b": 328.82623291015625, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "02", + "parts": [ + { + "label": "02.2", + "page": 8, + "bbox": { + "l": 48.62452697753906, + "t": 350.04600016276044, + "r": 103.5913798014323, + "b": 334.34336344401044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.3", + "page": 8, + "bbox": { + "l": 49.47016906738281, + "t": 232.06414794921875, + "r": 101.47727457682292, + "b": 217.21030680338538, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.4", + "page": 9, + "bbox": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 102.74573771158855, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.5", + "page": 9, + "bbox": { + "l": 49.47016906738281, + "t": 633.1175537109375, + "r": 105.70548502604167, + "b": 618.6881306966146, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.6", + "page": 10, + "bbox": { + "l": 49.47016906738281, + "t": 736.6699829101562, + "r": 101.47727457682292, + "b": 721.816151936849, + "coord_origin": "BOTTOMLEFT" + }, + "marks": null, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.7", + "page": 11, + "bbox": { + "l": 48.62452697753906, + "t": 218.90789794921875, + "r": 103.5913798014323, + "b": 202.78086344401038, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "03", + "parts": [ + { + "label": "03.2", + "page": 12, + "bbox": { + "l": 48.62452697753906, + "t": 214.23952229817712, + "r": 103.5913798014323, + "b": 198.11252848307288, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.3", + "page": 13, + "bbox": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 101.47727457682292, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.4", + "page": 13, + "bbox": { + "l": 50.31581115722656, + "t": 618.6881306966146, + "r": 102.74573771158855, + "b": 604.2586873372396, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.5", + "page": 14, + "bbox": { + "l": 50.31581115722656, + "t": 189.62461344401038, + "r": 101.47727457682292, + "b": 176.04396565755212, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.6", + "page": 15, + "bbox": { + "l": 47.77887980143229, + "t": 775.2899424235026, + "r": 102.74573771158855, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.7", + "page": 15, + "bbox": { + "l": 48.62452697753906, + "t": 478.63771565755206, + "r": 105.2826639811198, + "b": 462.51072184244794, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "04", + "parts": [ + { + "label": "04.2", + "page": 16, + "bbox": { + "l": 49.04734802246094, + "t": 603.4098917643229, + "r": 313.73388671875, + "b": 587.2828776041666, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.3", + "page": 17, + "bbox": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.4", + "page": 19, + "bbox": { + "l": 48.201700846354164, + "t": 406.06614176432294, + "r": 102.74573771158855, + "b": 388.66595458984375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.5", + "page": 19, + "bbox": { + "l": 50.31581115722656, + "t": 195.99053955078125, + "r": 101.054443359375, + "b": 182.83428955078125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "05", + "parts": [ + { + "label": "05.2", + "page": 23, + "bbox": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.3", + "page": 23, + "bbox": { + "l": 49.89299011230469, + "t": 541.8725992838542, + "r": 101.9000956217448, + "b": 527.4431762695312, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.4", + "page": 23, + "bbox": { + "l": 49.47016906738281, + "t": 322.4603068033854, + "r": 103.16855875651042, + "b": 308.0308634440104, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.5", + "page": 24, + "bbox": { + "l": 50.31581115722656, + "t": 351.31919352213544, + "r": 101.9000956217448, + "b": 336.88975016276044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.6", + "page": 25, + "bbox": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 101.47727457682292, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "06", + "parts": [ + { + "label": "06.1", + "page": 26, + "bbox": { + "l": 49.04734802246094, + "t": 742.6115112304688, + "r": 103.16855875651042, + "b": 726.9088948567709, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.2", + "page": 26, + "bbox": { + "l": 48.62452697753906, + "t": 612.7466023763021, + "r": 103.16855875651042, + "b": 597.0439656575521, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.3", + "page": 27, + "bbox": { + "l": 50.31581115722656, + "t": 774.8655446370443, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + } + ] + } + ], + "regions": [ + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 555.4532470703125, + "r": 545.0174967447916, + "b": 491.36956787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "GCSE H COMBINED SCIENCE: TRILOGY" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 398.00262451171875, + "r": 92.17519124348958, + "b": 385.27077229817706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Materials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 370.41697184244794, + "r": 83.71875, + "b": 358.95827229817706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a ruler" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.7452646891276, + "t": 357.68511962890625, + "r": 155.1756591796875, + "b": 347.07521565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a scientific calculator." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 331.37261962890625, + "r": 108.66524251302083, + "b": 319.9139200846354, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Instructions" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 319.06512451171875, + "r": 231.28361002604166, + "b": 305.4844767252604, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Use black ink or black ball-point pen." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 293.1770222981771, + "r": 241.0085245768229, + "b": 278.74761962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Fill in the boxes at the top of this page." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 306.7576700846354, + "r": 242.6998087565104, + "b": 291.4794718424479, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Pencil should only be used for drawing." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 278.74761962890625, + "r": 269.7604166666667, + "b": 266.0157267252604, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Answer all questions in the spaces provided." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 266.0157267252604, + "r": 424.0904134114583, + "b": 240.12762451171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "If you need extra space for your answer(s), use the lined pages at the end of th" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 239.70322672526038, + "r": 430.0099283854167, + "b": 215.51271565755212, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Do all rough work in this book. Cross through any work you do not want to be mar" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 214.23952229817712, + "r": 356.4389241536458, + "b": 201.08327229817712, + "coord_origin": "BOTTOMLEFT" + }, + "text": "In all calculations,show clearly howyou work out your answer." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 187.50262451171875, + "r": 106.12831624348958, + "b": 176.04396565755212, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Information" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 173.92197672526038, + "r": 245.23673502604166, + "b": 161.61452229817712, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The maximum mark for this paper is 70." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 42.282196044921875, + "t": 160.34136962890625, + "r": 281.59942626953125, + "b": 149.30710856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Themarksforquestionsareshowninbrackets." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 47.77887980143229, + "t": 147.60951741536462, + "r": 324.304443359375, + "b": 135.30206298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You are expected to use a calculator where appropriate." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 135.30206298828125, + "r": 475.6747233072917, + "b": 122.14581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7You are reminded of the need for good English and clear presentation in your an" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 315.42519124348956, + "t": 20.71531168619788, + "r": 367.4322916666667, + "b": 12.227437337239621, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/E14" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 447.7684733072917, + "t": 33.44716389973962, + "r": 545.4403076171875, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 2, + "bbox": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.86126708984375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 2, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 3, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 3, + "bbox": { + "l": 114.58474731445312, + "t": 677.6790568033854, + "r": 250.7334187825521, + "b": 665.3716023763021, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Both have a cell membrane." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 3, + "bbox": { + "l": 115.007568359375, + "t": 640.332275390625, + "r": 217.7533162434896, + "b": 628.8736165364584, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Bothhaveacell wall." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 3, + "bbox": { + "l": 114.16192626953125, + "t": 603.8342895507812, + "r": 217.7533162434896, + "b": 590.2536417643229, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Both have a nucleus." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 3, + "bbox": { + "l": 114.58474731445312, + "t": 566.0631306966145, + "r": 219.4446004231771, + "b": 552.4824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Both have cytoplasm." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 3, + "bbox": { + "l": 114.58474731445312, + "t": 529.1407470703125, + "r": 213.52508544921875, + "b": 516.4088948567708, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Both have plasmids." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 440.44215901692706, + "r": 390.2646484375, + "b": 424.73952229817706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01.2 Salmonella food poisoning is caused by bacteria in food." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 3, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 4, + "bbox": { + "l": 301.89487711588544, + "t": 565.214335123698, + "r": 347.5596516927083, + "b": 550.784891764323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 4, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 5, + "bbox": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 5, + "bbox": { + "l": 115.43039957682292, + "t": 561.394775390625, + "r": 216.90767415364584, + "b": 549.0873209635417, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7thechildfeltbetter" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 5, + "bbox": { + "l": 113.73910522460938, + "t": 543.1457926432292, + "r": 332.76088460286456, + "b": 528.7163492838542, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7there were still bacteria in the child's body." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 5, + "bbox": { + "l": 115.43039957682292, + "t": 441.71535237630206, + "r": 339.9488525390625, + "b": 430.68105061848956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Bacteriahadbecomeimmunetotheantibiotic." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 5, + "bbox": { + "l": 115.007568359375, + "t": 405.64174397786456, + "r": 343.3314208984375, + "b": 393.33428955078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The child had becomeresistant to thebacteria." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 5, + "bbox": { + "l": 114.58474731445312, + "t": 368.71938069661456, + "r": 356.4389241536458, + "b": 355.56313069661456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Therewerefewer toxins in the body than at day 0" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 5, + "bbox": { + "l": 48.201700846354164, + "t": 279.1719767252604, + "r": 486.6680908203125, + "b": 263.4693806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01.6 Suggest why doctors do not give antibiotics to patients with minor infectio" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 5, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 286.67327880859375, + "t": 809.6659495035807, + "r": 291.7471516927083, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 6, + "bbox": { + "l": 115.007568359375, + "t": 774.8655446370443, + "r": 359.398681640625, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 2 shows blood viewed using a microscope." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 6, + "bbox": { + "l": 302.3177083333333, + "t": 748.5530497233073, + "r": 348.4053141276042, + "b": 734.1236063639323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 2" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 6, + "bbox": { + "l": 204.2230021158854, + "t": 429.83229573567706, + "r": 213.1022745768229, + "b": 419.64678955078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 6, + "bbox": { + "l": 363.6268717447917, + "t": 428.55910237630206, + "r": 370.3920491536458, + "b": 420.91998291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 6, + "bbox": { + "l": 204.2230021158854, + "t": 277.8988240559896, + "r": 212.679443359375, + "b": 268.1377156575521, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 6, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 7, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 8, + "bbox": { + "l": 115.007568359375, + "t": 774.8655446370443, + "r": 457.9161783854167, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3 shows how a fertilised egg cell can produce specialised cells." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 8, + "bbox": { + "l": 302.3177083333333, + "t": 749.4018351236979, + "r": 347.9824625651042, + "b": 733.69921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 8, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 9, + "bbox": { + "l": 286.25046793619794, + "t": 810.0903447469076, + "r": 291.7471516927083, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 9, + "bbox": { + "l": 302.3177083333333, + "t": 605.5318806966146, + "r": 348.4053141276042, + "b": 591.1024373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 9, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 10, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 10, + "bbox": { + "l": 285.82763671875, + "t": 707.38671875, + "r": 331.06960042317706, + "b": 694.23046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 10, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 11, + "bbox": { + "l": 282.445068359375, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 11, + "bbox": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 12, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 12, + "bbox": { + "l": 114.16192626953125, + "t": 677.6790568033854, + "r": 308.23720296223956, + "b": 664.5228068033854, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Liver, small intestine and large intestine" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 12, + "bbox": { + "l": 115.007568359375, + "t": 640.332275390625, + "r": 282.86789957682294, + "b": 627.6004231770834, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Salivary glands, stomach and liver" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 12, + "bbox": { + "l": 114.58474731445312, + "t": 604.6830851236979, + "r": 335.72064208984375, + "b": 590.2536417643229, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Salivary glands, pancreas and small intestine" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 12, + "bbox": { + "l": 115.007568359375, + "t": 566.9119262695312, + "r": 302.7405192057292, + "b": 553.7556762695312, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Stomach, pancreas and large intestine" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 12, + "bbox": { + "l": 115.007568359375, + "t": 411.58327229817706, + "r": 290.4786783854167, + "b": 399.27581787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Prepare amylase solution at pH 5" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 12, + "bbox": { + "l": 114.16192626953125, + "t": 385.69517008463544, + "r": 386.0364583333333, + "b": 373.38771565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Mix the amylase solution with starch in a boiling tube." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 12, + "bbox": { + "l": 114.16192626953125, + "t": 360.23146565755206, + "r": 524.7220458984375, + "b": 335.61655680338544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Remove a drop of the amylase-starch mixture every 30 seconds and test it for the" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 12, + "bbox": { + "l": 114.16192626953125, + "t": 322.0359090169271, + "r": 394.9156901041667, + "b": 308.8796590169271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Record the time when all the starch has been digested." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 12, + "bbox": { + "l": 114.58474731445312, + "t": 295.29901123046875, + "r": 509.9232991536458, + "b": 268.98651123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Repeat steps 1 to 4 using amylase solution prepared at pH 6, then at pH 7 and th" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 12, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 13, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 13, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 14, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "14" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 115.007568359375, + "t": 722.2405497233073, + "r": 346.7139892578125, + "b": 709.9330851236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Prepare amylase solution at the optimum pH." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.58474731445312, + "t": 696.7768351236979, + "r": 386.0364583333333, + "b": 684.0449829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Mix the amylase solution with starch in a boiling tube." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 14, + "bbox": { + "l": 114.16192626953125, + "t": 670.4643351236979, + "r": 458.3389892578125, + "b": 657.3080851236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Measure the concentration of sugar every 10 seconds for 2 minutes." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 14, + "bbox": { + "l": 115.43039957682292, + "t": 628.8736165364584, + "r": 299.3579508463542, + "b": 616.1417643229166, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7 shows the scientist's results." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 14, + "bbox": { + "l": 268.491943359375, + "t": 603.8342895507812, + "r": 313.73388671875, + "b": 589.4048665364584, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 14, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 15, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "text": "15" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 15, + "bbox": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 16, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 297.24383544921875, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 16, + "bbox": { + "l": 49.04734802246094, + "t": 603.4098917643229, + "r": 313.73388671875, + "b": 587.2828776041666, + "coord_origin": "BOTTOMLEFT" + }, + "text": "04.2 What is the equation for photosynthesis?" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 16, + "bbox": { + "l": 115.43039957682292, + "t": 534.2334798177083, + "r": 284.55918375651044, + "b": 521.926025390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C6H12O6+ CO2\u2192 6O2 + 6H2O" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 16, + "bbox": { + "l": 115.007568359375, + "t": 498.15989176432294, + "r": 257.92138671875, + "b": 484.57924397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O+ OH\u2190O\u00b2H +\u00b2O" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 16, + "bbox": { + "l": 114.16192626953125, + "t": 461.23752848307294, + "r": 293.015625, + "b": 448.08127848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6CO2 + 6H2O \u2192 CH12O6 + 6O2" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 16, + "bbox": { + "l": 114.16192626953125, + "t": 423.89072672526044, + "r": 293.015625, + "b": 410.73447672526044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6O2 + 6H2O \u2192 CH12O6 + 6CO2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 16, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 17, + "bbox": { + "l": 284.1363525390625, + "t": 810.5147399902344, + "r": 295.1297200520833, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "17" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 17, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 18, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 18, + "bbox": { + "l": 302.7405192057292, + "t": 634.3907470703125, + "r": 347.9824625651042, + "b": 621.2344970703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 18, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 19, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "19" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 19, + "bbox": { + "l": 268.491943359375, + "t": 775.2899424235026, + "r": 313.73388671875, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 20, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 20, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 21, + "bbox": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 22, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 22, + "bbox": { + "l": 114.16192626953125, + "t": 729.8796590169271, + "r": 158.9810587565104, + "b": 716.7234090169271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "It shows:" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 114.16192626953125, + "t": 710.3574829101562, + "r": 366.5866292317708, + "b": 697.2012329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the number of new cases of skin cancer in 1 year" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 22, + "bbox": { + "l": 265.5321858723958, + "t": 646.2738037109375, + "r": 316.6936442057292, + "b": 631.8443806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 22, + "bbox": { + "l": 53.27556864420573, + "t": 396.30507405598956, + "r": 75.26230875651042, + "b": 381.02683512369794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Key" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 81.60463968912761, + "t": 345.37762451171875, + "r": 309.92848714192706, + "b": 333.07017008463544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Number of males with skin cancer per 1oo000" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 22, + "bbox": { + "l": 78.22206115722656, + "t": 329.2506306966146, + "r": 319.23057047526044, + "b": 316.94317626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Number of femaleswith skin cancer per 10o000" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 22, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 23, + "bbox": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 23, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 24, + "bbox": { + "l": 115.007568359375, + "t": 774.441151936849, + "r": 255.80729166666666, + "b": 761.7092946370443, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10 is repeated below." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 24, + "bbox": { + "l": 265.5321858723958, + "t": 748.128651936849, + "r": 316.2708333333333, + "b": 734.972401936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 24, + "bbox": { + "l": 54.12121073404948, + "t": 497.73549397786456, + "r": 73.99384053548177, + "b": 484.57924397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Key" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 82.45028177897136, + "t": 481.18410237630206, + "r": 165.3233846028646, + "b": 467.60345458984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Newmalecases" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 82.45028177897136, + "t": 465.05706787109375, + "r": 174.6254679361979, + "b": 452.32521565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Newfemalecases" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 63.00047302246094, + "t": 448.50567626953125, + "r": 309.92848714192706, + "b": 435.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "--Number of maleswithskin cancerper 1ooo00" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 81.60463968912761, + "t": 431.95424397786456, + "r": 318.3849283854167, + "b": 420.07118733723956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Numberoffemaleswithskincancerper1oooo0" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 24, + "bbox": { + "l": 115.007568359375, + "t": 774.441151936849, + "r": 255.80729166666666, + "b": 761.7092946370443, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10 is repeated below." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 24, + "bbox": { + "l": 265.5321858723958, + "t": 748.128651936849, + "r": 316.2708333333333, + "b": 734.972401936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 24, + "bbox": { + "l": 54.12121073404948, + "t": 497.73549397786456, + "r": 73.99384053548177, + "b": 484.57924397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Key" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 82.45028177897136, + "t": 481.18410237630206, + "r": 165.3233846028646, + "b": 467.60345458984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Newmalecases" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 82.45028177897136, + "t": 465.05706787109375, + "r": 174.6254679361979, + "b": 452.32521565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Newfemalecases" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 63.00047302246094, + "t": 448.50567626953125, + "r": 309.92848714192706, + "b": 435.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "--Number of maleswithskin cancerper 1ooo00" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 81.60463968912761, + "t": 431.95424397786456, + "r": 318.3849283854167, + "b": 420.07118733723956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Numberoffemaleswithskincancerper1oooo0" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 24, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "26" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 26, + "bbox": { + "l": 298.93511962890625, + "t": 560.9703776041667, + "r": 350.5194091796875, + "b": 545.2677612304688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 11" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 26, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 27, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 27, + "bbox": { + "l": 115.007568359375, + "t": 723.0893351236979, + "r": 200.8404337565104, + "b": 709.0842997233073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Biological valves:" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 116.27604166666667, + "t": 703.1427612304688, + "r": 294.7069091796875, + "b": 689.9865112304688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7arefrom animals or human donors" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 115.8532206217448, + "t": 683.6205851236979, + "r": 328.53265380859375, + "b": 670.0399373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7allow blood to flow through them normally" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 117.5445048014323, + "t": 663.6740112304688, + "r": 415.211181640625, + "b": 651.3665568033854, + "coord_origin": "BOTTOMLEFT" + }, + "text": "wear out and stiffen over time, so may need to be replaced." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 27, + "bbox": { + "l": 113.73910522460938, + "t": 627.6004231770834, + "r": 208.8740437825521, + "b": 613.5953776041666, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Mechanical valves:" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 119.2357889811198, + "t": 606.8050537109375, + "r": 292.16998291015625, + "b": 594.9219970703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "aremadefromsyntheticmaterials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 117.96732584635417, + "t": 587.2828776041666, + "r": 367.8551025390625, + "b": 575.3998209635417, + "coord_origin": "BOTTOMLEFT" + }, + "text": "may cause blood clots on the surface of the valve" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 117.5445048014323, + "t": 567.7607014973958, + "r": 455.3792317708333, + "b": 555.0288492838542, + "coord_origin": "BOTTOMLEFT" + }, + "text": "require anti-clotting drugs to be taken for the rest of the patient's life" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 116.27604166666667, + "t": 549.0873209635417, + "r": 353.9019775390625, + "b": 536.35546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7can last for a very long time in ideal conditions." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 27, + "bbox": { + "l": 231.28361002604166, + "t": 114.08225504557288, + "r": 346.7139892578125, + "b": 103.04799397786462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ENDOFQUESTIONS" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 28, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "29" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 29, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "30" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 30, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "31" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 31, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 32, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "32" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 32, + "bbox": { + "l": 54.54403177897135, + "t": 162.88771565755212, + "r": 134.03455607096353, + "b": 153.12660725911462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Copyrightinformation" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 32, + "bbox": { + "l": 173.77982584635416, + "t": 774.8655446370443, + "r": 403.7949625651042, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "There are no questions printed on this page" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 32, + "bbox": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/B/1H" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 38.79020690917969, + "t": 799.173755645752, + "r": 169.33946228027344, + "b": 751.7147903442383, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 41.60017776489258, + "t": 53.42999267578125, + "r": 260.07659912109375, + "b": 17.52685546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 499.9033508300781, + "t": 546.5209045410156, + "r": 543.2935180664062, + "b": 492.9393005371094, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 43.52507019042969, + "t": 52.93896484375, + "r": 99.53034210205078, + "b": 16.421630859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 43.83540725708008, + "t": 53.10052490234375, + "r": 99.11125946044922, + "b": 17.51763916015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 46.03716278076172, + "t": 776.4842300415039, + "r": 105.5737075805664, + "b": 759.054817199707, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 43.68577194213867, + "t": 53.19873046875, + "r": 99.13436889648438, + "b": 17.61859130859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 122.65338134765625, + "t": 537.9430236816406, + "r": 527.3243408203125, + "b": 211.9937744140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 43.79792404174805, + "t": 53.151611328125, + "r": 99.16613006591797, + "b": 17.473876953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 210.1001739501953, + "t": 722.9609222412109, + "r": 437.40350341796875, + "b": 588.2078247070312, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 543.9209594726562, + "t": 301.45977783203125, + "r": 575.7850341796875, + "b": 260.12310791015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 43.72502517700195, + "t": 53.22161865234375, + "r": 99.1192626953125, + "b": 17.5057373046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 43.864070892333984, + "t": 53.17596435546875, + "r": 99.15371704101562, + "b": 17.64910888671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 39.79059600830078, + "t": 788.6095008850098, + "r": 541.789794921875, + "b": 75.71734619140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 43.723236083984375, + "t": 53.26629638671875, + "r": 99.15318298339844, + "b": 17.52349853515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 43.75616455078125, + "t": 53.192626953125, + "r": 99.12259674072266, + "b": 17.61572265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 211.35031127929688, + "t": 577.80078125, + "r": 437.13006591796875, + "b": 333.9020690917969, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 38.89862060546875, + "t": 787.7944641113281, + "r": 539.64013671875, + "b": 74.93182373046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 43.67311096191406, + "t": 53.34393310546875, + "r": 99.1761245727539, + "b": 17.4755859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 43.86758041381836, + "t": 53.16552734375, + "r": 99.29812622070312, + "b": 17.9110107421875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 543.5928955078125, + "t": 182.55889892578125, + "r": 575.81787109375, + "b": 140.96905517578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 43.76656723022461, + "t": 53.13525390625, + "r": 99.1600341796875, + "b": 17.290283203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 40.030799865722656, + "t": 788.2958564758301, + "r": 538.69287109375, + "b": 76.6881103515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 43.775657653808594, + "t": 53.22589111328125, + "r": 99.17627716064453, + "b": 17.506103515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 62.90594482421875, + "t": 576.3164978027344, + "r": 515.8779907226562, + "b": 233.9420166015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 43.7238655090332, + "t": 53.290283203125, + "r": 99.1736831665039, + "b": 17.81878662109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 43.874149322509766, + "t": 53.11767578125, + "r": 99.29041290283203, + "b": 17.4774169921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 543.7330932617188, + "t": 168.60357666015625, + "r": 575.3134765625, + "b": 129.1944580078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 43.810359954833984, + "t": 53.197509765625, + "r": 99.216064453125, + "b": 17.51507568359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 43.746456146240234, + "t": 53.1395263671875, + "r": 99.22604370117188, + "b": 17.85919189453125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 43.6071891784668, + "t": 53.246337890625, + "r": 98.94551086425781, + "b": 17.580078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 162.3031463623047, + "t": 607.6539764404297, + "r": 486.8704833984375, + "b": 263.14532470703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 38.28224563598633, + "t": 788.180477142334, + "r": 583.4287109375, + "b": 74.904052734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 43.81598663330078, + "t": 53.3416748046875, + "r": 99.18052673339844, + "b": 17.67620849609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 43.47386169433594, + "t": 53.084716796875, + "r": 99.52220916748047, + "b": 16.42510986328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 43.79328155517578, + "t": 53.08135986328125, + "r": 99.27262878417969, + "b": 17.63385009765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 52.177303314208984, + "t": 618.5329437255859, + "r": 527.7835083007812, + "b": 317.54632568359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 43.62387466430664, + "t": 53.17352294921875, + "r": 99.01427459716797, + "b": 17.2744140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 43.77910614013672, + "t": 53.0966796875, + "r": 99.09918975830078, + "b": 17.35565185546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 39.65533447265625, + "t": 788.0855979919434, + "r": 539.0, + "b": 75.42669677734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 43.760948181152344, + "t": 53.21307373046875, + "r": 99.20094299316406, + "b": 17.48699951171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 43.79350280761719, + "t": 53.09893798828125, + "r": 99.17039489746094, + "b": 17.39202880859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 543.257080078125, + "t": 544.8421020507812, + "r": 576.107666015625, + "b": 503.1017761230469, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 83.00977325439453, + "t": 743.1391143798828, + "r": 104.40795135498047, + "b": 726.835205078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 43.74662780761719, + "t": 53.166748046875, + "r": 99.2194595336914, + "b": 17.3209228515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 238.89454650878906, + "t": 528.76025390625, + "r": 415.30877685546875, + "b": 366.0852355957031, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 45.50212860107422, + "t": 776.1840591430664, + "r": 105.26959991455078, + "b": 758.967529296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 43.626678466796875, + "t": 53.157470703125, + "r": 99.11552429199219, + "b": 17.59197998046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 543.0776977539062, + "t": 182.75701904296875, + "r": 575.8231201171875, + "b": 141.1480712890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 43.510581970214844, + "t": 53.04644775390625, + "r": 99.4729995727539, + "b": 16.531005859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 43.75505828857422, + "t": 53.18896484375, + "r": 99.31659698486328, + "b": 17.0916748046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 43.75211715698242, + "t": 53.1778564453125, + "r": 99.30067443847656, + "b": 17.100341796875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 43.744197845458984, + "t": 53.14459228515625, + "r": 99.40373992919922, + "b": 17.3238525390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 43.74562454223633, + "t": 53.2369384765625, + "r": 99.2490005493164, + "b": 17.05267333984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 334.3735656738281, + "t": 67.7763671875, + "r": 539.0877685546875, + "b": 32.14874267578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 1, + "bbox": { + "l": 443.4596252441406, + "t": 396.157958984375, + "r": 544.1646118164062, + "b": 227.15399169921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + } + ], + "tables": [], + "stats": { + "n_questions": 6, + "n_parts": 32, + "marks_parts_known": 31, + "marks_sum": 62, + "marks_check": { + "sum": 62, + "expected_max": 70, + "pct": 88.6 + }, + "gemma_answer_regions": 0, + "gemma_marks_filled": 0, + "gemma_marks_gapfilled": 0, + "n_data_tables": 0, + "n_furniture_tables": 1, + "table_sources": {}, + "table_pages": [], + "region_type_counts": { + "context_caption": 12, + "context_data": 1, + "context_figure": 55, + "furniture": 65, + "heading": 18, + "instruction": 36, + "mcq_option": 27 + } + }, + "coverage": { + "coverage_pct": 47.6, + "recovered": 20, + "total": 42, + "missed": [ + "02.1", + "03.1", + "04.1", + "05.1", + "07.1", + "07.2", + "07.3", + "08.1", + "08.2", + "08.3", + "08.4", + "08.5", + "09.1", + "09.2", + "09.3", + "10.1", + "10.2", + "10.3", + "11.1", + "11.2", + "11.3", + "11.4" + ], + "source": "builtin-physics-gt" + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/template.json b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/template.json new file mode 100644 index 0000000..00ef9da --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/template.json @@ -0,0 +1,3770 @@ +{ + "meta": { + "schema": "exam-template/first-pass/v1", + "board": "aqa", + "paper_code": null, + "source_pdf": "samples/b1/aqa-combined-8464-b1h-2022jun.pdf", + "n_pages": 32, + "coord_origin": "BOTTOMLEFT", + "units": "pdf_points", + "generated_at": "2026-06-08T01:49:04", + "ui_principle": "directional limits = draggable axis-locked lines; object footprints = boxes", + "confirmed": false, + "confirmed_by": null, + "confirmed_at": null + }, + "margins": [ + { + "edge": "left", + "axis": "x", + "value": 48.6, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "right", + "axis": "x", + "value": 538.3, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "bottom", + "axis": "y", + "value": 210.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "bottom", + "axis": "y", + "value": 260.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "top", + "axis": "y", + "value": 788.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "top", + "axis": "y", + "value": 787.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "bottom", + "axis": "y", + "value": 74.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "bottom", + "axis": "y", + "value": 185.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "top", + "axis": "y", + "value": 788.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "bottom", + "axis": "y", + "value": 116.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "bottom", + "axis": "y", + "value": 410.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "bottom", + "axis": "y", + "value": 263.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "top", + "axis": "y", + "value": 789.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "bottom", + "axis": "y", + "value": 316.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "top", + "axis": "y", + "value": 788.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "top", + "axis": "y", + "value": 748.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "bottom", + "axis": "y", + "value": 312.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "top", + "axis": "y", + "value": 748.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "bottom", + "axis": "y", + "value": 103.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "top", + "axis": "y", + "value": 788.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "bottom", + "axis": "y", + "value": 745.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "top", + "axis": "y", + "value": 771.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "bottom", + "axis": "y", + "value": 745.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "bottom", + "axis": "y", + "value": 30.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + } + ], + "pages": { + "1": { + "role": "cover", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 447.7684733072917, + "t": 33.44716389973962, + "r": 545.4403076171875, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 38.79020690917969, + "t": 799.173755645752, + "r": 169.33946228027344, + "b": 751.7147903442383, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 41.60017776489258, + "t": 53.42999267578125, + "r": 260.07659912109375, + "b": 17.52685546875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 499.9033508300781, + "t": 546.5209045410156, + "r": 543.2935180664062, + "b": 492.9393005371094, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "2": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.86126708984375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 27.93007405598962, + "r": 80.33617146809895, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.171875, + "t": 790.1437733968099, + "r": 583.9171142578125, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.52507019042969, + "t": 52.93896484375, + "r": 99.53034210205078, + "b": 16.421630859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "3": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.1", + "question": "01", + "y_start": 745.6, + "y_end": 440.4, + "label_box": { + "l": 49.47016906738281, + "t": 745.582285563151, + "r": 99.78598022460938, + "b": 731.5772399902344, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 745.6, + "r": 538.3, + "b": 440.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.2", + "question": "01", + "y_start": 440.4, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 440.44215901692706, + "r": 390.2646484375, + "b": 424.73952229817706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 440.4, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 775.2899424235026, + "r": 81.1818135579427, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.83540725708008, + "t": 53.10052490234375, + "r": 99.11125946044922, + "b": 17.51763916015625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "4": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.3", + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 776.1387329101562, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 776.1, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.68577194213867, + "t": 53.19873046875, + "r": 99.13436889648438, + "b": 17.61859130859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "5": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.4", + "question": "01", + "y_start": 775.3, + "y_end": 594.9, + "label_box": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 775.3, + "r": 538.3, + "b": 594.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.5", + "question": "01", + "y_start": 594.9, + "y_end": 279.2, + "label_box": { + "l": 47.77887980143229, + "t": 594.9219970703125, + "r": 103.5913798014323, + "b": 579.643778483073, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 594.9, + "r": 538.3, + "b": 279.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.6", + "question": "01", + "y_start": 279.2, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 279.1719767252604, + "r": 486.6680908203125, + "b": 263.4693806966146, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 279.2, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.79792404174805, + "t": 53.151611328125, + "r": 99.16613006591797, + "b": 17.473876953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "6": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 521.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.7", + "question": "01", + "y_start": 521.9, + "y_end": 345.0, + "label_box": { + "l": 49.89299011230469, + "t": 521.926025390625, + "r": 104.85984293619792, + "b": 506.22340901692706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 521.9, + "r": 538.3, + "b": 345.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.8", + "question": "01", + "y_start": 345.0, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 344.95322672526044, + "r": 102.32291666666667, + "b": 328.82623291015625, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 345.0, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 286.67327880859375, + "t": 809.6659495035807, + "r": 291.7471516927083, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.11049397786462, + "r": 78.22206115722656, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.72502517700195, + "t": 53.22161865234375, + "r": 99.1192626953125, + "b": 17.5057373046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 210.1001739501953, + "t": 722.9609222412109, + "r": 437.40350341796875, + "b": 588.2078247070312, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 543.9209594726562, + "t": 301.45977783203125, + "r": 575.7850341796875, + "b": 260.12310791015625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "7": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 80.75899251302083, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.864070892333984, + "t": 53.17596435546875, + "r": 99.15371704101562, + "b": 17.64910888671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "8": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 350.0, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.2", + "question": "02", + "y_start": 350.0, + "y_end": 232.1, + "label_box": { + "l": 48.62452697753906, + "t": 350.04600016276044, + "r": 103.5913798014323, + "b": 334.34336344401044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 350.0, + "r": 538.3, + "b": 232.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.3", + "question": "02", + "y_start": 232.1, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 232.06414794921875, + "r": 101.47727457682292, + "b": 217.21030680338538, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 232.1, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 71.87973531087239, + "t": 25.38368733723962, + "r": 79.4905293782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.723236083984375, + "t": 53.26629638671875, + "r": 99.15318298339844, + "b": 17.52349853515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "9": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.4", + "question": "02", + "y_start": 775.7, + "y_end": 633.1, + "label_box": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 102.74573771158855, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 775.7, + "r": 538.3, + "b": 633.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.5", + "question": "02", + "y_start": 633.1, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 633.1175537109375, + "r": 105.70548502604167, + "b": 618.6881306966146, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 633.1, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 286.25046793619794, + "t": 810.0903447469076, + "r": 291.7471516927083, + "b": 802.875628153483, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.75616455078125, + "t": 53.192626953125, + "r": 99.12259674072266, + "b": 17.61572265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 211.35031127929688, + "t": 577.80078125, + "r": 437.13006591796875, + "b": 333.9020690917969, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "10": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 736.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.6", + "question": "02", + "y_start": 736.7, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 736.6699829101562, + "r": 101.47727457682292, + "b": 721.816151936849, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 736.7, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.67311096191406, + "t": 53.34393310546875, + "r": 99.1761245727539, + "b": 17.4755859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "11": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 218.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.7", + "question": "02", + "y_start": 218.9, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 218.90789794921875, + "r": 103.5913798014323, + "b": 202.78086344401038, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 218.9, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.2123209635416, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.86758041381836, + "t": 53.16552734375, + "r": 99.29812622070312, + "b": 17.9110107421875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.5928955078125, + "t": 182.55889892578125, + "r": 575.81787109375, + "b": 140.96905517578125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "12": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.2", + "question": "03", + "y_start": 214.2, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 214.23952229817712, + "r": 103.5913798014323, + "b": 198.11252848307288, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 214.2, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 79.4905293782552, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.76656723022461, + "t": 53.13525390625, + "r": 99.1600341796875, + "b": 17.290283203125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "13": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.3", + "question": "03", + "y_start": 774.9, + "y_end": 618.7, + "label_box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 101.47727457682292, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 774.9, + "r": 538.3, + "b": 618.7, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.4", + "question": "03", + "y_start": 618.7, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 618.6881306966146, + "r": 102.74573771158855, + "b": 604.2586873372396, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 618.7, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.775657653808594, + "t": 53.22589111328125, + "r": 99.17627716064453, + "b": 17.506103515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "14": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 189.6, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.5", + "question": "03", + "y_start": 189.6, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 189.62461344401038, + "r": 101.47727457682292, + "b": 176.04396565755212, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 189.6, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7238655090332, + "t": 53.290283203125, + "r": 99.1736831665039, + "b": 17.81878662109375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 62.90594482421875, + "t": 576.3164978027344, + "r": 515.8779907226562, + "b": 233.9420166015625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "15": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.6", + "question": "03", + "y_start": 775.3, + "y_end": 478.6, + "label_box": { + "l": 47.77887980143229, + "t": 775.2899424235026, + "r": 102.74573771158855, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 775.3, + "r": 538.3, + "b": 478.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.7", + "question": "03", + "y_start": 478.6, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 478.63771565755206, + "r": 105.2826639811198, + "b": 462.51072184244794, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 478.6, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 798.6316782633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.874149322509766, + "t": 53.11767578125, + "r": 99.29041290283203, + "b": 17.4774169921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.7330932617188, + "t": 168.60357666015625, + "r": 575.3134765625, + "b": 129.1944580078125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "16": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.2", + "question": "04", + "y_start": 603.4, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 603.4098917643229, + "r": 313.73388671875, + "b": 587.2828776041666, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 603.4, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 297.24383544921875, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.441151936849, + "r": 79.4905293782552, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.810359954833984, + "t": 53.197509765625, + "r": 99.216064453125, + "b": 17.51507568359375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "17": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.3", + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 775.3, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 284.1363525390625, + "t": 810.5147399902344, + "r": 295.1297200520833, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.746456146240234, + "t": 53.1395263671875, + "r": 99.22604370117188, + "b": 17.85919189453125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "18": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.6071891784668, + "t": 53.246337890625, + "r": 98.94551086425781, + "b": 17.580078125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "19": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 406.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.4", + "question": "04", + "y_start": 406.1, + "y_end": 196.0, + "label_box": { + "l": 48.201700846354164, + "t": 406.06614176432294, + "r": 102.74573771158855, + "b": 388.66595458984375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 406.1, + "r": 538.3, + "b": 196.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.5", + "question": "04", + "y_start": 196.0, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 195.99053955078125, + "r": 101.054443359375, + "b": 182.83428955078125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 196.0, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 547.1316324869791, + "t": 780.3826853434244, + "r": 583.4943033854166, + "b": 771.8947804768881, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 558.9706217447916, + "t": 772.3191782633463, + "r": 572.078125, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.81598663330078, + "t": 53.3416748046875, + "r": 99.18052673339844, + "b": 17.67620849609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "20": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 26.23248291015625, + "r": 80.75899251302083, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.2949829101562, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.47386169433594, + "t": 53.084716796875, + "r": 99.52220916748047, + "b": 16.42510986328125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "21": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.79328155517578, + "t": 53.08135986328125, + "r": 99.27262878417969, + "b": 17.63385009765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "22": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.62387466430664, + "t": 53.17352294921875, + "r": 99.01427459716797, + "b": 17.2744140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "23": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 775.7, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.2", + "question": "05", + "y_start": 775.7, + "y_end": 541.9, + "label_box": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 775.7, + "r": 538.3, + "b": 541.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.3", + "question": "05", + "y_start": 541.9, + "y_end": 322.5, + "label_box": { + "l": 49.89299011230469, + "t": 541.8725992838542, + "r": 101.9000956217448, + "b": 527.4431762695312, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 541.9, + "r": 538.3, + "b": 322.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.4", + "question": "05", + "y_start": 322.5, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 322.4603068033854, + "r": 103.16855875651042, + "b": 308.0308634440104, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 322.5, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 79.91335042317708, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.77910614013672, + "t": 53.0966796875, + "r": 99.09918975830078, + "b": 17.35565185546875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "24": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 351.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.5", + "question": "05", + "y_start": 351.3, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 351.31919352213544, + "r": 101.9000956217448, + "b": 336.88975016276044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 351.3, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.760948181152344, + "t": 53.21307373046875, + "r": 99.20094299316406, + "b": 17.48699951171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "25": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.6", + "question": "05", + "y_start": 774.4, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 101.47727457682292, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 774.4, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.57101949055989, + "t": 23.26169840494788, + "r": 77.79924011230469, + "b": 19.01772054036462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.79350280761719, + "t": 53.09893798828125, + "r": 99.17039489746094, + "b": 17.39202880859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.257080078125, + "t": 544.8421020507812, + "r": 576.107666015625, + "b": 503.1017761230469, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "26": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.1", + "question": "06", + "y_start": 742.6, + "y_end": 612.7, + "label_box": { + "l": 49.04734802246094, + "t": 742.6115112304688, + "r": 103.16855875651042, + "b": 726.9088948567709, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 742.6, + "r": 538.3, + "b": 612.7, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.2", + "question": "06", + "y_start": 612.7, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 612.7466023763021, + "r": 103.16855875651042, + "b": 597.0439656575521, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 612.7, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.441151936849, + "r": 79.06770833333333, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74662780761719, + "t": 53.166748046875, + "r": 99.2194595336914, + "b": 17.3209228515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 238.89454650878906, + "t": 528.76025390625, + "r": 415.30877685546875, + "b": 366.0852355957031, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "27": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.3", + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 774.8655446370443, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 48.6, + "t": 774.9, + "r": 538.3, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 548.4000651041666, + "t": 790.5681660970052, + "r": 586.8768717447916, + "b": 764.6800638834635, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 61.73200480143229, + "t": 23.26169840494788, + "r": 65.11458333333333, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.626678466796875, + "t": 53.157470703125, + "r": 99.11552429199219, + "b": 17.59197998046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.0776977539062, + "t": 182.75701904296875, + "r": 575.8231201171875, + "b": 141.1480712890625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "28": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.75899251302083, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.510581970214844, + "t": 53.04644775390625, + "r": 99.4729995727539, + "b": 16.531005859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "29": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.04072062174479, + "t": 24.95928955078125, + "r": 66.80586751302083, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 71.87973531087239, + "t": 25.38368733723962, + "r": 79.06770833333333, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.75505828857422, + "t": 53.18896484375, + "r": 99.31659698486328, + "b": 17.0916748046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "30": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.75211715698242, + "t": 53.1778564453125, + "r": 99.30067443847656, + "b": 17.100341796875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "31": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.95928955078125, + "r": 66.38304646809895, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.744197845458984, + "t": 53.14459228515625, + "r": 99.40373992919922, + "b": 17.3238525390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "32": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 583.4943033854166, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.4867350260417, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74562454223633, + "t": 53.2369384765625, + "r": 99.2490005493164, + "b": 17.05267333984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 334.3735656738281, + "t": 67.7763671875, + "r": 539.0877685546875, + "b": 32.14874267578125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/validate.json b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/validate.json new file mode 100644 index 0000000..84f3f3e --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-b1h-2022jun/validate.json @@ -0,0 +1,118 @@ +{ + "paper_code": null, + "board": "aqa", + "summary": { + "worst_severity": "warn", + "needs_priority_review": true, + "n_flags": 3, + "marks_sum": 62, + "official_max": 70, + "parts_total": 32, + "parts_low_conf": 1, + "questions_expected": 6, + "questions_recovered": 6 + }, + "flags": [ + "[warn] C1_marks_sum: marks sum 62 below official max 70 (-8) \u2014 missing parts or unread marks", + "[warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens", + "[warn] C5_coverage: 47.6% vs GT (20/42); missed ['02.1', '03.1', '04.1', '05.1', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3']" + ], + "checks": [ + { + "id": "C1_marks_sum", + "severity": "warn", + "status": "under", + "detail": "marks sum 62 below official max 70 (-8) \u2014 missing parts or unread marks" + }, + { + "id": "C2_part_marks", + "severity": "warn", + "status": "missing", + "detail": "1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens" + }, + { + "id": "C3_question_seq", + "severity": "info", + "status": "ok", + "detail": "questions 1-6 contiguous" + }, + { + "id": "C4_subpart_seq", + "severity": "info", + "status": "ok", + "detail": "sub-parts contiguous within every question" + }, + { + "id": "C5_coverage", + "severity": "warn", + "status": "missed", + "detail": "47.6% vs GT (20/42); missed ['02.1', '03.1', '04.1', '05.1', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3']" + } + ], + "part_confidence": { + "01.1": "medium", + "01.2": "medium", + "01.3": "medium", + "01.4": "medium", + "01.5": "medium", + "01.6": "medium", + "01.7": "medium", + "01.8": "medium", + "02.2": "medium", + "02.3": "medium", + "02.4": "medium", + "02.5": "medium", + "02.6": "low", + "02.7": "medium", + "03.2": "medium", + "03.3": "medium", + "03.4": "medium", + "03.5": "medium", + "03.6": "medium", + "03.7": "medium", + "04.2": "medium", + "04.3": "medium", + "04.4": "medium", + "04.5": "medium", + "05.2": "medium", + "05.3": "medium", + "05.4": "medium", + "05.5": "medium", + "05.6": "medium", + "06.1": "medium", + "06.2": "medium", + "06.3": "medium" + }, + "question_sequence": [ + { + "n": 1, + "label": "01", + "recovered": true + }, + { + "n": 2, + "label": "02", + "recovered": true + }, + { + "n": 3, + "label": "03", + "recovered": true + }, + { + "n": 4, + "label": "04", + "recovered": true + }, + { + "n": 5, + "label": "05", + "recovered": true + }, + { + "n": 6, + "label": "06", + "recovered": true + } + ] +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/bands.json b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/bands.json new file mode 100644 index 0000000..12fcfee --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/bands.json @@ -0,0 +1,349 @@ +{ + "board": "aqa", + "paper_code": null, + "coord_origin": "BOTTOMLEFT", + "pages": { + "3": { + "main": [ + { + "question": "01", + "y_start": 711.2, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "01.1", + "question": "01", + "y_start": 711.2, + "y_end": 451.5 + }, + { + "label": "01.2", + "question": "01", + "y_start": 451.5, + "y_end": 190.5 + }, + { + "label": "01.4", + "question": "01", + "y_start": 190.5, + "y_end": 0.0 + } + ] + }, + "4": { + "main": [ + { + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.5", + "question": "01", + "y_start": 776.1, + "y_end": 0.0 + } + ] + }, + "6": { + "main": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "02.1", + "question": "02", + "y_start": 412.9, + "y_end": 0.0 + } + ] + }, + "7": { + "main": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.2", + "question": "02", + "y_start": 776.1, + "y_end": 584.3 + }, + { + "label": "02.3", + "question": "02", + "y_start": 584.3, + "y_end": 0.0 + } + ] + }, + "8": { + "main": [ + { + "question": "02", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.4", + "question": "02", + "y_start": 775.3, + "y_end": 403.1 + }, + { + "label": "02.5", + "question": "02", + "y_start": 403.1, + "y_end": 0.0 + } + ] + }, + "11": { + "main": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "04.2", + "question": "04", + "y_start": 640.8, + "y_end": 508.8 + }, + { + "label": "04.3", + "question": "04", + "y_start": 508.8, + "y_end": 0.0 + } + ] + }, + "12": { + "main": [ + { + "question": "04", + "y_start": 259.2, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.4", + "question": "04", + "y_start": 259.2, + "y_end": 0.0 + } + ] + }, + "13": { + "main": [ + { + "question": "04", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.5", + "question": "04", + "y_start": 775.7, + "y_end": 518.1 + }, + { + "label": "04.6", + "question": "04", + "y_start": 518.1, + "y_end": 0.0 + } + ] + }, + "14": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.2", + "question": "05", + "y_start": 418.8, + "y_end": 0.0 + } + ] + }, + "15": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.3", + "question": "05", + "y_start": 774.9, + "y_end": 462.5 + }, + { + "label": "05.4", + "question": "05", + "y_start": 462.5, + "y_end": 0.0 + } + ] + }, + "16": { + "main": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.2", + "question": "06", + "y_start": 463.4, + "y_end": 295.7 + }, + { + "label": "06.3", + "question": "06", + "y_start": 295.7, + "y_end": 0.0 + } + ] + }, + "18": { + "main": [ + { + "question": "06", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.5", + "question": "06", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "19": { + "main": [ + { + "question": "07", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "07.1", + "question": "07", + "y_start": 745.2, + "y_end": 0.0 + } + ] + }, + "20": { + "main": [ + { + "question": "07", + "y_start": 737.1, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.2", + "question": "07", + "y_start": 737.1, + "y_end": 593.6 + }, + { + "label": "07.3", + "question": "07", + "y_start": 593.6, + "y_end": 0.0 + } + ] + }, + "21": { + "main": [ + { + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.4", + "question": "07", + "y_start": 775.7, + "y_end": 0.0 + } + ] + }, + "22": { + "main": [ + { + "question": "07", + "y_start": 736.2, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "07.5", + "question": "07", + "y_start": 736.2, + "y_end": 0.0 + } + ] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/furniture.json b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/furniture.json new file mode 100644 index 0000000..903db8c --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/furniture.json @@ -0,0 +1 @@ +{"n_pages": 28, "freq_threshold": 0.4, "furniture_cells": {"3,1": 27, "3,32": 17, "12,34": 25, "21,1": 28, "24,32": 18}, "content_margins": {"content_x_band": {"x_left": 40.3, "x_right": 539.4}, "per_page": {"1": {"top": 799.1, "bottom": 12.2, "left": 36.8, "right": 546.3}, "2": {"top": 774.9, "bottom": 417.1, "left": 173.8, "right": 403.8}, "3": {"top": 774.9, "bottom": 57.2, "left": 48.6, "right": 538.7}, "4": {"top": 788.3, "bottom": 75.6, "left": 39.9, "right": 539.5}, "5": {"top": 774.0, "bottom": 58.1, "left": 113.7, "right": 563.2}, "6": {"top": 788.0, "bottom": 75.2, "left": 40.0, "right": 565.5}, "7": {"top": 775.3, "bottom": 57.2, "left": 48.6, "right": 539.1}, "8": {"top": 774.9, "bottom": 160.8, "left": 49.0, "right": 564.5}, "9": {"top": 774.0, "bottom": 57.2, "left": 113.7, "right": 575.9}, "10": {"top": 774.9, "bottom": 416.7, "left": 173.8, "right": 403.8}, "11": {"top": 774.9, "bottom": 56.8, "left": 49.0, "right": 538.7}, "12": {"top": 774.4, "bottom": 143.8, "left": 50.7, "right": 535.3}, "13": {"top": 774.9, "bottom": 56.8, "left": 48.2, "right": 567.0}, "14": {"top": 788.0, "bottom": 75.4, "left": 39.7, "right": 539.4}, "15": {"top": 787.8, "bottom": 57.2, "left": 40.3, "right": 575.3}, "16": {"top": 775.3, "bottom": 254.6, "left": 48.2, "right": 536.1}, "17": {"top": 774.9, "bottom": 57.2, "left": 113.7, "right": 538.7}, "18": {"top": 775.3, "bottom": 198.1, "left": 49.5, "right": 576.0}, "19": {"top": 774.4, "bottom": 58.1, "left": 47.0, "right": 538.3}, "20": {"top": 775.3, "bottom": 541.9, "left": 49.0, "right": 535.7}, "21": {"top": 775.3, "bottom": 57.2, "left": 113.7, "right": 538.7}, "22": {"top": 775.7, "bottom": 314.0, "left": 47.8, "right": 575.9}, "23": {"top": 774.9, "bottom": 416.7, "left": 173.8, "right": 403.8}, "24": {"top": 771.0, "bottom": 745.6, "left": 184.8, "right": 444.0}, "25": {"top": 788.9, "bottom": 745.6, "left": 54.5, "right": 580.5}, "26": {"top": 771.0, "bottom": 745.6, "left": 184.8, "right": 444.0}, "27": {"top": 788.9, "bottom": 745.6, "left": 184.8, "right": 580.5}, "28": {"top": 774.9, "bottom": 30.9, "left": 53.7, "right": 539.1}}}, "ab_test_figures": {"context_figure_before_mask": 46, "context_figure_after_mask": 18, "removed_as_furniture": 28, "removed_breakdown": {"cell 3,1": 27, "cell 3,32": 1}}, "text_furniture_removed": 111, "items": [{"page": 1, "kind": "text", "label": "text", "bbox": {"l": 36.785509745279946, "t": 789.7193756103516, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "text": "AQA", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 725.6357116699219, "r": 234.24336751302084, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "text": "Please write clearly in block capitals.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 692.5328877766927, "r": 130.65198771158853, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Centre number", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 692.5328877766927, "r": 403.7949625651042, "b": 681.07421875, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatenumber", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 653.488525390625, "r": 102.74573771158855, "b": 640.7566731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Surname", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.389678955078125, "t": 628.44921875, "r": 120.08144124348958, "b": 614.4441731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Forename(s)", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 600.863525390625, "r": 155.59848022460938, "b": 589.4048665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Candidate signature", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 165.74620564778647, "t": 587.707275390625, "r": 296.82102457682294, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "text": "I declare this is my own work.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 41.859375, "t": 555.8776448567708, "r": 546.2859700520834, "b": 492.21836344401044, "coord_origin": "BOTTOMLEFT"}, "text": "GCSE H COMBINED SCIENCE: TRILOGY", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 40.59090677897135, "t": 482.45729573567706, "r": 178.0080362955729, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Higher Tier Chemistry Paper 1H", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 398.00262451171875, "r": 92.17519124348958, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Materials", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 38.053975423177086, "t": 384.42197672526044, "r": 186.04166666666666, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "For this paper you must have:", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 369.56817626953125, "r": 83.71875, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a ruler", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 356.41192626953125, "r": 153.484375, "b": 346.22642008463544, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a scientific calculator", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 343.25567626953125, "r": 191.9611612955729, "b": 330.52382405598956, "coord_origin": "BOTTOMLEFT"}, "text": "the periodic table (enclosed).", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 39.32244110107422, "t": 317.3675740559896, "r": 108.66524251302083, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Instructions", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 304.2113240559896, "r": 231.28361002604166, "b": 290.63067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Use black ink or black ball-point pen.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.899620056152344, "t": 290.63067626953125, "r": 242.6998087565104, "b": 277.0500284830729, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Pencil should only be used for drawing.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 264.7425740559896, "r": 270.60605875651044, "b": 249.88873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questions in the spaces provi", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.43655141194662, "t": 277.8988240559896, "r": 241.43133544921875, "b": 263.04498291015625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Fill in the boxes at the top of this pa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 251.16192626953125, "r": 424.5132649739583, "b": 224.84942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "If you need extra space for your answer(", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 224.42502848307288, "r": 429.5871175130208, "b": 199.81011962890625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Do all rough work in this book. Cross t", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.32244110107422, "t": 198.11252848307288, "r": 356.0160725911458, "b": 185.38067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Inall calculations,showclearlyhowyouwor", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.47679901123047, "t": 171.80002848307288, "r": 106.55113728841145, "b": 159.06817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Information", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 157.37058512369788, "r": 245.23673502604166, "b": 145.48752848307288, "coord_origin": "BOTTOMLEFT"}, "text": "The maximum mark for this paper is 70.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 42.282196044921875, "t": 143.36553955078125, "r": 281.59942626953125, "b": 132.33127848307288, "coord_origin": "BOTTOMLEFT"}, "text": "Themarksforquestionsareshowninbrackets.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 117.47743733723962, "r": 474.40625, "b": 104.32118733723962, "coord_origin": "BOTTOMLEFT"}, "text": "You are reminded of the need for good En", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 237.62593587239584, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "JUN228464C1H01", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 325.5729166666667, "t": 428.55910237630206, "r": 539.5208333333334, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Time allowed: 1 hour 15 minutes", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 316.2708333333333, "t": 20.71531168619788, "r": 367.8551025390625, "b": 12.227437337239621, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/E10", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 449.4597574869792, "t": 33.87156168619788, "r": 545.4403076171875, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "8464/C/1H", "furniture": true}, {"page": 2, "kind": "text", "label": "page_header", "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.86126708984375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 27.93007405598962, "r": 80.33617146809895, "b": 14.773824055989621, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 183.92755126953125, "t": 440.44215901692706, "r": 394.070068359375, "b": 417.10044352213544, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 544.171875, "t": 788.4461924235026, "r": 583.9171142578125, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 2, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 3, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 249.0421346028646, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "01 This question is about salts.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 435.0837809244792, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Green copper carbonate and sulfuric acid", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 711.2062683105469, "r": 101.054443359375, "b": 696.3524373372396, "coord_origin": "BOTTOMLEFT"}, "text": "01.1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 709.5086873372396, "r": 363.2040608723958, "b": 698.0500183105469, "coord_origin": "BOTTOMLEFT"}, "text": "Excess copper carbonate is added to sulf", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 684.8937683105469, "r": 317.53928629557294, "b": 671.7375183105469, "coord_origin": "BOTTOMLEFT"}, "text": "Give three observations you would make.", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 670.8887329101562, "r": 536.1382242838541, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 591.9512329101562, "r": 121.77272542317708, "b": 582.1901448567708, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 540.175028483073, "r": 121.77272542317708, "b": 530.4139404296875, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 451.47642008463544, "r": 106.55113728841145, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "text": "01.2", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 109.51088460286458, "t": 450.62762451171875, "r": 369.54638671875, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "How can the excess copper carbonate be r", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 437.89577229817706, "r": 536.1382242838541, "b": 423.04197184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 320.7627156575521, "r": 107.3967793782552, "b": 305.06011962890625, "coord_origin": "BOTTOMLEFT"}, "text": "01.\u2462", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 107.3967793782552, "t": 319.9139200846354, "r": 362.78125, "b": 306.7576700846354, "coord_origin": "BOTTOMLEFT"}, "text": "The pH of the solution changes during th", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 292.75262451171875, "r": 389.4190266927083, "b": 281.7183634440104, "coord_origin": "BOTTOMLEFT"}, "text": "WhatisthepHofthesolutionattheendoftherea", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 280.86956787109375, "r": 536.1382242838541, "b": 266.44012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 361.5127766927083, "t": 254.55706787109375, "r": 389.8418375651042, "b": 242.67401123046875, "coord_origin": "BOTTOMLEFT"}, "text": "pH=", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 190.47340901692712, "r": 101.9000956217448, "b": 175.61956787109375, "coord_origin": "BOTTOMLEFT"}, "text": "01.4", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 189.62461344401038, "r": 442.2717692057292, "b": 176.89276123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Copper carbonate and sulfuric acid react", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 164.16090901692712, "r": 257.07574462890625, "b": 151.00461832682288, "coord_origin": "BOTTOMLEFT"}, "text": "What type of reaction is this?", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 151.42901611328125, "r": 536.1382242838541, "b": 136.99965413411462, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 3, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 103.16855875651042, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "01.5", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 774.8655446370443, "r": 246.50520833333334, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Ammoniumnitrateisasalt.", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 746.4310709635416, "r": 478.6344401041667, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1 shows the maximum mass of ammon", "furniture": false}, {"page": 4, "kind": "text", "label": "section_header", "bbox": {"l": 268.06911214192706, "t": 708.2355041503906, "r": 313.3110758463542, "b": 693.8060709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 173.35699462890625, "t": 644.1518351236979, "r": 194.49810791015625, "b": 631.8443806966146, "coord_origin": "BOTTOMLEFT"}, "text": "120", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 174.2026570638021, "t": 616.1417643229166, "r": 194.49810791015625, "b": 603.4098917643229, "coord_origin": "BOTTOMLEFT"}, "text": "110", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 586.8584798177084, "r": 194.49810791015625, "b": 575.82421875, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.2765096028646, "t": 559.2728068033855, "r": 194.07527669270834, "b": 547.3897298177083, "coord_origin": "BOTTOMLEFT"}, "text": "90", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.2765096028646, "t": 530.8383178710938, "r": 194.49810791015625, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 68.91997782389323, "t": 513.4381306966145, "r": 147.98768107096353, "b": 500.28188069661456, "coord_origin": "BOTTOMLEFT"}, "text": "Maximummass", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 69.34279886881511, "t": 500.28188069661456, "r": 137.83995564778647, "b": 488.82322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "ofammonium", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.6993408203125, "t": 502.4038492838542, "r": 194.49810791015625, "b": 490.52077229817706, "coord_origin": "BOTTOMLEFT"}, "text": "70", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 68.91997782389323, "t": 488.39882405598956, "r": 143.75947062174478, "b": 477.36452229817706, "coord_origin": "BOTTOMLEFT"}, "text": "nitrate thatcan", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 68.91997782389323, "t": 477.36452229817706, "r": 176.73958333333334, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "text": "dissolve in grams per", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.6993408203125, "t": 473.12058512369794, "r": 193.2296346028646, "b": 462.93511962890625, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 68.49715677897136, "t": 466.33026123046875, "r": 154.75283813476562, "b": 452.74961344401044, "coord_origin": "BOTTOMLEFT"}, "text": "100 cm3 of water", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.6993408203125, "t": 445.95928955078125, "r": 194.49810791015625, "b": 433.65183512369794, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.2765096028646, "t": 417.10044352213544, "r": 194.49810791015625, "b": 405.21734619140625, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.6993408203125, "t": 388.66595458984375, "r": 194.49810791015625, "b": 376.78289794921875, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.6993408203125, "t": 360.23146565755206, "r": 194.49810791015625, "b": 347.92401123046875, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 179.6993408203125, "t": 332.22137451171875, "r": 194.49810791015625, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 186.04166666666666, "t": 302.9381306966146, "r": 194.9209187825521, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 194.07527669270834, "t": 293.1770222981771, "r": 200.8404337565104, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 219.8674112955729, "t": 293.6014200846354, "r": 233.3977254231771, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 293.6014200846354, "r": 262.1496175130208, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 274.4114583333333, "t": 293.6014200846354, "r": 289.21022542317706, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 304.0089925130208, "t": 293.6014200846354, "r": 319.23057047526044, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "text": "40", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 332.76088460286456, "t": 293.6014200846354, "r": 346.7139892578125, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 360.2443033854167, "t": 293.6014200846354, "r": 375.4659016927083, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "text": "60", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 387.7277425130208, "t": 293.6014200846354, "r": 402.5264892578125, "b": 284.2647501627604, "coord_origin": "BOTTOMLEFT"}, "text": "70", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 417.7480875651042, "t": 293.6014200846354, "r": 432.9696858723958, "b": 283.8403523763021, "coord_origin": "BOTTOMLEFT"}, "text": "80", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 445.2315266927083, "t": 294.4502156575521, "r": 491.3191324869792, "b": 282.9915568033854, "coord_origin": "BOTTOMLEFT"}, "text": "90100", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 308.23720296223956, "t": 278.3232218424479, "r": 398.7211100260417, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Temperature in \u00b0C", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 4, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 5, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 774.0167541503906, "r": 480.7485758463542, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Astudentaddsammoniumnitratetowaterat80\u00b0C", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 748.9774373372396, "r": 533.601318359375, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "The student cools 100 cm3 of this soluti", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 696.3524373372396, "r": 524.2992350260416, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "text": "Determine the mass of ammonium nitrate t", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 670.8887329101562, "r": 536.5610758463541, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 337.83473714192706, "t": 493.49155680338544, "r": 375.8887125651042, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Mass =", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 497.31109619140625, "r": 563.1988525390625, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 427.28590901692706, "r": 370.3920491536458, "b": 414.12965901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for the next question", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover", "furniture": false}, {"page": 5, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 80.33617146809895, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 280.7537841796875, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Thisquestionis about electrolysis.", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 748.9774373372396, "r": 446.9228108723958, "b": 724.3625183105469, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2 shows the apparatus used to inv", "furniture": false}, {"page": 6, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 709.0842997233073, "r": 348.4053141276042, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 268.91477457682294, "t": 681.07421875, "r": 406.3319091796875, "b": 666.644775390625, "coord_origin": "BOTTOMLEFT"}, "text": "50cm3measuringcylinders", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 231.7064412434896, "t": 625.4784545898438, "r": 271.4517008463542, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Oxygen", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 396.1841634114583, "t": 625.4784545898438, "r": 447.7684733072917, "b": 611.0490112304688, "coord_origin": "BOTTOMLEFT"}, "text": "Hydrogen", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 563.941141764323, "r": 237.203125, "b": 550.3605143229167, "coord_origin": "BOTTOMLEFT"}, "text": "Potassium", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 183.92755126953125, "t": 551.2092895507812, "r": 258.76702880859375, "b": 539.7506306966145, "coord_origin": "BOTTOMLEFT"}, "text": "sulfatesolution", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 412.6742350260417, "t": 529.1407470703125, "r": 439.7348225911458, "b": 516.8332926432292, "coord_origin": "BOTTOMLEFT"}, "text": "Inert", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 413.9427083333333, "t": 517.2576904296875, "r": 466.3726399739583, "b": 504.52581787109375, "coord_origin": "BOTTOMLEFT"}, "text": "electrodes", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 320.07623291015625, "t": 454.44720458984375, "r": 353.0563557942708, "b": 441.71535237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Power", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 319.6534016927083, "t": 442.13975016276044, "r": 353.9019775390625, "b": 428.55910237630206, "coord_origin": "BOTTOMLEFT"}, "text": "supply", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 412.85646565755206, "r": 104.01420084635417, "b": 397.15386962890625, "coord_origin": "BOTTOMLEFT"}, "text": "02.1", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 412.00767008463544, "r": 337.83473714192706, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Potassium sulfate contains K+ and SO42- ", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 386.54396565755206, "r": 316.6936442057292, "b": 374.23651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "What is the formula of potassium sulfate", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 373.81211344401044, "r": 536.1382242838541, "b": 359.38267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 359.38267008463544, "r": 200.8404337565104, "b": 344.10447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 319.06512451171875, "r": 144.18229166666666, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "text": "KSO4", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 282.14276123046875, "r": 147.98768107096353, "b": 268.5621134440104, "coord_origin": "BOTTOMLEFT"}, "text": "K2SO4", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 246.06915283203125, "r": 155.59848022460938, "b": 229.94215901692712, "coord_origin": "BOTTOMLEFT"}, "text": "K(SO4)2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 209.57118733723962, "r": 158.9810587565104, "b": 192.59539794921875, "coord_origin": "BOTTOMLEFT"}, "text": "K2(SO4)2", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 6, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 776.1387329101562, "r": 104.85984293619792, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "02.2", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 775.2899424235026, "r": 463.835693359375, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "What are the volumes of gases collected ", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 749.4018351236979, "r": 183.92755126953125, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 2.", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 737.5187683105469, "r": 536.1382242838541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 337.41192626953125, "t": 701.0207926432291, "r": 537.4066975911459, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "text": "Volumeof hydrogen= cm3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 346.7139892578125, "t": 662.8252156575521, "r": 537.4066975911459, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "text": "Volume of oxygen = cm3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 584.3121134440105, "r": 101.9000956217448, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "text": "02.3", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 583.887715657552, "r": 315.42519124348956, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "text": "A student made the following hypothesis:", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 545.692159016927, "r": 397.0298258463542, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "text": "as hydrogen atoms to oxygen atoms in a w", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 521.5016276041667, "r": 531.4871826171875, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how the volumes of gases collect", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 482.45729573567706, "r": 282.02223714192706, "b": 469.72544352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Use your answer to Question 02.2", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 470.14980061848956, "r": 536.1382242838541, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 252.43511962890625, "r": 390.2646484375, "b": 238.43007405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Question 2 continues on the next page", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 7, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "02.4", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 289.21022542317706, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "The experiment isrepeated 4 times.", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 399.9895833333333, "b": 735.8211873372396, "coord_origin": "BOTTOMLEFT"}, "text": "The volumes of oxygen collected in the 4", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 243.96826171875, "t": 723.0893351236979, "r": 406.3319091796875, "b": 710.3574829101562, "coord_origin": "BOTTOMLEFT"}, "text": "6 cm39 cm310 cm311cm3", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 696.3524373372396, "r": 445.2315266927083, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "text": "The mean volume of oxygen collected in t", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 670.4643351236979, "r": 519.648193359375, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "text": "The measure of uncertainty is the range ", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 631.8443806966146, "r": 393.2244059244792, "b": 618.6881306966146, "coord_origin": "BOTTOMLEFT"}, "text": "What is the measure of uncertainty in th", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 618.6881306966146, "r": 536.1382242838541, "b": 604.2586873372396, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 604.2586873372396, "r": 200.8404337565104, "b": 588.98046875, "coord_origin": "BOTTOMLEFT"}, "text": "Tick (V) one box.", "furniture": false}, {"page": 8, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.73910522460938, "t": 563.941141764323, "r": 162.78645833333334, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "text": "9 \u00b1 1cm3", "furniture": false}, {"page": 8, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.73910522460938, "t": 527.018778483073, "r": 162.78645833333334, "b": 513.862528483073, "coord_origin": "BOTTOMLEFT"}, "text": "9 \u00b12cm3", "furniture": false}, {"page": 8, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 113.73910522460938, "t": 490.09637451171875, "r": 162.78645833333334, "b": 476.94012451171875, "coord_origin": "BOTTOMLEFT"}, "text": "9 \u00b13cm3", "furniture": false}, {"page": 8, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 403.09539794921875, "r": 479.4801025390625, "b": 377.20729573567706, "coord_origin": "BOTTOMLEFT"}, "text": "02.5 The potassium sulfate solution has ", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 364.05104573567706, "r": 488.359375, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the mass of potassium sulfate ", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 350.47039794921875, "r": 536.1382242838541, "b": 337.31414794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 338.6803792317708, "t": 173.92197672526038, "r": 378.0028483072917, "b": 160.76572672526038, "coord_origin": "BOTTOMLEFT"}, "text": "Mass =", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 556.0108642578125, "t": 176.46836344401038, "r": 564.4673258463541, "b": 165.43410237630212, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 525.9905192057291, "t": 169.67803955078125, "r": 532.7556559244791, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "text": "g", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": true}, {"page": 8, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 9, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 810.9391352335612, "r": 292.59279378255206, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 774.441151936849, "r": 79.06770833333333, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 774.0167541503906, "r": 432.546875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Plan an investigation to find the order ", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 748.9774373372396, "r": 451.9966634114583, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "text": "You should use the temperature change wh", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 722.6649373372396, "r": 534.8697916666666, "b": 709.5086873372396, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 210.14251708984375, "t": 140.81915283203125, "r": 373.351806640625, "b": 127.66290283203125, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for the next question", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 58.34943135579427, "t": 26.65688069661462, "r": 80.75899251302083, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "6.0.", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 556.0108642578125, "t": 210.41998291015625, "r": 564.4673258463541, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 9, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.38368733723962, "r": 539.9436442057291, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 10, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 184.35038248697916, "t": 440.44215901692706, "r": 394.070068359375, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 10, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 11, "kind": "text", "label": "page_header", "bbox": {"l": 283.7135416666667, "t": 810.9391352335612, "r": 294.7069091796875, "b": 802.0268376668295, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 199.99479166666666, "t": 455.29600016276044, "r": 270.60605875651044, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Chlorine atom", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 382.6538899739583, "t": 450.20322672526044, "r": 449.882568359375, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Oxygen atom", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.441151936849, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "04", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 313.73388671875, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about Group 7 elements.", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 744.7334899902344, "r": 90.48389689127605, "b": 731.152842203776, "coord_origin": "BOTTOMLEFT"}, "text": "04.", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 744.7334899902344, "r": 324.7272542317708, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "What are theGroup7elementsknown as?", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 732.426035563151, "r": 536.1382242838541, "b": 717.5722045898438, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 640.7566731770834, "r": 109.93370564778645, "b": 625.0540568033854, "coord_origin": "BOTTOMLEFT"}, "text": "04.2", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 102.74573771158855, "t": 639.4834798177084, "r": 350.9422200520833, "b": 626.7516276041666, "coord_origin": "BOTTOMLEFT"}, "text": "Why do Group7elementsreact in similar wa", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 627.6004231770834, "r": 535.7154134114584, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 508.769775390625, "r": 410.1372884114583, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "text": "04.3 Figure 3 shows the structure of a m", "furniture": false}, {"page": 11, "kind": "text", "label": "section_header", "bbox": {"l": 302.7405192057292, "t": 481.60850016276044, "r": 347.9824625651042, "b": 466.75465901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 199.99479166666666, "t": 455.29600016276044, "r": 270.60605875651044, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Chlorine atom", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 382.6538899739583, "t": 450.20322672526044, "r": 449.882568359375, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Oxygen atom", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 349.62160237630206, "r": 536.1382242838541, "b": 322.0359090169271, "coord_origin": "BOTTOMLEFT"}, "text": "What is the molecular formula of the chl", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 247.34234619140625, "r": 391.1103108723958, "b": 232.48854573567712, "coord_origin": "BOTTOMLEFT"}, "text": "Question 4 continues on the next page", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 11, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 12, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 259.22540283203125, "r": 101.054443359375, "b": 246.06915283203125, "coord_origin": "BOTTOMLEFT"}, "text": "04.4", "furniture": false}, {"page": 12, "kind": "text", "label": "caption", "bbox": {"l": 115.43039957682292, "t": 774.441151936849, "r": 415.6339925130208, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4 shows the melting points of som", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.11049397786462, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 12, "kind": "text", "label": "section_header", "bbox": {"l": 302.3177083333333, "t": 749.4018351236979, "r": 348.4053141276042, "b": 734.972401936849, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 193.6524658203125, "t": 697.2012329101562, "r": 215.21636962890625, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "text": "350", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 193.6524658203125, "t": 669.1911417643229, "r": 215.63920084635416, "b": 656.8836873372396, "coord_origin": "BOTTOMLEFT"}, "text": "300", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 193.6524658203125, "t": 641.1810709635416, "r": 215.21636962890625, "b": 628.44921875, "coord_origin": "BOTTOMLEFT"}, "text": "250", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 193.6524658203125, "t": 612.3222045898438, "r": 215.21636962890625, "b": 600.0147298177084, "coord_origin": "BOTTOMLEFT"}, "text": "200", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 194.07527669270834, "t": 583.4633382161458, "r": 215.21636962890625, "b": 571.1558634440105, "coord_origin": "BOTTOMLEFT"}, "text": "150", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 194.07527669270834, "t": 555.8776448567708, "r": 215.63920084635416, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "text": "100", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 199.99479166666666, "t": 527.018778483073, "r": 215.63920084635416, "b": 514.7113037109375, "coord_origin": "BOTTOMLEFT"}, "text": "50", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 145.45075480143228, "t": 512.589335123698, "r": 183.0819091796875, "b": 498.15989176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Melting", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 144.18229166666666, "t": 498.58428955078125, "r": 173.35699462890625, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "text": "point", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 206.33711751302084, "t": 497.73549397786456, "r": 215.21636962890625, "b": 487.55002848307294, "coord_origin": "BOTTOMLEFT"}, "text": "0", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 144.60511271158853, "t": 487.55002848307294, "r": 174.2026570638021, "b": 474.81817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "in \u2103", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 192.38399251302084, "t": 470.57419840494794, "r": 215.63920084635416, "b": 458.26674397786456, "coord_origin": "BOTTOMLEFT"}, "text": "-50", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 226.20975748697916, "t": 347.49961344401044, "r": 267.2234700520833, "b": 335.61655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Fluorine", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 282.445068359375, "t": 346.65081787109375, "r": 325.9957275390625, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Chlorine", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 338.6803792317708, "t": 347.07521565755206, "r": 381.3854166666667, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Bromine", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 399.9895833333333, "t": 347.07521565755206, "r": 432.9696858723958, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "text": "lodine", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 452.4195149739583, "t": 346.65081787109375, "r": 494.2788899739583, "b": 335.19215901692706, "coord_origin": "BOTTOMLEFT"}, "text": "Astatine", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 318.3849283854167, "t": 327.55303955078125, "r": 402.5264892578125, "b": 313.5479939778646, "coord_origin": "BOTTOMLEFT"}, "text": "Group 7 element", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 260.0741984049479, "r": 304.85463460286456, "b": 246.91794840494788, "coord_origin": "BOTTOMLEFT"}, "text": "The melting point of fluorine is -220 \u00b0C", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 233.76169840494788, "r": 211.41097005208334, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "text": "Complete Figure 4.", "furniture": false}, {"page": 12, "kind": "text", "label": "section_header", "bbox": {"l": 114.16192626953125, "t": 209.14678955078125, "r": 174.2026570638021, "b": 195.99053955078125, "coord_origin": "BOTTOMLEFT"}, "text": "You should:", "furniture": false}, {"page": 12, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 188.77581787109375, "r": 284.55918375651044, "b": 176.46836344401038, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7complete the scale on the y-axis", "furniture": false}, {"page": 12, "kind": "text", "label": "list_item", "bbox": {"l": 116.27604166666667, "t": 170.52683512369788, "r": 339.9488525390625, "b": 157.37058512369788, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7draw the bar for the melting point of f", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 156.94618733723962, "r": 535.2926025390625, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 12, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 13, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.5913798014323, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "04.5", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 421.976318359375, "b": 762.5580851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Explain the trend in the melting points ", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 749.4018351236979, "r": 184.35038248697916, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 4.", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 737.5187683105469, "r": 536.5610758463541, "b": 723.0893351236979, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 518.106465657552, "r": 101.9000956217448, "b": 503.2526448567708, "coord_origin": "BOTTOMLEFT"}, "text": "04.6", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 518.106465657552, "r": 348.828125, "b": 505.37461344401044, "coord_origin": "BOTTOMLEFT"}, "text": "What is the state symbol for bromine at ", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 491.79396565755206, "r": 184.773193359375, "b": 477.78892008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Use Figure 4.", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 478.63771565755206, "r": 536.1382242838541, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 464.63267008463544, "r": 200.8404337565104, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Tick () one box.", "furniture": false}, {"page": 13, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 126.00094604492188, "t": 428.13470458984375, "r": 149.6789754231771, "b": 412.00767008463544, "coord_origin": "BOTTOMLEFT"}, "text": "(aq)", "furniture": false}, {"page": 13, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 226.20975748697916, "t": 427.28590901692706, "r": 242.6998087565104, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "text": "(g)", "furniture": false}, {"page": 13, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 324.304443359375, "t": 426.86151123046875, "r": 336.9890950520833, "b": 412.85646565755206, "coord_origin": "BOTTOMLEFT"}, "text": "(1)", "furniture": false}, {"page": 13, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 419.0165608723958, "t": 427.28590901692706, "r": 434.6609700520833, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "text": "(s)", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 355.56313069661456, "r": 105.2826639811198, "b": 340.28489176432294, "coord_origin": "BOTTOMLEFT"}, "text": "0\u2463.7", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 354.71433512369794, "r": 474.8290608723958, "b": 341.55808512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Evaporation and boiling occur at the sur", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 328.82623291015625, "r": 536.1382242838541, "b": 302.51373291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Name one more process that happens at th", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 210.9881591796875, "t": 225.69822184244788, "r": 374.1974283854167, "b": 212.54197184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverforthenextquestion", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 551.7826741536459, "t": 295.29901123046875, "r": 567.0042317708334, "b": 282.5671590169271, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": false}, {"page": 13, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 14, "kind": "text", "label": "page_header", "bbox": {"l": 283.29071044921875, "t": 811.7879257202148, "r": 295.97536214192706, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 332.76088460286456, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about structure and bon", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 745.582285563151, "r": 88.36979166666667, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "05.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 341.2173258463542, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5 represents part of a carbon mol", "furniture": false}, {"page": 14, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 718.4209899902344, "r": 348.4053141276042, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 522.7748209635417, "r": 341.64013671875, "b": 510.4673665364583, "coord_origin": "BOTTOMLEFT"}, "text": "Namethetypeofcarbonmolecule inFigure5.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 510.4673665364583, "r": 536.1382242838541, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 418.79799397786456, "r": 101.9000956217448, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 419.22239176432294, "r": 470.600830078125, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest one property that makes the carb", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 394.18308512369794, "r": 535.7154134114584, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 774.8655446370443, "r": 332.76088460286456, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about structure and bon", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 745.582285563151, "r": 88.36979166666667, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "05.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 341.2173258463542, "b": 733.2748209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5 represents part of a carbon mol", "furniture": false}, {"page": 14, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 718.4209899902344, "r": 348.4053141276042, "b": 703.9915568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 522.7748209635417, "r": 341.64013671875, "b": 510.4673665364583, "coord_origin": "BOTTOMLEFT"}, "text": "Namethetypeofcarbonmolecule inFigure5.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 510.4673665364583, "r": 536.1382242838541, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 418.79799397786456, "r": 101.9000956217448, "b": 404.36855061848956, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 419.22239176432294, "r": 470.600830078125, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest one property that makes the carb", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 394.18308512369794, "r": 535.7154134114584, "b": 379.75364176432294, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 14, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 15, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "05.3", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 415.211181640625, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "An alloy of aluminium contains small amo", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 748.5530497233073, "r": 356.8617350260417, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Explainwhyother metalsareaddedto alumini", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 462.51072184244794, "r": 106.12831624348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "05.4", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 462.08632405598956, "r": 377.1571858723958, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6 represents part of the structur", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 301.89487711588544, "t": 435.34942626953125, "r": 348.828125, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 340.79449462890625, "t": 407.33933512369794, "r": 415.211181640625, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Polymerchain", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 332.22137451171875, "r": 488.359375, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "text": "Compare the bonding within the chains wi", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 306.3332722981771, "r": 536.1382242838541, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "05.3", "furniture": true}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.441151936849, "r": 415.211181640625, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "An alloy of aluminium contains small amo", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 748.5530497233073, "r": 356.8617350260417, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "text": "Explainwhyother metalsareaddedto alumini", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 462.51072184244794, "r": 106.12831624348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "05.4", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 111.625, "t": 462.08632405598956, "r": 377.1571858723958, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6 represents part of the structur", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 301.89487711588544, "t": 435.34942626953125, "r": 348.828125, "b": 419.22239176432294, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 340.79449462890625, "t": 407.33933512369794, "r": 415.211181640625, "b": 393.33428955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Polymerchain", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 332.22137451171875, "r": 488.359375, "b": 305.4844767252604, "coord_origin": "BOTTOMLEFT"}, "text": "Compare the bonding within the chains wi", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 306.3332722981771, "r": 536.1382242838541, "b": 293.1770222981771, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 556.4337158203125, "t": 153.12660725911462, "r": 563.1988525390625, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": false}, {"page": 15, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 16, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 566.0631306966145, "r": 277.37119547526044, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 336.14345296223956, "t": 566.9119262695312, "r": 351.7878824869792, "b": 551.6336873372395, "coord_origin": "BOTTOMLEFT"}, "text": "Cl", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 79.4905293782552, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 421.5535074869792, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about hydrogen chloride", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 745.1578877766927, "r": 87.52414957682292, "b": 730.3040568033854, "coord_origin": "BOTTOMLEFT"}, "text": "06.", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 745.582285563151, "r": 516.6884358723959, "b": 719.269785563151, "coord_origin": "BOTTOMLEFT"}, "text": "Complete the dot and cross diagram to re", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 707.38671875, "r": 364.8953450520833, "b": 692.957275390625, "coord_origin": "BOTTOMLEFT"}, "text": "Use dots (o) and crosses (x) to represen", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 681.4986063639323, "r": 379.6941324869792, "b": 668.3423665364584, "coord_origin": "BOTTOMLEFT"}, "text": "You should show only the electrons in th", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 668.3423665364584, "r": 536.1382242838541, "b": 655.1861165364584, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "caption", "bbox": {"l": 302.3177083333333, "t": 642.8786417643229, "r": 347.9824625651042, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 566.0631306966145, "r": 277.37119547526044, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 336.14345296223956, "t": 566.9119262695312, "r": 351.7878824869792, "b": 551.6336873372395, "coord_origin": "BOTTOMLEFT"}, "text": "Cl", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 463.35947672526044, "r": 106.97395833333333, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "text": "06.2", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 112.47064208984375, "t": 462.08632405598956, "r": 437.1979166666667, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Hydrogen chloride dissolves in water to ", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 437.04697672526044, "r": 278.63966878255206, "b": 424.31512451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Hydrochloric acid is a strong acid.", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 411.15887451171875, "r": 306.54591878255206, "b": 398.85142008463544, "coord_origin": "BOTTOMLEFT"}, "text": "What ismeant by the termstrong acid?", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 399.70021565755206, "r": 535.7154134114584, "b": 385.27077229817706, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 295.7234090169271, "r": 102.32291666666667, "b": 280.4451700846354, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 294.8746134440104, "r": 513.3058675130209, "b": 269.4109090169271, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how magnesium can be used to di", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 268.98651123046875, "r": 536.1382242838541, "b": 254.55706787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 73.57101949055989, "t": 23.26169840494788, "r": 77.37641906738281, "b": 18.59340413411462, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 16, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 17, "kind": "text", "label": "page_header", "bbox": {"l": 283.7135416666667, "t": 811.3635304768881, "r": 295.55255126953125, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 102.32291666666667, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "06].4", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 774.8655446370443, "r": 450.7281901041667, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "The concentration of hydrochloric acid i", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 748.128651936849, "r": 243.54545084635416, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "What isthechange inpH?", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 735.8211873372396, "r": 535.7154134114584, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 567.3363037109375, "r": 391.1103108723958, "b": 553.331278483073, "coord_origin": "BOTTOMLEFT"}, "text": "Question6continuesonthenextpage", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 17, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 18, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 18, "kind": "text", "label": "section_header", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 413.5198567708333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "06.5 Ethene and hydrogen chloride react ", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 748.5530497233073, "r": 365.7410074869792, "b": 736.2455851236979, "coord_origin": "BOTTOMLEFT"}, "text": "The displayed formulae equation for the ", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 161.51798502604166, "t": 718.8453877766927, "r": 170.820068359375, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 425.35888671875, "t": 723.0893351236979, "r": 434.2381591796875, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 449.882568359375, "t": 722.6649373372396, "r": 458.7618408203125, "b": 712.4794616699219, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 277.7940266927083, "t": 698.4744160970052, "r": 316.6936442057292, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "text": "H\u2014CI", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 401.6808675130208, "t": 696.7768351236979, "r": 424.5132649739583, "b": 687.8645426432291, "coord_origin": "BOTTOMLEFT"}, "text": "H\u4e00", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 422.3991292317708, "t": 696.7768351236979, "r": 434.6609700520833, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 449.4597574869792, "t": 696.7768351236979, "r": 462.1444091796875, "b": 688.2889302571615, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 459.6074625651042, "t": 697.6256306966146, "r": 486.6680908203125, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "text": "\u4e00Cl", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 424.5132649739583, "t": 672.5863138834635, "r": 435.5066324869792, "b": 661.1276448567709, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 449.4597574869792, "t": 672.1619160970052, "r": 458.7618408203125, "b": 661.5520426432291, "coord_origin": "BOTTOMLEFT"}, "text": "H", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 645.0006306966146, "r": 245.23673502604166, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "text": "Thereactionisexothermic", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 620.3857014973959, "r": 523.03076171875, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "text": "In the reaction the energy released form", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 582.6145426432292, "r": 292.59279378255206, "b": 569.0338948567708, "coord_origin": "BOTTOMLEFT"}, "text": "Table1showssomebond energies.", "furniture": false}, {"page": 18, "kind": "text", "label": "caption", "bbox": {"l": 304.0089925130208, "t": 556.3020426432292, "r": 345.445556640625, "b": 544.418965657552, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 453.59840901692706, "r": 256.2301025390625, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the bond energy X.", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 442.13975016276044, "r": 536.1382242838541, "b": 426.86151123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 327.68701171875, "t": 211.69317626953125, "r": 531.4871826171875, "b": 198.11252848307288, "coord_origin": "BOTTOMLEFT"}, "text": "X= kJ/mol", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 552.6282958984375, "t": 215.93711344401038, "r": 567.4270833333334, "b": 203.62965901692712, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 18, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 19, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 80.33617146809895, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "07", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 745.1578877766927, "r": 100.20880126953125, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "text": "07.1", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 80.33617146809895, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "07", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 774.441151936849, "r": 353.0563557942708, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "This question is about elements and comp", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 745.1578877766927, "r": 100.20880126953125, "b": 730.7284545898438, "coord_origin": "BOTTOMLEFT"}, "text": "07.1", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 744.7334899902344, "r": 282.445068359375, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Figure8showsareactivityseries.", "furniture": false}, {"page": 19, "kind": "text", "label": "caption", "bbox": {"l": 303.16335042317706, "t": 716.7234090169271, "r": 347.9824625651042, "b": 703.5671590169271, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 327.2642008463542, "t": 682.7717997233073, "r": 397.8754475911458, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "text": "Most reactive", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.31060791015625, "t": 653.9129231770834, "r": 304.0089925130208, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Potassium", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 251.15625, "t": 625.0540568033854, "r": 309.0828450520833, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "text": "Magnesium", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.7334187825521, "t": 595.7707926432291, "r": 290.4786783854167, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "text": "Metal Y", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 251.57906087239584, "t": 567.3363037109375, "r": 289.21022542317706, "b": 554.1800537109375, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.7334187825521, "t": 538.0530395507812, "r": 271.87451171875, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "text": "Iron", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 251.57906087239584, "t": 510.04296875, "r": 299.78076171875, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Hydrogen", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.31060791015625, "t": 480.75970458984375, "r": 289.63303629557294, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Copper", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 451.47642008463544, "r": 399.9895833333333, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Least reactive", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 416.67604573567706, "r": 535.7154134114584, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Give the method and conditions used to e", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 191.11551920572916, "t": 235.03489176432288, "r": 394.4928792317708, "b": 221.02984619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Question7continuesonthenextpage", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 327.2642008463542, "t": 682.7717997233073, "r": 397.8754475911458, "b": 671.3131306966146, "coord_origin": "BOTTOMLEFT"}, "text": "Most reactive", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.31060791015625, "t": 653.9129231770834, "r": 304.0089925130208, "b": 641.1810709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Potassium", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 251.15625, "t": 625.0540568033854, "r": 309.0828450520833, "b": 611.8978068033854, "coord_origin": "BOTTOMLEFT"}, "text": "Magnesium", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.7334187825521, "t": 595.7707926432291, "r": 290.4786783854167, "b": 583.887715657552, "coord_origin": "BOTTOMLEFT"}, "text": "Metal Y", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 251.57906087239584, "t": 567.3363037109375, "r": 289.21022542317706, "b": 554.1800537109375, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.7334187825521, "t": 538.0530395507812, "r": 271.87451171875, "b": 524.8967895507812, "coord_origin": "BOTTOMLEFT"}, "text": "Iron", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 251.57906087239584, "t": 510.04296875, "r": 299.78076171875, "b": 494.34035237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Hydrogen", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 250.31060791015625, "t": 480.75970458984375, "r": 289.63303629557294, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Copper", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 451.47642008463544, "r": 399.9895833333333, "b": 437.89577229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Least reactive", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": false}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 20, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 424.0904134114583, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Sodium reacts with titanium chloride (Ti", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 737.0943806966146, "r": 105.2826639811198, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "text": "07.2", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 734.972401936849, "r": 227.47821044921875, "b": 723.5137329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Complete the equation.", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 709.9330851236979, "r": 278.21685791015625, "b": 696.7768351236979, "coord_origin": "BOTTOMLEFT"}, "text": "You should balance the equation.", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 696.7768351236979, "r": 535.7154134114584, "b": 683.6205851236979, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 148.83333333333334, "t": 663.2496134440104, "r": 260.03550211588544, "b": 646.6982014973959, "coord_origin": "BOTTOMLEFT"}, "text": "Na + TiCl4 \u2192", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 593.6488037109375, "r": 103.16855875651042, "b": 579.2193806966145, "coord_origin": "BOTTOMLEFT"}, "text": "07.3", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 112.89346313476562, "t": 593.6488037109375, "r": 458.3389892578125, "b": 580.9169514973958, "coord_origin": "BOTTOMLEFT"}, "text": "The reaction between sodium and titanium", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 568.1850992838542, "r": 448.1912841796875, "b": 555.4532470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Write a half-equation to show that sodiu", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 555.0288492838542, "r": 535.7154134114584, "b": 541.8725992838542, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 20, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 296.82102457682294, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.7143351236979, "r": 103.16855875651042, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "07.4", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 775.2899424235026, "r": 484.976806640625, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "108 g of aluminum reacts with 1.21 kg of", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 749.4018351236979, "r": 270.60605875651044, "b": 737.0943806966146, "coord_origin": "BOTTOMLEFT"}, "text": "The equation for the reaction is:", "furniture": false}, {"page": 21, "kind": "text", "label": "formula", "bbox": {"l": 238.04876708984375, "t": 723.9381306966146, "r": 410.9829508463542, "b": 712.0550638834635, "coord_origin": "BOTTOMLEFT"}, "text": "2Al+3CuCl2\u21923Cu+2AlCl3", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 687.8645426432291, "r": 421.5535074869792, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the maximum mass of copper pro", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 661.5520426432291, "r": 323.0359700520833, "b": 648.3957926432291, "coord_origin": "BOTTOMLEFT"}, "text": "You should determine the limiting reacta", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 636.0883382161459, "r": 354.3247884114583, "b": 622.0832926432291, "coord_origin": "BOTTOMLEFT"}, "text": "Relative atomic masses (Ar): Al = 27 Cu ", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 610.6246134440104, "r": 410.9829508463542, "b": 597.8927612304688, "coord_origin": "BOTTOMLEFT"}, "text": "Relative formula masses (Mr): CuCl2 = 13", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 597.0439656575521, "r": 536.5610758463541, "b": 582.6145426432292, "coord_origin": "BOTTOMLEFT"}, "text": "[6 marks]", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 240.585693359375, "t": 258.8010457356771, "r": 332.76088460286456, "b": 247.34234619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Limiting reactant is", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 238.8944091796875, "t": 237.15688069661462, "r": 326.41855875651044, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Mass of copper =", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 170.95123291015625, "r": 390.6875, "b": 156.94618733723962, "coord_origin": "BOTTOMLEFT"}, "text": "Question7 continueson the nextpage", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 21, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 22, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 775.7143351236979, "r": 456.2248942057292, "b": 761.7092946370443, "coord_origin": "BOTTOMLEFT"}, "text": "Sodium metal and sodium chloride are bot", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 736.2455851236979, "r": 101.9000956217448, "b": 720.9673563639323, "coord_origin": "BOTTOMLEFT"}, "text": "07.5", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 735.8211873372396, "r": 349.2509358723958, "b": 722.2405497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Describe how sodium metal conducts elect", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 722.2405497233073, "r": 535.7154134114584, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 556.3020426432292, "r": 101.9000956217448, "b": 541.4482014973958, "coord_origin": "BOTTOMLEFT"}, "text": "07].6", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 556.7264404296875, "r": 368.7007649739583, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how sodium chloride can conduct ", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 543.9945678710938, "r": 535.2926025390625, "b": 530.8383178710938, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 230.86079915364584, "t": 325.4310506184896, "r": 346.2911783854167, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOF QUESTIONS", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.198221842447879, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 552.6282958984375, "t": 394.18308512369794, "r": 567.8498942057291, "b": 381.87563069661456, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 22, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 23, "kind": "text", "label": "page_header", "bbox": {"l": 281.1765950520833, "t": 813.0611114501953, "r": 297.24383544921875, "b": 799.0560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 440.44215901692706, "r": 392.3787841796875, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 23, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 66.38304646809895, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 65.11458333333333, "t": 25.80808512369788, "r": 80.33617146809895, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": true}, {"page": 24, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 66.38304646809895, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 60.04072062174479, "t": 24.95928955078125, "r": 66.80586751302083, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 63.42329406738281, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 26, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 27, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "27", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 769.3484090169271, "r": 94.28929646809895, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Question number", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.53489176432288, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 467.6410725911458, "t": 25.80808512369788, "r": 540.366455078125, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "section_header", "bbox": {"l": 54.54403177897135, "t": 162.88771565755212, "r": 134.03455607096353, "b": 153.12660725911462, "coord_origin": "BOTTOMLEFT"}, "text": "Copyrightinformation", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 144.63873291015625, "r": 522.1850992838541, "b": 126.81410725911462, "coord_origin": "BOTTOMLEFT"}, "text": "For confidentialitypurposes,allacknowled", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 53.6983896891276, "t": 117.05303955078125, "r": 517.5340576171875, "b": 99.22841389973962, "coord_origin": "BOTTOMLEFT"}, "text": "Permissiontoreproduce all copyright mate", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 54.12121073404948, "t": 90.74053955078125, "r": 241.85416666666666, "b": 80.97947184244788, "coord_origin": "BOTTOMLEFT"}, "text": "Copyright @ 2022 AQA and its licensors. ", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "section_header", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 441.29095458984375, "r": 392.3787841796875, "b": 416.67604573567706, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 350.5194091796875, "t": 40.66192626953125, "r": 520.0710042317709, "b": 30.90085856119788, "coord_origin": "BOTTOMLEFT"}, "text": "226G8464/C/1H", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 544.5946858723959, "t": 789.7193756103516, "r": 583.4943033854166, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 28, "kind": "text", "label": "page_footer", "bbox": {"l": 468.0639241536458, "t": 24.95928955078125, "r": 539.5208333333334, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/8464/C/1H", "furniture": true}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 38.79048156738281, "t": 799.1484489440918, "r": 169.33349609375, "b": 751.7754821777344, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 41.5687370300293, "t": 53.447021484375, "r": 260.0397644042969, "b": 17.4593505859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 499.9075622558594, "t": 546.5237731933594, "r": 543.283203125, "b": 492.9493408203125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 43.48795700073242, "t": 53.01129150390625, "r": 99.5518798828125, "b": 16.3326416015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 43.731075286865234, "t": 53.1234130859375, "r": 99.06757354736328, "b": 17.42724609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 39.90925979614258, "t": 788.3383407592773, "r": 539.5222778320312, "b": 75.62664794921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 43.61348342895508, "t": 53.30914306640625, "r": 99.17985534667969, "b": 17.54168701171875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 43.736167907714844, "t": 53.16796875, "r": 99.1783447265625, "b": 17.5302734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 39.979766845703125, "t": 787.9906692504883, "r": 565.450927734375, "b": 75.2119140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 43.70774841308594, "t": 53.13519287109375, "r": 99.08021545410156, "b": 17.54150390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 43.82590103149414, "t": 53.19244384765625, "r": 99.24347686767578, "b": 17.65533447265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 43.71919631958008, "t": 53.1612548828125, "r": 99.12417602539062, "b": 17.5555419921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 43.74698257446289, "t": 53.18414306640625, "r": 99.09233856201172, "b": 17.62640380859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 543.3880004882812, "t": 235.318603515625, "r": 575.90380859375, "b": 193.9166259765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 43.471134185791016, "t": 53.17144775390625, "r": 99.5299301147461, "b": 16.9287109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 43.7734489440918, "t": 53.146484375, "r": 99.2735366821289, "b": 17.89306640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 199.81361389160156, "t": 454.4280700683594, "r": 448.8752136230469, "b": 363.1585693359375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 43.62034606933594, "t": 53.29388427734375, "r": 99.07697296142578, "b": 17.30511474609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 145.95323181152344, "t": 722.9683380126953, "r": 502.8610534667969, "b": 313.97369384765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 43.79945373535156, "t": 53.1492919921875, "r": 99.1850814819336, "b": 17.49383544921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 39.65153884887695, "t": 787.9851226806641, "r": 539.361572265625, "b": 75.42340087890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 43.73477554321289, "t": 53.20611572265625, "r": 99.19538879394531, "b": 17.77740478515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 40.30547332763672, "t": 787.8382034301758, "r": 538.6801147460938, "b": 75.74310302734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 43.73532485961914, "t": 53.18359375, "r": 99.1739273071289, "b": 17.454833984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 543.523193359375, "t": 178.8212890625, "r": 575.2889404296875, "b": 137.7919921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 248.36061096191406, "t": 619.3990631103516, "r": 400.34326171875, "b": 502.91015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 43.68505859375, "t": 53.21319580078125, "r": 99.13385772705078, "b": 17.48260498046875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 43.8148193359375, "t": 53.18902587890625, "r": 99.27465057373047, "b": 17.84124755859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 160.50936889648438, "t": 723.0121917724609, "r": 486.46734619140625, "b": 662.5936126708984, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 43.630977630615234, "t": 53.2061767578125, "r": 99.01527404785156, "b": 17.714599609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 543.5875244140625, "t": 240.2454833984375, "r": 575.9736938476562, "b": 199.5877685546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 46.48485565185547, "t": 776.6813812255859, "r": 81.98703002929688, "b": 759.3180694580078, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 46.999271392822266, "t": 746.6977081298828, "r": 104.37225341796875, "b": 730.5146484375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 43.84652328491211, "t": 53.1729736328125, "r": 99.21656799316406, "b": 17.734130859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 250.1741180419922, "t": 683.5161590576172, "r": 398.9270324707031, "b": 440.20361328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 43.68428039550781, "t": 53.1865234375, "r": 99.17168426513672, "b": 17.3621826171875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 43.703269958496094, "t": 53.1361083984375, "r": 99.26348114013672, "b": 17.64483642578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 43.818931579589844, "t": 53.05535888671875, "r": 99.13025665283203, "b": 17.30499267578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 543.1671142578125, "t": 418.2695007324219, "r": 575.9228515625, "b": 377.17498779296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 43.45603561401367, "t": 52.97747802734375, "r": 99.51256561279297, "b": 16.436767578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 43.730472564697266, "t": 53.16552734375, "r": 99.35018920898438, "b": 17.1514892578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 43.69895553588867, "t": 53.1668701171875, "r": 99.3472671508789, "b": 16.82537841796875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 43.691429138183594, "t": 53.14117431640625, "r": 99.34754180908203, "b": 16.77655029296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 43.77190017700195, "t": 53.216064453125, "r": 99.36135864257812, "b": 17.26806640625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 43.7439079284668, "t": 53.30078125, "r": 99.22008514404297, "b": 17.2099609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 334.399169921875, "t": 67.79498291015625, "r": 539.0598754882812, "b": 32.12347412109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "table", "label": "table", "bbox": {"l": 443.6445007324219, "t": 395.4227294921875, "r": 544.02490234375, "b": 214.38214111328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "table", "label": "table", "bbox": {"l": 177.91253662109375, "t": 532.1428527832031, "r": 471.9355773925781, "b": 467.1118469238281, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}]} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/page_roles.json b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/page_roles.json new file mode 100644 index 0000000..6d2c81a --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/page_roles.json @@ -0,0 +1,200 @@ +{ + "pages": { + "1": { + "role": "cover", + "chars": 868, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "2": { + "role": "blank", + "chars": 129, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "3": { + "role": "question", + "chars": 499, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "4": { + "role": "question", + "chars": 305, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "5": { + "role": "continuation", + "chars": 346, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "6": { + "role": "question", + "chars": 380, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "7": { + "role": "question", + "chars": 413, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "8": { + "role": "question", + "chars": 510, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "9": { + "role": "continuation", + "chars": 224, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "10": { + "role": "blank", + "chars": 129, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "11": { + "role": "question", + "chars": 385, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "12": { + "role": "question", + "chars": 330, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "13": { + "role": "question", + "chars": 387, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "14": { + "role": "question", + "chars": 487, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "15": { + "role": "question", + "chars": 568, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "16": { + "role": "question", + "chars": 532, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "17": { + "role": "continuation", + "chars": 176, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "18": { + "role": "question", + "chars": 363, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "19": { + "role": "question", + "chars": 394, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "20": { + "role": "question", + "chars": 305, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "21": { + "role": "question", + "chars": 412, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "22": { + "role": "question", + "chars": 236, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "23": { + "role": "blank", + "chars": 130, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "24": { + "role": "appendix", + "chars": 131, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "25": { + "role": "appendix", + "chars": 131, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "26": { + "role": "appendix", + "chars": 131, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "27": { + "role": "blank", + "chars": 130, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "28": { + "role": "appendix", + "chars": 654, + "margins_enabled": true, + "source": "auto", + "confirmed": false + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/report.md b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/report.md new file mode 100644 index 0000000..73715ac --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/report.md @@ -0,0 +1,17 @@ +# AQA GCSE Combined Science Trilogy 8464/C/1H 2022 Jun (image-only OCR baseline; 8465 not present in dev catalogue) + +- **slug:** `b1-aqa-combined-8464-c1h-2022jun` · **board:** aqa · **level:** GCSE · **path:** B1 image-only OCR (RapidOCR margin-pass) +- **questions/parts:** 6 / 25 +- **marks:** 51/70 (72.9% of official max) +- **coverage vs GT:** 75.8% (missed ['01.3', '03.0', '04.1', '04.7', '05.1', '06.1', '06.4', '07.6']) +- **G6 verdict:** warn +- **answer-region count:** 147 + +**Flags (human-review hints):** +- [warn] C1_marks_sum: marks sum 51 below official max 70 (-19) — missing parts or unread marks +- [warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks — unread/garbled mark tokens +- [warn] C3_question_seq: top-level questions [3] missing between 1-7 — expected but unrecovered; surface as second-pass slots in the question tree +- [warn] C4_subpart_seq: sub-part gaps: Q01 missing ['3'], Q06 missing ['4'] +- [warn] C5_coverage: 45.2% vs GT (19/42); missed ['01.3', '03.1', '03.2', '03.3', '03.4', '04.1', '05.1', '06.1', '08.1', '08.2'] + +**Artifacts:** `structured.json`, `validate.json`, `furniture.json`, `bands.json`, `page_roles.json`, `template.json`, `overlays/` (0 images) diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/structured.json b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/structured.json new file mode 100644 index 0000000..4f428b4 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/structured.json @@ -0,0 +1,2427 @@ +{ + "board": "aqa", + "paper_code": null, + "front_matter": { + "exam_board": "AQA", + "qualification": "GCSE", + "subject": "H Combined Science", + "tier": "Higher", + "time_allowed": "1 hour 15 minutes", + "max_marks": 70, + "session": "Jun 2022" + }, + "path": "aqa-docling+rapidocr (v1)", + "pages": [], + "questions": [ + { + "question": "01", + "parts": [ + { + "label": "01.1", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 711.2062683105469, + "r": 101.054443359375, + "b": 696.3524373372396, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.2", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 451.47642008463544, + "r": 106.55113728841145, + "b": 435.77382405598956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.4", + "page": 3, + "bbox": { + "l": 49.04734802246094, + "t": 190.47340901692712, + "r": 101.9000956217448, + "b": 175.61956787109375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.5", + "page": 4, + "bbox": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 103.16855875651042, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": null, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "02", + "parts": [ + { + "label": "02.1", + "page": 6, + "bbox": { + "l": 49.04734802246094, + "t": 412.85646565755206, + "r": 104.01420084635417, + "b": 397.15386962890625, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.2", + "page": 7, + "bbox": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 104.85984293619792, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.3", + "page": 7, + "bbox": { + "l": 48.62452697753906, + "t": 584.3121134440105, + "r": 101.9000956217448, + "b": 569.0338948567708, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.4", + "page": 8, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.5", + "page": 8, + "bbox": { + "l": 49.04734802246094, + "t": 403.09539794921875, + "r": 479.4801025390625, + "b": 377.20729573567706, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "04", + "parts": [ + { + "label": "04.2", + "page": 11, + "bbox": { + "l": 49.04734802246094, + "t": 640.7566731770834, + "r": 109.93370564778645, + "b": 625.0540568033854, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.3", + "page": 11, + "bbox": { + "l": 49.47016906738281, + "t": 508.769775390625, + "r": 410.1372884114583, + "b": 494.34035237630206, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.4", + "page": 12, + "bbox": { + "l": 50.73863728841146, + "t": 259.22540283203125, + "r": 101.054443359375, + "b": 246.06915283203125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.5", + "page": 13, + "bbox": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 103.5913798014323, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.6", + "page": 13, + "bbox": { + "l": 49.47016906738281, + "t": 518.106465657552, + "r": 101.9000956217448, + "b": 503.2526448567708, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "05", + "parts": [ + { + "label": "05.2", + "page": 14, + "bbox": { + "l": 49.89299011230469, + "t": 418.79799397786456, + "r": 101.9000956217448, + "b": 404.36855061848956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.3", + "page": 15, + "bbox": { + "l": 48.62452697753906, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.4", + "page": 15, + "bbox": { + "l": 49.89299011230469, + "t": 462.51072184244794, + "r": 106.12831624348958, + "b": 448.08127848307294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "06", + "parts": [ + { + "label": "06.2", + "page": 16, + "bbox": { + "l": 49.04734802246094, + "t": 463.35947672526044, + "r": 106.97395833333333, + "b": 447.65688069661456, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.3", + "page": 16, + "bbox": { + "l": 48.201700846354164, + "t": 295.7234090169271, + "r": 102.32291666666667, + "b": 280.4451700846354, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.5", + "page": 18, + "bbox": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 413.5198567708333, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": true, + "extended": false + } + ] + }, + { + "question": "07", + "parts": [ + { + "label": "07.1", + "page": 19, + "bbox": { + "l": 50.31581115722656, + "t": 745.1578877766927, + "r": 100.20880126953125, + "b": 730.7284545898438, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.2", + "page": 20, + "bbox": { + "l": 49.04734802246094, + "t": 737.0943806966146, + "r": 105.2826639811198, + "b": 721.3917541503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.3", + "page": 20, + "bbox": { + "l": 50.31581115722656, + "t": 593.6488037109375, + "r": 103.16855875651042, + "b": 579.2193806966145, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.4", + "page": 21, + "bbox": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 6, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "07.5", + "page": 22, + "bbox": { + "l": 47.77887980143229, + "t": 736.2455851236979, + "r": 101.9000956217448, + "b": 720.9673563639323, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + } + ], + "regions": [ + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 555.8776448567708, + "r": 546.2859700520834, + "b": 492.21836344401044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "GCSE H COMBINED SCIENCE: TRILOGY" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 398.00262451171875, + "r": 92.17519124348958, + "b": 385.27077229817706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Materials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 369.56817626953125, + "r": 83.71875, + "b": 358.95827229817706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a ruler" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 356.41192626953125, + "r": 153.484375, + "b": 346.22642008463544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a scientific calculator" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 343.25567626953125, + "r": 191.9611612955729, + "b": 330.52382405598956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the periodic table (enclosed)." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 317.3675740559896, + "r": 108.66524251302083, + "b": 305.90887451171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Instructions" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 304.2113240559896, + "r": 231.28361002604166, + "b": 290.63067626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Use black ink or black ball-point pen." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 290.63067626953125, + "r": 242.6998087565104, + "b": 277.0500284830729, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Pencil should only be used for drawing." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 264.7425740559896, + "r": 270.60605875651044, + "b": 249.88873291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Answer all questions in the spaces provided." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.43655141194662, + "t": 277.8988240559896, + "r": 241.43133544921875, + "b": 263.04498291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Fill in the boxes at the top of this page." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 251.16192626953125, + "r": 424.5132649739583, + "b": 224.84942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "If you need extra space for your answer(s), use the lined pages at the end of th" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 224.42502848307288, + "r": 429.5871175130208, + "b": 199.81011962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Do all rough work in this book. Cross through any work you do not want to be ma" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 198.11252848307288, + "r": 356.0160725911458, + "b": 185.38067626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Inall calculations,showclearlyhowyouworkoutyouranswer." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 171.80002848307288, + "r": 106.55113728841145, + "b": 159.06817626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Information" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 157.37058512369788, + "r": 245.23673502604166, + "b": 145.48752848307288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The maximum mark for this paper is 70." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 42.282196044921875, + "t": 143.36553955078125, + "r": 281.59942626953125, + "b": 132.33127848307288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Themarksforquestionsareshowninbrackets." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 117.47743733723962, + "r": 474.40625, + "b": 104.32118733723962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You are reminded of the need for good English and clear presentation in your ans" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 316.2708333333333, + "t": 20.71531168619788, + "r": 367.8551025390625, + "b": 12.227437337239621, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/E10" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 449.4597574869792, + "t": 33.87156168619788, + "r": 545.4403076171875, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 2, + "bbox": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.86126708984375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 2, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 3, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 3, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 4, + "bbox": { + "l": 268.06911214192706, + "t": 708.2355041503906, + "r": 313.3110758463542, + "b": 693.8060709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 4, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 5, + "bbox": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 5, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 6, + "bbox": { + "l": 302.3177083333333, + "t": 709.0842997233073, + "r": 348.4053141276042, + "b": 694.6548563639323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 6, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 7, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 8, + "bbox": { + "l": 113.73910522460938, + "t": 563.941141764323, + "r": 162.78645833333334, + "b": 550.784891764323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9 \u00b1 1cm3" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 8, + "bbox": { + "l": 113.73910522460938, + "t": 527.018778483073, + "r": 162.78645833333334, + "b": 513.862528483073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9 \u00b12cm3" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 8, + "bbox": { + "l": 113.73910522460938, + "t": 490.09637451171875, + "r": 162.78645833333334, + "b": 476.94012451171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9 \u00b13cm3" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 8, + "bbox": { + "l": 49.04734802246094, + "t": 403.09539794921875, + "r": 479.4801025390625, + "b": 377.20729573567706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "02.5 The potassium sulfate solution has 0.86 g of potassium sulfate dissolved in" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 8, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 9, + "bbox": { + "l": 285.82763671875, + "t": 810.9391352335612, + "r": 292.59279378255206, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 9, + "bbox": { + "l": 467.6410725911458, + "t": 25.38368733723962, + "r": 539.9436442057291, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 10, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 10, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 11, + "bbox": { + "l": 283.7135416666667, + "t": 810.9391352335612, + "r": 294.7069091796875, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 11, + "bbox": { + "l": 302.7405192057292, + "t": 481.60850016276044, + "r": 347.9824625651042, + "b": 466.75465901692706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 11, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 12, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 12, + "bbox": { + "l": 115.43039957682292, + "t": 774.441151936849, + "r": 415.6339925130208, + "b": 761.7092946370443, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4 shows the melting points of some Group 7 elements." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 12, + "bbox": { + "l": 302.3177083333333, + "t": 749.4018351236979, + "r": 348.4053141276042, + "b": 734.972401936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 12, + "bbox": { + "l": 114.16192626953125, + "t": 209.14678955078125, + "r": 174.2026570638021, + "b": 195.99053955078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You should:" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 12, + "bbox": { + "l": 116.27604166666667, + "t": 188.77581787109375, + "r": 284.55918375651044, + "b": 176.46836344401038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7complete the scale on the y-axis" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 12, + "bbox": { + "l": 116.27604166666667, + "t": 170.52683512369788, + "r": 339.9488525390625, + "b": 157.37058512369788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7draw the bar for the melting point of fluorine." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 12, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 13, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 13, + "bbox": { + "l": 126.00094604492188, + "t": 428.13470458984375, + "r": 149.6789754231771, + "b": 412.00767008463544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(aq)" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 13, + "bbox": { + "l": 226.20975748697916, + "t": 427.28590901692706, + "r": 242.6998087565104, + "b": 412.43206787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(g)" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 13, + "bbox": { + "l": 324.304443359375, + "t": 426.86151123046875, + "r": 336.9890950520833, + "b": 412.85646565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(1)" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 13, + "bbox": { + "l": 419.0165608723958, + "t": 427.28590901692706, + "r": 434.6609700520833, + "b": 412.43206787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(s)" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 13, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 14, + "bbox": { + "l": 283.29071044921875, + "t": 811.7879257202148, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "14" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 14, + "bbox": { + "l": 302.3177083333333, + "t": 718.4209899902344, + "r": 348.4053141276042, + "b": 703.9915568033854, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 14, + "bbox": { + "l": 302.3177083333333, + "t": 718.4209899902344, + "r": 348.4053141276042, + "b": 703.9915568033854, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 14, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 15, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "15" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 15, + "bbox": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 16, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 16, + "bbox": { + "l": 302.3177083333333, + "t": 642.8786417643229, + "r": 347.9824625651042, + "b": 628.0248209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 16, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 17, + "bbox": { + "l": 283.7135416666667, + "t": 811.3635304768881, + "r": 295.55255126953125, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "17" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 17, + "bbox": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 18, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 18, + "bbox": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 413.5198567708333, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "06.5 Ethene and hydrogen chloride react toproduce chloroethane." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 18, + "bbox": { + "l": 304.0089925130208, + "t": 556.3020426432292, + "r": 345.445556640625, + "b": 544.418965657552, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 18, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 19, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "19" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 19, + "bbox": { + "l": 303.16335042317706, + "t": 716.7234090169271, + "r": 347.9824625651042, + "b": 703.5671590169271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 474.40625, + "t": 69.52081298828125, + "r": 538.2523600260416, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Turn over" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 20, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 20, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 21, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 22, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 22, + "bbox": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 23, + "bbox": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 23, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 24, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "26" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 26, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 27, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 28, + "bbox": { + "l": 54.54403177897135, + "t": 162.88771565755212, + "r": 134.03455607096353, + "b": 153.12660725911462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Copyrightinformation" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 28, + "bbox": { + "l": 173.77982584635416, + "t": 774.8655446370443, + "r": 403.7949625651042, + "b": 761.284901936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "There are no questions printed on this page" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 28, + "bbox": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/8464/C/1H" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 38.79048156738281, + "t": 799.1484489440918, + "r": 169.33349609375, + "b": 751.7754821777344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 41.5687370300293, + "t": 53.447021484375, + "r": 260.0397644042969, + "b": 17.4593505859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 499.9075622558594, + "t": 546.5237731933594, + "r": 543.283203125, + "b": 492.9493408203125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 43.48795700073242, + "t": 53.01129150390625, + "r": 99.5518798828125, + "b": 16.3326416015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 43.731075286865234, + "t": 53.1234130859375, + "r": 99.06757354736328, + "b": 17.42724609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 39.90925979614258, + "t": 788.3383407592773, + "r": 539.5222778320312, + "b": 75.62664794921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 43.61348342895508, + "t": 53.30914306640625, + "r": 99.17985534667969, + "b": 17.54168701171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 43.736167907714844, + "t": 53.16796875, + "r": 99.1783447265625, + "b": 17.5302734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 39.979766845703125, + "t": 787.9906692504883, + "r": 565.450927734375, + "b": 75.2119140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 43.70774841308594, + "t": 53.13519287109375, + "r": 99.08021545410156, + "b": 17.54150390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 43.82590103149414, + "t": 53.19244384765625, + "r": 99.24347686767578, + "b": 17.65533447265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 43.71919631958008, + "t": 53.1612548828125, + "r": 99.12417602539062, + "b": 17.5555419921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 43.74698257446289, + "t": 53.18414306640625, + "r": 99.09233856201172, + "b": 17.62640380859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 543.3880004882812, + "t": 235.318603515625, + "r": 575.90380859375, + "b": 193.9166259765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 43.471134185791016, + "t": 53.17144775390625, + "r": 99.5299301147461, + "b": 16.9287109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 43.7734489440918, + "t": 53.146484375, + "r": 99.2735366821289, + "b": 17.89306640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 199.81361389160156, + "t": 454.4280700683594, + "r": 448.8752136230469, + "b": 363.1585693359375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 43.62034606933594, + "t": 53.29388427734375, + "r": 99.07697296142578, + "b": 17.30511474609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 145.95323181152344, + "t": 722.9683380126953, + "r": 502.8610534667969, + "b": 313.97369384765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 43.79945373535156, + "t": 53.1492919921875, + "r": 99.1850814819336, + "b": 17.49383544921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 39.65153884887695, + "t": 787.9851226806641, + "r": 539.361572265625, + "b": 75.42340087890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 43.73477554321289, + "t": 53.20611572265625, + "r": 99.19538879394531, + "b": 17.77740478515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 40.30547332763672, + "t": 787.8382034301758, + "r": 538.6801147460938, + "b": 75.74310302734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 43.73532485961914, + "t": 53.18359375, + "r": 99.1739273071289, + "b": 17.454833984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 543.523193359375, + "t": 178.8212890625, + "r": 575.2889404296875, + "b": 137.7919921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 248.36061096191406, + "t": 619.3990631103516, + "r": 400.34326171875, + "b": 502.91015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 43.68505859375, + "t": 53.21319580078125, + "r": 99.13385772705078, + "b": 17.48260498046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 43.8148193359375, + "t": 53.18902587890625, + "r": 99.27465057373047, + "b": 17.84124755859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 160.50936889648438, + "t": 723.0121917724609, + "r": 486.46734619140625, + "b": 662.5936126708984, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 43.630977630615234, + "t": 53.2061767578125, + "r": 99.01527404785156, + "b": 17.714599609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 543.5875244140625, + "t": 240.2454833984375, + "r": 575.9736938476562, + "b": 199.5877685546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 46.48485565185547, + "t": 776.6813812255859, + "r": 81.98703002929688, + "b": 759.3180694580078, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 46.999271392822266, + "t": 746.6977081298828, + "r": 104.37225341796875, + "b": 730.5146484375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 43.84652328491211, + "t": 53.1729736328125, + "r": 99.21656799316406, + "b": 17.734130859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 250.1741180419922, + "t": 683.5161590576172, + "r": 398.9270324707031, + "b": 440.20361328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 43.68428039550781, + "t": 53.1865234375, + "r": 99.17168426513672, + "b": 17.3621826171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 43.703269958496094, + "t": 53.1361083984375, + "r": 99.26348114013672, + "b": 17.64483642578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 43.818931579589844, + "t": 53.05535888671875, + "r": 99.13025665283203, + "b": 17.30499267578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 543.1671142578125, + "t": 418.2695007324219, + "r": 575.9228515625, + "b": 377.17498779296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 43.45603561401367, + "t": 52.97747802734375, + "r": 99.51256561279297, + "b": 16.436767578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 43.730472564697266, + "t": 53.16552734375, + "r": 99.35018920898438, + "b": 17.1514892578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 43.69895553588867, + "t": 53.1668701171875, + "r": 99.3472671508789, + "b": 16.82537841796875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 43.691429138183594, + "t": 53.14117431640625, + "r": 99.34754180908203, + "b": 16.77655029296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 43.77190017700195, + "t": 53.216064453125, + "r": 99.36135864257812, + "b": 17.26806640625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 43.7439079284668, + "t": 53.30078125, + "r": 99.22008514404297, + "b": 17.2099609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 334.399169921875, + "t": 67.79498291015625, + "r": 539.0598754882812, + "b": 32.12347412109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 1, + "bbox": { + "l": 443.6445007324219, + "t": 395.4227294921875, + "r": 544.02490234375, + "b": 214.38214111328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 18, + "bbox": { + "l": 177.91253662109375, + "t": 532.1428527832031, + "r": 471.9355773925781, + "b": 467.1118469238281, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + } + ], + "tables": [ + { + "page": 18, + "n_rows": 2, + "n_cols": 6, + "grid": [ + [ + "Bond", + "H-C", + "C=C", + "H-CI", + "C-C", + "C-CI" + ], + [ + "Bondenergy inkJ/mol", + "413", + "x", + "431", + "346", + "339" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 0, + "for_part": "06.5" + } + ], + "stats": { + "n_questions": 6, + "n_parts": 25, + "marks_parts_known": 24, + "marks_sum": 51, + "marks_check": { + "sum": 51, + "expected_max": 70, + "pct": 72.9 + }, + "gemma_answer_regions": 0, + "gemma_marks_filled": 0, + "gemma_marks_gapfilled": 0, + "n_data_tables": 1, + "n_furniture_tables": 1, + "table_sources": { + "docling-standard": 1 + }, + "table_pages": [ + 18 + ], + "region_type_counts": { + "context_caption": 7, + "context_data": 2, + "context_figure": 46, + "furniture": 58, + "heading": 11, + "instruction": 16, + "mcq_option": 7 + } + }, + "coverage": { + "coverage_pct": 45.2, + "recovered": 19, + "total": 42, + "missed": [ + "01.3", + "03.1", + "03.2", + "03.3", + "03.4", + "04.1", + "05.1", + "06.1", + "08.1", + "08.2", + "08.3", + "08.4", + "08.5", + "09.1", + "09.2", + "09.3", + "10.1", + "10.2", + "10.3", + "11.1", + "11.2", + "11.3", + "11.4" + ], + "source": "builtin-physics-gt" + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/template.json b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/template.json new file mode 100644 index 0000000..fba5bbb --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/template.json @@ -0,0 +1,3374 @@ +{ + "meta": { + "schema": "exam-template/first-pass/v1", + "board": "aqa", + "paper_code": null, + "source_pdf": "samples/b1/aqa-combined-8464-c1h-2022jun.pdf", + "n_pages": 28, + "coord_origin": "BOTTOMLEFT", + "units": "pdf_points", + "generated_at": "2026-06-08T01:49:05", + "ui_principle": "directional limits = draggable axis-locked lines; object footprints = boxes", + "confirmed": false, + "confirmed_by": null, + "confirmed_at": null + }, + "margins": [ + { + "edge": "left", + "axis": "x", + "value": 40.3, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "right", + "axis": "x", + "value": 539.4, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "top", + "axis": "y", + "value": 788.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "top", + "axis": "y", + "value": 788.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 7 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "bottom", + "axis": "y", + "value": 160.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "top", + "axis": "y", + "value": 774.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 11 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "bottom", + "axis": "y", + "value": 143.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "bottom", + "axis": "y", + "value": 56.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "top", + "axis": "y", + "value": 788.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "top", + "axis": "y", + "value": 787.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "bottom", + "axis": "y", + "value": 254.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "bottom", + "axis": "y", + "value": 198.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "top", + "axis": "y", + "value": 774.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "bottom", + "axis": "y", + "value": 58.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "bottom", + "axis": "y", + "value": 541.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "bottom", + "axis": "y", + "value": 57.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "top", + "axis": "y", + "value": 775.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "bottom", + "axis": "y", + "value": 314.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "top", + "axis": "y", + "value": 771.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "bottom", + "axis": "y", + "value": 745.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "top", + "axis": "y", + "value": 788.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "bottom", + "axis": "y", + "value": 745.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "top", + "axis": "y", + "value": 771.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "bottom", + "axis": "y", + "value": 745.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "top", + "axis": "y", + "value": 774.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + }, + { + "edge": "bottom", + "axis": "y", + "value": 30.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + } + ], + "pages": { + "1": { + "role": "cover", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 449.4597574869792, + "t": 33.87156168619788, + "r": 545.4403076171875, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 38.79048156738281, + "t": 799.1484489440918, + "r": 169.33349609375, + "b": 751.7754821777344, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 41.5687370300293, + "t": 53.447021484375, + "r": 260.0397644042969, + "b": 17.4593505859375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 499.9075622558594, + "t": 546.5237731933594, + "r": 543.283203125, + "b": 492.9493408203125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "2": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.86126708984375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 27.93007405598962, + "r": 80.33617146809895, + "b": 14.773824055989621, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.171875, + "t": 788.4461924235026, + "r": 583.9171142578125, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.48795700073242, + "t": 53.01129150390625, + "r": 99.5518798828125, + "b": 16.3326416015625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "3": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 711.2, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.1", + "question": "01", + "y_start": 711.2, + "y_end": 451.5, + "label_box": { + "l": 49.04734802246094, + "t": 711.2062683105469, + "r": 101.054443359375, + "b": 696.3524373372396, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 711.2, + "r": 539.4, + "b": 451.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.2", + "question": "01", + "y_start": 451.5, + "y_end": 190.5, + "label_box": { + "l": 49.04734802246094, + "t": 451.47642008463544, + "r": 106.55113728841145, + "b": 435.77382405598956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 451.5, + "r": 539.4, + "b": 190.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.4", + "question": "01", + "y_start": 190.5, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 190.47340901692712, + "r": 101.9000956217448, + "b": 175.61956787109375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 190.5, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.731075286865234, + "t": 53.1234130859375, + "r": 99.06757354736328, + "b": 17.42724609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "4": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.5", + "question": "01", + "y_start": 776.1, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 103.16855875651042, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 776.1, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.61348342895508, + "t": 53.30914306640625, + "r": 99.17985534667969, + "b": 17.54168701171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "5": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.736167907714844, + "t": 53.16796875, + "r": 99.1783447265625, + "b": 17.5302734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "6": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.1", + "question": "02", + "y_start": 412.9, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 412.85646565755206, + "r": 104.01420084635417, + "b": 397.15386962890625, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 412.9, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 80.33617146809895, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.70774841308594, + "t": 53.13519287109375, + "r": 99.08021545410156, + "b": 17.54150390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "7": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 776.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.2", + "question": "02", + "y_start": 776.1, + "y_end": 584.3, + "label_box": { + "l": 48.62452697753906, + "t": 776.1387329101562, + "r": 104.85984293619792, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 776.1, + "r": 539.4, + "b": 584.3, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.3", + "question": "02", + "y_start": 584.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 584.3121134440105, + "r": 101.9000956217448, + "b": 569.0338948567708, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 584.3, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.82590103149414, + "t": 53.19244384765625, + "r": 99.24347686767578, + "b": 17.65533447265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "8": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.4", + "question": "02", + "y_start": 775.3, + "y_end": 403.1, + "label_box": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 775.3, + "r": 539.4, + "b": 403.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.5", + "question": "02", + "y_start": 403.1, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 403.09539794921875, + "r": 479.4801025390625, + "b": 377.20729573567706, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 403.1, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.71919631958008, + "t": 53.1612548828125, + "r": 99.12417602539062, + "b": 17.5555419921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "9": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.9391352335612, + "r": 292.59279378255206, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 48.201700846354164, + "t": 774.441151936849, + "r": 79.06770833333333, + "b": 758.7385304768881, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.34943135579427, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 762.5580851236979, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.38368733723962, + "r": 539.9436442057291, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74698257446289, + "t": 53.18414306640625, + "r": 99.09233856201172, + "b": 17.62640380859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.3880004882812, + "t": 235.318603515625, + "r": 575.90380859375, + "b": 193.9166259765625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "10": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.2949829101562, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.471134185791016, + "t": 53.17144775390625, + "r": 99.5299301147461, + "b": 16.9287109375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "11": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 774.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.2", + "question": "04", + "y_start": 640.8, + "y_end": 508.8, + "label_box": { + "l": 49.04734802246094, + "t": 640.7566731770834, + "r": 109.93370564778645, + "b": 625.0540568033854, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 640.8, + "r": 539.4, + "b": 508.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.3", + "question": "04", + "y_start": 508.8, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 508.769775390625, + "r": 410.1372884114583, + "b": 494.34035237630206, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 508.8, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 283.7135416666667, + "t": 810.9391352335612, + "r": 294.7069091796875, + "b": 802.0268376668295, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.441151936849, + "r": 79.4905293782552, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7734489440918, + "t": 53.146484375, + "r": 99.2735366821289, + "b": 17.89306640625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 199.81361389160156, + "t": 454.4280700683594, + "r": 448.8752136230469, + "b": 363.1585693359375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "12": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 259.2, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.4", + "question": "04", + "y_start": 259.2, + "y_end": 0.0, + "label_box": { + "l": 50.73863728841146, + "t": 259.22540283203125, + "r": 101.054443359375, + "b": 246.06915283203125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 259.2, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.11049397786462, + "r": 78.22206115722656, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.62034606933594, + "t": 53.29388427734375, + "r": 99.07697296142578, + "b": 17.30511474609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 145.95323181152344, + "t": 722.9683380126953, + "r": 502.8610534667969, + "b": 313.97369384765625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "13": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.5", + "question": "04", + "y_start": 775.7, + "y_end": 518.1, + "label_box": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 103.5913798014323, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 775.7, + "r": 539.4, + "b": 518.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "04.6", + "question": "04", + "y_start": 518.1, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 518.106465657552, + "r": 101.9000956217448, + "b": 503.2526448567708, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 518.1, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.79945373535156, + "t": 53.1492919921875, + "r": 99.1850814819336, + "b": 17.49383544921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "14": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.2", + "question": "05", + "y_start": 418.8, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 418.79799397786456, + "r": 101.9000956217448, + "b": 404.36855061848956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 418.8, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 283.29071044921875, + "t": 811.7879257202148, + "r": 295.97536214192706, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73477554321289, + "t": 53.20611572265625, + "r": 99.19538879394531, + "b": 17.77740478515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "15": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.3", + "question": "05", + "y_start": 774.9, + "y_end": 462.5, + "label_box": { + "l": 48.62452697753906, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 774.9, + "r": 539.4, + "b": 462.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.4", + "question": "05", + "y_start": 462.5, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 462.51072184244794, + "r": 106.12831624348958, + "b": 448.08127848307294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 462.5, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73532485961914, + "t": 53.18359375, + "r": 99.1739273071289, + "b": 17.454833984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.523193359375, + "t": 178.8212890625, + "r": 575.2889404296875, + "b": 137.7919921875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "16": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.2", + "question": "06", + "y_start": 463.4, + "y_end": 295.7, + "label_box": { + "l": 49.04734802246094, + "t": 463.35947672526044, + "r": 106.97395833333333, + "b": 447.65688069661456, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 463.4, + "r": 539.4, + "b": 295.7, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.3", + "question": "06", + "y_start": 295.7, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 295.7234090169271, + "r": 102.32291666666667, + "b": 280.4451700846354, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 295.7, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 79.4905293782552, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.57101949055989, + "t": 23.26169840494788, + "r": 77.37641906738281, + "b": 18.59340413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.68505859375, + "t": 53.21319580078125, + "r": 99.13385772705078, + "b": 17.48260498046875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 248.36061096191406, + "t": 619.3990631103516, + "r": 400.34326171875, + "b": 502.91015625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "17": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 283.7135416666667, + "t": 811.3635304768881, + "r": 295.55255126953125, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 102.32291666666667, + "b": 759.1629282633463, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.8148193359375, + "t": 53.18902587890625, + "r": 99.27465057373047, + "b": 17.84124755859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "18": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.5", + "question": "06", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 413.5198567708333, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 775.3, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.630977630615234, + "t": 53.2061767578125, + "r": 99.01527404785156, + "b": 17.714599609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 160.50936889648438, + "t": 723.0121917724609, + "r": 486.46734619140625, + "b": 662.5936126708984, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 543.5875244140625, + "t": 240.2454833984375, + "r": 575.9736938476562, + "b": 199.5877685546875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [ + { + "box": null, + "n_rows": 2, + "n_cols": 6, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "19": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.1", + "question": "07", + "y_start": 745.2, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 745.1578877766927, + "r": 100.20880126953125, + "b": 730.7284545898438, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 745.2, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 775.2899424235026, + "r": 80.33617146809895, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 775.2899424235026, + "r": 80.33617146809895, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.2949829101562, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 46.48485565185547, + "t": 776.6813812255859, + "r": 81.98703002929688, + "b": 759.3180694580078, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_picture", + "docling_label": "picture", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.84652328491211, + "t": 53.1729736328125, + "r": 99.21656799316406, + "b": 17.734130859375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 250.1741180419922, + "t": 683.5161590576172, + "r": 398.9270324707031, + "b": 440.20361328125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "20": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 737.1, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.2", + "question": "07", + "y_start": 737.1, + "y_end": 593.6, + "label_box": { + "l": 49.04734802246094, + "t": 737.0943806966146, + "r": 105.2826639811198, + "b": 721.3917541503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 737.1, + "r": 539.4, + "b": 593.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "07.3", + "question": "07", + "y_start": 593.6, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 593.6488037109375, + "r": 103.16855875651042, + "b": 579.2193806966145, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 593.6, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.68428039550781, + "t": 53.1865234375, + "r": 99.17168426513672, + "b": 17.3621826171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "21": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.4", + "question": "07", + "y_start": 775.7, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 775.7, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.703269958496094, + "t": 53.1361083984375, + "r": 99.26348114013672, + "b": 17.64483642578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "22": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 736.2, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.5", + "question": "07", + "y_start": 736.2, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 736.2455851236979, + "r": 101.9000956217448, + "b": 720.9673563639323, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 40.3, + "t": 736.2, + "r": 539.4, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.198221842447879, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.818931579589844, + "t": 53.05535888671875, + "r": 99.13025665283203, + "b": 17.30499267578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.1671142578125, + "t": 418.2695007324219, + "r": 575.9228515625, + "b": 377.17498779296875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "23": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.1765950520833, + "t": 813.0611114501953, + "r": 297.24383544921875, + "b": 799.0560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.45603561401367, + "t": 52.97747802734375, + "r": 99.51256561279297, + "b": 16.436767578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "24": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.53489176432288, + "r": 66.38304646809895, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 65.11458333333333, + "t": 25.80808512369788, + "r": 80.33617146809895, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.730472564697266, + "t": 53.16552734375, + "r": 99.35018920898438, + "b": 17.1514892578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "25": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.53489176432288, + "r": 66.38304646809895, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 26.23248291015625, + "r": 79.4905293782552, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.69895553588867, + "t": 53.1668701171875, + "r": 99.3472671508789, + "b": 16.82537841796875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "26": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.04072062174479, + "t": 24.95928955078125, + "r": 66.80586751302083, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 63.42329406738281, + "t": 25.80808512369788, + "r": 79.91335042317708, + "b": 16.04701741536462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.691429138183594, + "t": 53.14117431640625, + "r": 99.34754180908203, + "b": 16.77655029296875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "27": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 54.54403177897135, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 747.7042541503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_text", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.53489176432288, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 467.6410725911458, + "t": 25.80808512369788, + "r": 540.366455078125, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.77190017700195, + "t": 53.216064453125, + "r": 99.36135864257812, + "b": 17.26806640625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "28": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 544.5946858723959, + "t": 789.7193756103516, + "r": 583.4943033854166, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 468.0639241536458, + "t": 24.95928955078125, + "r": 539.5208333333334, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7439079284668, + "t": 53.30078125, + "r": 99.22008514404297, + "b": 17.2099609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 334.399169921875, + "t": 67.79498291015625, + "r": 539.0598754882812, + "b": 32.12347412109375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/validate.json b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/validate.json new file mode 100644 index 0000000..303b842 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-combined-8464-c1h-2022jun/validate.json @@ -0,0 +1,118 @@ +{ + "paper_code": null, + "board": "aqa", + "summary": { + "worst_severity": "warn", + "needs_priority_review": true, + "n_flags": 5, + "marks_sum": 51, + "official_max": 70, + "parts_total": 25, + "parts_low_conf": 1, + "questions_expected": 7, + "questions_recovered": 6 + }, + "flags": [ + "[warn] C1_marks_sum: marks sum 51 below official max 70 (-19) \u2014 missing parts or unread marks", + "[warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens", + "[warn] C3_question_seq: top-level questions [3] missing between 1-7 \u2014 expected but unrecovered; surface as second-pass slots in the question tree", + "[warn] C4_subpart_seq: sub-part gaps: Q01 missing ['3'], Q06 missing ['4']", + "[warn] C5_coverage: 45.2% vs GT (19/42); missed ['01.3', '03.1', '03.2', '03.3', '03.4', '04.1', '05.1', '06.1', '08.1', '08.2']" + ], + "checks": [ + { + "id": "C1_marks_sum", + "severity": "warn", + "status": "under", + "detail": "marks sum 51 below official max 70 (-19) \u2014 missing parts or unread marks" + }, + { + "id": "C2_part_marks", + "severity": "warn", + "status": "missing", + "detail": "1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens" + }, + { + "id": "C3_question_seq", + "severity": "warn", + "status": "gap", + "detail": "top-level questions [3] missing between 1-7 \u2014 expected but unrecovered; surface as second-pass slots in the question tree" + }, + { + "id": "C4_subpart_seq", + "severity": "warn", + "status": "gap", + "detail": "sub-part gaps: Q01 missing ['3'], Q06 missing ['4']" + }, + { + "id": "C5_coverage", + "severity": "warn", + "status": "missed", + "detail": "45.2% vs GT (19/42); missed ['01.3', '03.1', '03.2', '03.3', '03.4', '04.1', '05.1', '06.1', '08.1', '08.2']" + } + ], + "part_confidence": { + "01.1": "medium", + "01.2": "medium", + "01.4": "medium", + "01.5": "low", + "02.1": "medium", + "02.2": "medium", + "02.3": "medium", + "02.4": "medium", + "02.5": "medium", + "04.2": "medium", + "04.3": "medium", + "04.4": "medium", + "04.5": "medium", + "04.6": "medium", + "05.2": "medium", + "05.3": "medium", + "05.4": "medium", + "06.2": "medium", + "06.3": "medium", + "06.5": "medium", + "07.1": "medium", + "07.2": "medium", + "07.3": "medium", + "07.4": "medium", + "07.5": "medium" + }, + "question_sequence": [ + { + "n": 1, + "label": "01", + "recovered": true + }, + { + "n": 2, + "label": "02", + "recovered": true + }, + { + "n": 3, + "label": "03", + "recovered": false + }, + { + "n": 4, + "label": "04", + "recovered": true + }, + { + "n": 5, + "label": "05", + "recovered": true + }, + { + "n": 6, + "label": "06", + "recovered": true + }, + { + "n": 7, + "label": "07", + "recovered": true + } + ] +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/bands.json b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/bands.json new file mode 100644 index 0000000..de067e2 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/bands.json @@ -0,0 +1,691 @@ +{ + "board": "aqa", + "paper_code": "7408/1", + "coord_origin": "BOTTOMLEFT", + "pages": { + "2": { + "main": [ + { + "question": "01", + "y_start": 673.0, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "01.1", + "question": "01", + "y_start": 673.0, + "y_end": 495.6 + }, + { + "label": "01.2", + "question": "01", + "y_start": 495.6, + "y_end": 0.0 + } + ] + }, + "3": { + "main": [ + { + "question": "01", + "y_start": 471.4, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.3", + "question": "01", + "y_start": 471.4, + "y_end": 0.0 + } + ] + }, + "4": { + "main": [ + { + "question": "01", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "01.4", + "question": "01", + "y_start": 775.7, + "y_end": 478.6 + }, + { + "label": "01.5", + "question": "01", + "y_start": 478.6, + "y_end": 0.0 + } + ] + }, + "5": { + "main": [ + { + "question": "02", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "02.1", + "question": "02", + "y_start": 729.0, + "y_end": 622.9 + }, + { + "label": "02.2", + "question": "02", + "y_start": 622.9, + "y_end": 0.0 + } + ] + }, + "6": { + "main": [ + { + "question": "02", + "y_start": 702.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "02.3", + "question": "02", + "y_start": 702.3, + "y_end": 623.4 + }, + { + "label": "02.4", + "question": "02", + "y_start": 623.4, + "y_end": 0.0 + } + ] + }, + "9": { + "main": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "03.1", + "question": "03", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "10": { + "main": [ + { + "question": "03", + "y_start": 510.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.2", + "question": "03", + "y_start": 510.9, + "y_end": 263.5 + }, + { + "label": "03.3", + "question": "03", + "y_start": 263.5, + "y_end": 0.0 + } + ] + }, + "12": { + "main": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.4", + "question": "03", + "y_start": 774.9, + "y_end": 0.0 + } + ] + }, + "13": { + "main": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "03.5", + "question": "03", + "y_start": 774.9, + "y_end": 0.0 + } + ] + }, + "14": { + "main": [ + { + "question": "04", + "y_start": 774.0, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "04.2", + "question": "04", + "y_start": 387.4, + "y_end": 0.0 + } + ] + }, + "15": { + "main": [ + { + "question": "04", + "y_start": 487.6, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.3", + "question": "04", + "y_start": 487.6, + "y_end": 0.0 + } + ] + }, + "17": { + "main": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "04.5", + "question": "04", + "y_start": 775.3, + "y_end": 0.0 + } + ] + }, + "18": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "05.1", + "question": "05", + "y_start": 558.4, + "y_end": 0.0 + } + ] + }, + "19": { + "main": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.2", + "question": "05", + "y_start": 775.3, + "y_end": 507.5 + }, + { + "label": "05.3", + "question": "05", + "y_start": 507.5, + "y_end": 0.0 + } + ] + }, + "20": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.4", + "question": "05", + "y_start": 774.9, + "y_end": 574.1 + }, + { + "label": "05.5", + "question": "05", + "y_start": 574.1, + "y_end": 0.0 + } + ] + }, + "21": { + "main": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "05.6", + "question": "05", + "y_start": 774.9, + "y_end": 0.0 + } + ] + }, + "22": { + "main": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "06.1", + "question": "06", + "y_start": 496.0, + "y_end": 0.0 + } + ] + }, + "23": { + "main": [ + { + "question": "06", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false + } + ], + "part": [ + { + "label": "06.2", + "question": "06", + "y_start": 775.7, + "y_end": 379.8 + }, + { + "label": "06.3", + "question": "06", + "y_start": 379.8, + "y_end": 0.0 + } + ] + }, + "24": { + "main": [ + { + "question": "07", + "y_start": 461.7, + "y_end": 280.0, + "is_start": true + }, + { + "question": "08", + "y_start": 280.0, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "07.0", + "question": "07", + "y_start": 461.7, + "y_end": 280.0 + }, + { + "label": "08.0", + "question": "08", + "y_start": 280.0, + "y_end": 0.0 + } + ] + }, + "25": { + "main": [ + { + "question": "11", + "y_start": 358.5, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "11.0", + "question": "11", + "y_start": 358.5, + "y_end": 0.0 + } + ] + }, + "26": { + "main": [ + { + "question": "12", + "y_start": 775.3, + "y_end": 594.1, + "is_start": true + }, + { + "question": "13", + "y_start": 594.1, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "12.0", + "question": "12", + "y_start": 775.3, + "y_end": 594.1 + }, + { + "label": "13.0", + "question": "13", + "y_start": 594.1, + "y_end": 0.0 + } + ] + }, + "27": { + "main": [ + { + "question": "15", + "y_start": 774.4, + "y_end": 561.0, + "is_start": true + }, + { + "question": "16", + "y_start": 561.0, + "y_end": 280.4, + "is_start": true + }, + { + "question": "17", + "y_start": 280.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "15.0", + "question": "15", + "y_start": 774.4, + "y_end": 561.0 + }, + { + "label": "16.0", + "question": "16", + "y_start": 561.0, + "y_end": 280.4 + }, + { + "label": "17.0", + "question": "17", + "y_start": 280.4, + "y_end": 0.0 + } + ] + }, + "28": { + "main": [ + { + "question": "18", + "y_start": 774.4, + "y_end": 317.4, + "is_start": true + }, + { + "question": "20", + "y_start": 317.4, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "18.0", + "question": "18", + "y_start": 774.4, + "y_end": 317.4 + }, + { + "label": "20.0", + "question": "20", + "y_start": 317.4, + "y_end": 0.0 + } + ] + }, + "29": { + "main": [ + { + "question": "21", + "y_start": 775.3, + "y_end": 554.2, + "is_start": true + }, + { + "question": "22", + "y_start": 554.2, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "21.0", + "question": "21", + "y_start": 775.3, + "y_end": 554.2 + }, + { + "label": "22.0", + "question": "22", + "y_start": 554.2, + "y_end": 0.0 + } + ] + }, + "30": { + "main": [ + { + "question": "23", + "y_start": 775.3, + "y_end": 554.2, + "is_start": true + }, + { + "question": "24", + "y_start": 554.2, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "23.0", + "question": "23", + "y_start": 775.3, + "y_end": 554.2 + }, + { + "label": "24.0", + "question": "24", + "y_start": 554.2, + "y_end": 0.0 + } + ] + }, + "31": { + "main": [ + { + "question": "25", + "y_start": 774.9, + "y_end": 386.5, + "is_start": true + }, + { + "question": "26", + "y_start": 386.5, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "25.0", + "question": "25", + "y_start": 774.9, + "y_end": 386.5 + }, + { + "label": "26.0", + "question": "26", + "y_start": 386.5, + "y_end": 0.0 + } + ] + }, + "32": { + "main": [ + { + "question": "27", + "y_start": 775.7, + "y_end": 516.4, + "is_start": true + }, + { + "question": "28", + "y_start": 516.4, + "y_end": 268.6, + "is_start": true + }, + { + "question": "29", + "y_start": 268.6, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "27.0", + "question": "27", + "y_start": 775.7, + "y_end": 516.4 + }, + { + "label": "28.0", + "question": "28", + "y_start": 516.4, + "y_end": 268.6 + }, + { + "label": "29.0", + "question": "29", + "y_start": 268.6, + "y_end": 0.0 + } + ] + }, + "33": { + "main": [ + { + "question": "30", + "y_start": 774.4, + "y_end": 594.1, + "is_start": true + }, + { + "question": "31", + "y_start": 594.1, + "y_end": 0.0, + "is_start": true + } + ], + "part": [ + { + "label": "30.0", + "question": "30", + "y_start": 774.4, + "y_end": 594.1 + }, + { + "label": "31.0", + "question": "31", + "y_start": 594.1, + "y_end": 0.0 + } + ] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/furniture.json b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/furniture.json new file mode 100644 index 0000000..6b8780d --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/furniture.json @@ -0,0 +1 @@ +{"n_pages": 36, "freq_threshold": 0.4, "furniture_cells": {"3,1": 35, "3,32": 20, "12,34": 33, "21,1": 36, "21,3": 15, "24,32": 20}, "content_margins": {"content_x_band": {"x_left": 41.9, "x_right": 536.6}, "per_page": {"1": {"top": 798.1, "bottom": 14.3, "left": 35.9, "right": 545.0}, "2": {"top": 788.9, "bottom": 434.5, "left": 49.0, "right": 583.1}, "3": {"top": 773.6, "bottom": 103.9, "left": 48.2, "right": 535.7}, "4": {"top": 772.7, "bottom": 105.2, "left": 48.6, "right": 568.3}, "5": {"top": 787.2, "bottom": 75.9, "left": 40.0, "right": 539.1}, "6": {"top": 773.6, "bottom": 90.1, "left": 48.2, "right": 576.0}, "7": {"top": 789.1, "bottom": 73.8, "left": 39.1, "right": 540.8}, "8": {"top": 773.6, "bottom": 208.6, "left": 113.7, "right": 498.9}, "9": {"top": 772.7, "bottom": 403.1, "left": 113.7, "right": 536.1}, "10": {"top": 772.3, "bottom": 207.9, "left": 48.6, "right": 536.1}, "11": {"top": 789.5, "bottom": 74.5, "left": 39.1, "right": 539.9}, "12": {"top": 772.7, "bottom": 255.0, "left": 113.7, "right": 536.1}, "13": {"top": 759.2, "bottom": 358.5, "left": 114.2, "right": 575.8}, "14": {"top": 771.9, "bottom": 90.3, "left": 49.5, "right": 536.6}, "15": {"top": 775.3, "bottom": 80.6, "left": 50.3, "right": 535.3}, "16": {"top": 771.5, "bottom": 449.4, "left": 92.7, "right": 535.7}, "17": {"top": 773.2, "bottom": 438.3, "left": 113.7, "right": 567.4}, "18": {"top": 788.0, "bottom": 75.4, "left": 39.5, "right": 539.2}, "19": {"top": 788.7, "bottom": 76.3, "left": 39.9, "right": 539.2}, "20": {"top": 773.2, "bottom": 314.0, "left": 49.0, "right": 536.6}, "21": {"top": 772.7, "bottom": 261.3, "left": 113.3, "right": 567.8}, "22": {"top": 787.5, "bottom": 75.9, "left": 39.4, "right": 539.6}, "23": {"top": 772.3, "bottom": 100.9, "left": 49.9, "right": 565.3}, "24": {"top": 776.1, "bottom": 113.2, "left": 49.9, "right": 536.6}, "25": {"top": 788.2, "bottom": 77.2, "left": 41.4, "right": 558.0}, "26": {"top": 775.3, "bottom": 239.3, "left": 49.0, "right": 536.6}, "27": {"top": 788.5, "bottom": 76.2, "left": 40.2, "right": 539.3}, "28": {"top": 773.6, "bottom": 118.8, "left": 48.6, "right": 536.6}, "29": {"top": 787.7, "bottom": 75.3, "left": 40.1, "right": 540.0}, "30": {"top": 788.3, "bottom": 75.9, "left": 39.8, "right": 539.5}, "31": {"top": 788.1, "bottom": 76.0, "left": 39.6, "right": 539.9}, "32": {"top": 788.4, "bottom": 97.1, "left": 48.2, "right": 582.6}, "33": {"top": 773.2, "bottom": 336.5, "left": 48.2, "right": 567.0}, "34": {"top": 774.9, "bottom": 420.5, "left": 173.8, "right": 403.8}, "35": {"top": 788.9, "bottom": 745.6, "left": 54.5, "right": 580.5}, "36": {"top": 771.0, "bottom": 47.9, "left": 54.5, "right": 527.1}}}, "ab_test_figures": {"context_figure_before_mask": 63, "context_figure_after_mask": 26, "removed_as_furniture": 37, "removed_breakdown": {"cell 3,1": 35, "cell 3,32": 2}}, "text_furniture_removed": 151, "items": [{"page": 1, "kind": "text", "label": "text", "bbox": {"l": 35.939867655436196, "t": 788.8705851236979, "r": 172.9341837565104, "b": 755.3433736165365, "coord_origin": "BOTTOMLEFT"}, "text": "AQA", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 724.7869160970052, "r": 234.66617838541666, "b": 712.0550638834635, "coord_origin": "BOTTOMLEFT"}, "text": "Please write clearly in block capitals.", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.235321044921875, "t": 689.1377258300781, "r": 131.0748087565104, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Centre number", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 689.1377258300781, "r": 403.7949625651042, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Candidatenumber", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 654.76171875, "r": 101.9000956217448, "b": 641.60546875, "coord_origin": "BOTTOMLEFT"}, "text": "Surname", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 55.389678955078125, "t": 629.2980143229166, "r": 120.50426228841145, "b": 615.7173665364584, "coord_origin": "BOTTOMLEFT"}, "text": "Forename(s)", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 56.65814208984375, "t": 602.13671875, "r": 155.59848022460938, "b": 590.6780395507812, "coord_origin": "BOTTOMLEFT"}, "text": "Candidate signature", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 165.74620564778647, "t": 588.98046875, "r": 309.92848714192706, "b": 576.6730143229167, "coord_origin": "BOTTOMLEFT"}, "text": "I declare this is my own work.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 40.59090677897135, "t": 555.8776448567708, "r": 146.7192179361979, "b": 496.46230061848956, "coord_origin": "BOTTOMLEFT"}, "text": "A-level PHYSICS", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 39.7452646891276, "t": 483.73044840494794, "r": 96.82623291015625, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Paper 1", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 396.30507405598956, "r": 92.59801228841145, "b": 383.57322184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Materials", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 38.47679901123047, "t": 382.30002848307294, "r": 186.04166666666666, "b": 369.14377848307294, "coord_origin": "BOTTOMLEFT"}, "text": "For this paper you must have:", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 367.87058512369794, "r": 145.87357584635416, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "text": "a pencil and a ruler", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 355.56313069661456, "r": 153.90719604492188, "b": 343.68007405598956, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a scientific calculator", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 341.98248291015625, "r": 195.76656087239584, "b": 329.6750284830729, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a Data and Formulae Booklet", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 327.9774373372396, "r": 111.20217895507812, "b": 316.0943806966146, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7a protractor.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.899620056152344, "t": 305.90887451171875, "r": 108.66524251302083, "b": 294.4502156575521, "coord_origin": "BOTTOMLEFT"}, "text": "Instructions", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 292.3282267252604, "r": 230.86079915364584, "b": 279.1719767252604, "coord_origin": "BOTTOMLEFT"}, "text": "Use black ink or black ball-point pen.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.053975423177086, "t": 279.59637451171875, "r": 239.31722005208334, "b": 264.7425740559896, "coord_origin": "BOTTOMLEFT"}, "text": "Fill in the boxes at the top of this pag", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.7452646891276, "t": 264.31817626953125, "r": 157.71259562174478, "b": 252.85947672526038, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7Answer all questions.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 251.58632405598962, "r": 386.0364583333333, "b": 225.27382405598962, "coord_origin": "BOTTOMLEFT"}, "text": "You must answer the questions in the spa", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 225.27382405598962, "r": 424.5132649739583, "b": 198.96132405598962, "coord_origin": "BOTTOMLEFT"}, "text": "If you need extra space for your answer(", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 402.1036783854167, "t": 427.28590901692706, "r": 545.0174967447916, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "text": "Time allowed: 2 hours", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 198.53692626953125, "r": 402.9493408203125, "b": 173.92197672526038, "coord_origin": "BOTTOMLEFT"}, "text": "Do all rough work in this book. Cross th", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.32244110107422, "t": 171.80002848307288, "r": 161.51798502604166, "b": 159.06817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Show all your working.", "furniture": false}, {"page": 1, "kind": "text", "label": "section_header", "bbox": {"l": 38.053975423177086, "t": 151.00461832682288, "r": 106.12831624348958, "b": 136.99965413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Information", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 38.47679901123047, "t": 135.72646077473962, "r": 282.02223714192706, "b": 123.41900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "The marks for questions are shown in bra", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.32244110107422, "t": 122.14581298828125, "r": 245.23673502604166, "b": 109.83835856119788, "coord_origin": "BOTTOMLEFT"}, "text": "The maximum mark for this paper is 85.", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 41.859375, "t": 108.56516520182288, "r": 369.54638671875, "b": 96.25771077473962, "coord_origin": "BOTTOMLEFT"}, "text": "You are expected touse a scientificcalcu", "furniture": false}, {"page": 1, "kind": "text", "label": "list_item", "bbox": {"l": 39.32244110107422, "t": 94.98451741536462, "r": 337.41192626953125, "b": 83.95025634765625, "coord_origin": "BOTTOMLEFT"}, "text": "\u00b7ADataandFormulaeBookletisprovidedasaloo", "furniture": false}, {"page": 1, "kind": "text", "label": "text", "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 211.83380126953125, "b": 16.04701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "JUN227408101", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 316.2708333333333, "t": 22.83730061848962, "r": 367.8551025390625, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/E12", "furniture": false}, {"page": 1, "kind": "text", "label": "page_footer", "bbox": {"l": 480.7485758463542, "t": 34.72035725911462, "r": 545.8631591796875, "b": 14.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "7408/1", "furniture": true}, {"page": 2, "kind": "text", "label": "page_header", "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.4384358723958, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 2, "kind": "text", "label": "section_header", "bbox": {"l": 263.41807047526044, "t": 776.5631256103516, "r": 316.2708333333333, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Section A", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 201.68607584635416, "t": 749.8262329101562, "r": 376.734375, "b": 737.5187683105469, "coord_origin": "BOTTOMLEFT"}, "text": "Answer all questions in this section.", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 709.9330851236979, "r": 346.7139892578125, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "text": "01 Twostableisotopesofheliumare He andH ", "furniture": false}, {"page": 2, "kind": "text", "label": "list_item", "bbox": {"l": 49.04734802246094, "t": 673.0107116699219, "r": 524.7220458984375, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "text": "01.1 An atom of fHe is produced in a roc", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 629.2980143229166, "r": 178.85369873046875, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "thorium (Th).", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 287.94175211588544, "t": 590.6780395507812, "r": 301.89487711588544, "b": 580.0681762695312, "coord_origin": "BOTTOMLEFT"}, "text": "92", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 581.3413492838542, "r": 536.1382242838541, "b": 566.9119262695312, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 2, "kind": "text", "label": "formula", "bbox": {"l": 114.16192626953125, "t": 558.4240112304688, "r": 138.26277669270834, "b": 532.1115112304688, "coord_origin": "BOTTOMLEFT"}, "text": "2381 92", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 495.61354573567706, "r": 432.9696858723958, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "01.2 A 3He nucleus can be produced by th", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 462.08632405598956, "r": 462.9900309244792, "b": 447.65688069661456, "coord_origin": "BOTTOMLEFT"}, "text": "State and explain which exchange particl", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 449.77886962890625, "r": 536.1382242838541, "b": 434.50063069661456, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 2, "kind": "text", "label": "text", "bbox": {"l": 544.171875, "t": 788.8705851236979, "r": 583.0714925130209, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 2, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 3, "kind": "text", "label": "page_header", "bbox": {"l": 284.98199462890625, "t": 811.7879257202148, "r": 293.015625, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 144.18229166666666, "t": 664.5228068033854, "r": 154.75283813476562, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 204.2230021158854, "t": 664.9472045898438, "r": 214.7935587565104, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 261.30397542317706, "t": 665.7959798177084, "r": 287.0961100260417, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "CD", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 381.3854166666667, "t": 664.9472045898438, "r": 391.9559733072917, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "E", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 473.1377766927083, "t": 664.0984090169271, "r": 481.5941975911458, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "text": "F", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 640.7566731770834, "r": 127.69223022460938, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "text": "helium", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 594.4975992838541, "r": 131.49762980143228, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "text": "sodium", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 550.784891764323, "r": 141.64535522460938, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "text": "hydrogen", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 147.56486002604166, "t": 515.1357014973958, "r": 168.70596313476562, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "400", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 515.1357014973958, "r": 228.7466837565104, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "450", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 268.91477457682294, "t": 515.1357014973958, "r": 289.63303629557294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "500", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 328.53265380859375, "t": 515.1357014973958, "r": 349.6737467447917, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "550", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 388.9962158203125, "t": 515.1357014973958, "r": 410.5601399739583, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "600", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 449.0369059244792, "t": 515.1357014973958, "r": 470.600830078125, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "650", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 406.3319091796875, "t": 498.15989176432294, "r": 487.9365234375, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "text": "wavelength / nm", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 773.5923614501953, "r": 529.3730875651041, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "Helium was discovered by analysing the l", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 746.4310709635416, "r": 519.2253824869791, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1 shows the positions of the brig", "furniture": false}, {"page": 3, "kind": "text", "label": "section_header", "bbox": {"l": 267.64630126953125, "t": 692.5328877766927, "r": 314.15671793619794, "b": 676.4058736165365, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 1", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 144.18229166666666, "t": 664.5228068033854, "r": 154.75283813476562, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 204.2230021158854, "t": 664.9472045898438, "r": 214.7935587565104, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 261.30397542317706, "t": 665.7959798177084, "r": 287.0961100260417, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "CD", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 381.3854166666667, "t": 664.9472045898438, "r": 391.9559733072917, "b": 651.7909545898438, "coord_origin": "BOTTOMLEFT"}, "text": "E", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 473.1377766927083, "t": 664.0984090169271, "r": 481.5941975911458, "b": 653.488525390625, "coord_origin": "BOTTOMLEFT"}, "text": "F", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 640.7566731770834, "r": 127.69223022460938, "b": 626.3272298177084, "coord_origin": "BOTTOMLEFT"}, "text": "helium", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 594.4975992838541, "r": 131.49762980143228, "b": 581.3413492838542, "coord_origin": "BOTTOMLEFT"}, "text": "sodium", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 550.784891764323, "r": 141.64535522460938, "b": 533.3847045898438, "coord_origin": "BOTTOMLEFT"}, "text": "hydrogen", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 147.56486002604166, "t": 515.1357014973958, "r": 168.70596313476562, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "400", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 515.1357014973958, "r": 228.7466837565104, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "450", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 268.91477457682294, "t": 515.1357014973958, "r": 289.63303629557294, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "500", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 328.53265380859375, "t": 515.1357014973958, "r": 349.6737467447917, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "550", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 388.9962158203125, "t": 515.1357014973958, "r": 410.5601399739583, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "600", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 449.0369059244792, "t": 515.1357014973958, "r": 470.600830078125, "b": 501.9794514973958, "coord_origin": "BOTTOMLEFT"}, "text": "650", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 406.3319091796875, "t": 498.15989176432294, "r": 487.9365234375, "b": 485.42803955078125, "coord_origin": "BOTTOMLEFT"}, "text": "wavelength / nm", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 471.42299397786456, "r": 102.32291666666667, "b": 455.29600016276044, "coord_origin": "BOTTOMLEFT"}, "text": "01.3", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 469.30104573567706, "r": 519.648193359375, "b": 428.55910237630206, "coord_origin": "BOTTOMLEFT"}, "text": "Before helium was identified, some scien", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 414.97845458984375, "r": 520.4938151041666, "b": 389.51475016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Discuss, with reference to the lines A t", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 389.51475016276044, "r": 535.7154134114584, "b": 375.08530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 3, "kind": "text", "label": "section_header", "bbox": {"l": 187.73295084635416, "t": 117.90183512369788, "r": 390.6875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Question1continuesonthenextpage", "furniture": false}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.63775634765625, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 3, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 3, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 103.16855875651042, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "01.4", "furniture": true}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 772.7435709635416, "r": 535.2926025390625, "b": 744.7334899902344, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate, in eV, the change in energy l", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 746.0066731770834, "r": 536.1382242838541, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 241.85416666666666, "t": 518.5308634440105, "r": 529.3730875651041, "b": 505.79901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "change in energylevel = eV", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 478.63771565755206, "r": 101.9000956217448, "b": 462.51072184244794, "coord_origin": "BOTTOMLEFT"}, "text": "01.5", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 475.24257405598956, "r": 516.6884358723959, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "Explain, with reference to the processes", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 448.93007405598956, "r": 535.2926025390625, "b": 435.77382405598956, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 118.75063069661462, "r": 568.272705078125, "b": 105.16998291015625, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": false}, {"page": 4, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "4", "furniture": true}, {"page": 4, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 5, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 79.91335042317708, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 506.9635416666667, "b": 743.0359090169271, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon-14 decays into nitrogen-14 with t", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 729.0308736165365, "r": 103.5913798014323, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "text": "02.1", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 726.4844970703125, "r": 350.9422200520833, "b": 711.2062683105469, "coord_origin": "BOTTOMLEFT"}, "text": "State the change of quark character in \u03b2", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 712.9038492838541, "r": 535.7154134114584, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 622.9320882161459, "r": 105.2826639811198, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "text": "02.2", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 619.1125284830729, "r": 517.5340576171875, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2 shows the distribution of kinet", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 268.06911214192706, "t": 574.9754231770833, "r": 314.15671793619794, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 135.30302937825522, "t": 499.43308512369794, "r": 176.73958333333334, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 135.7258504231771, "t": 487.97442626953125, "r": 162.78645833333334, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "text": "of \u03b2-", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 135.7258504231771, "t": 475.66697184244794, "r": 180.12215169270834, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "text": "particles", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 280.33095296223956, "t": 410.31011962890625, "r": 349.6737467447917, "b": 395.88067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "kinetic energy", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 377.20729573567706, "r": 427.4729817708333, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Explain howFigure 2 supports the existen", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 364.47544352213544, "r": 536.1382242838541, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 154.39980061848962, "r": 391.1103108723958, "b": 139.54595947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Question2continuesonthenextpage", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 79.91335042317708, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "02", "furniture": true}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 506.9635416666667, "b": 743.0359090169271, "coord_origin": "BOTTOMLEFT"}, "text": "Carbon-14 decays into nitrogen-14 with t", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 729.0308736165365, "r": 103.5913798014323, "b": 713.3282470703125, "coord_origin": "BOTTOMLEFT"}, "text": "02.1", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 726.4844970703125, "r": 350.9422200520833, "b": 711.2062683105469, "coord_origin": "BOTTOMLEFT"}, "text": "State the change of quark character in \u03b2", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 712.9038492838541, "r": 535.7154134114584, "b": 697.2012329101562, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 622.9320882161459, "r": 105.2826639811198, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "text": "02.2", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 619.1125284830729, "r": 517.5340576171875, "b": 591.9512329101562, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2 shows the distribution of kinet", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 268.06911214192706, "t": 574.9754231770833, "r": 314.15671793619794, "b": 560.121602376302, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 2", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 135.30302937825522, "t": 499.43308512369794, "r": 176.73958333333334, "b": 487.12563069661456, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 135.7258504231771, "t": 487.97442626953125, "r": 162.78645833333334, "b": 473.96938069661456, "coord_origin": "BOTTOMLEFT"}, "text": "of \u03b2-", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 135.7258504231771, "t": 475.66697184244794, "r": 180.12215169270834, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "text": "particles", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 280.33095296223956, "t": 410.31011962890625, "r": 349.6737467447917, "b": 395.88067626953125, "coord_origin": "BOTTOMLEFT"}, "text": "kinetic energy", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 115.8532206217448, "t": 377.20729573567706, "r": 427.4729817708333, "b": 364.47544352213544, "coord_origin": "BOTTOMLEFT"}, "text": "Explain howFigure 2 supports the existen", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 364.47544352213544, "r": 536.1382242838541, "b": 351.31919352213544, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 154.39980061848962, "r": 391.1103108723958, "b": 139.54595947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Question2continuesonthenextpage", "furniture": false}, {"page": 5, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 5, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 6, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 702.2939758300781, "r": 102.32291666666667, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "text": "02.3", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 623.3564656575521, "r": 104.01420084635417, "b": 605.9562784830729, "coord_origin": "BOTTOMLEFT"}, "text": "02.4", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 469.3323567708333, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "The existence of the antineutrino was co", "furniture": false}, {"page": 6, "kind": "text", "label": "formula", "bbox": {"l": 246.0823771158854, "t": 732.426035563151, "r": 342.9086100260417, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 699.7475992838541, "r": 202.10888671875, "b": 687.0157470703125, "coord_origin": "BOTTOMLEFT"}, "text": "Identify particle X.", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 687.0157470703125, "r": 535.7154134114584, "b": 672.5863138834635, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 620.3857014973959, "r": 529.3730875651041, "b": 594.4975992838541, "coord_origin": "BOTTOMLEFT"}, "text": "The positron released in this interactio", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 568.6094970703125, "r": 324.304443359375, "b": 556.7264404296875, "coord_origin": "BOTTOMLEFT"}, "text": "antineutrino-proton interaction experime", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 595.3463948567709, "r": 492.5875651041667, "b": 568.1850992838542, "coord_origin": "BOTTOMLEFT"}, "text": "Particle X can be absorbed by a nucleus.", "furniture": false}, {"page": 6, "kind": "text", "label": "section_header", "bbox": {"l": 270.1832275390625, "t": 543.1457926432292, "r": 310.77414957682294, "b": 531.262715657552, "coord_origin": "BOTTOMLEFT"}, "text": "Table 1", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 388.66595458984375, "r": 514.1514892578125, "b": 363.20225016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Deduce which of the three gamma photons ", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 362.35345458984375, "r": 535.2926025390625, "b": 349.19720458984375, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 6, "kind": "text", "label": "text", "bbox": {"l": 556.8565266927084, "t": 105.59438069661462, "r": 563.1988525390625, "b": 96.68210856119788, "coord_origin": "BOTTOMLEFT"}, "text": "7", "furniture": false}, {"page": 6, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 774.441151936849, "r": 370.8148600260417, "b": 762.1336924235026, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for the next question", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 447.23248291015625, "r": 398.2982991536458, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 7, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 7, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 811.3635304768881, "r": 292.59279378255206, "b": 801.1780471801758, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 8, "kind": "text", "label": "page_header", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 78.64488220214844, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "03", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.65688069661462, "r": 80.75899251302083, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "08", "furniture": true}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 498.929931640625, "b": 758.7385304768881, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3 shows a garden gate with a pull", "furniture": false}, {"page": 8, "kind": "text", "label": "section_header", "bbox": {"l": 267.64630126953125, "t": 747.2798563639323, "r": 314.15671793619794, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 3", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 305.7002766927083, "t": 598.3171590169271, "r": 316.2708333333333, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "text": "R", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 508.769775390625, "r": 497.6614583333333, "b": 470.99859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "The pulley system raises weight A when t", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 458.69114176432294, "r": 388.9962158203125, "b": 445.11049397786456, "coord_origin": "BOTTOMLEFT"}, "text": "Weight A is a solid cylinder with the fo", "furniture": false}, {"page": 8, "kind": "text", "label": "formula", "bbox": {"l": 139.95407104492188, "t": 431.95424397786456, "r": 268.491943359375, "b": 382.72442626953125, "coord_origin": "BOTTOMLEFT"}, "text": "diameter = 4.8 \u00d7 10-2 m length = 0.23 m ", "furniture": false}, {"page": 8, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 369.14377848307294, "r": 375.0430908203125, "b": 356.41192626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2 gives the density of three avail", "furniture": false}, {"page": 8, "kind": "text", "label": "caption", "bbox": {"l": 270.60605875651044, "t": 340.28489176432294, "r": 311.19696044921875, "b": 328.4018351236979, "coord_origin": "BOTTOMLEFT"}, "text": "Table 2", "furniture": false}, {"page": 8, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 9, "kind": "text", "label": "page_header", "bbox": {"l": 285.82763671875, "t": 810.5147399902344, "r": 292.59279378255206, "b": 801.6024424235026, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 105.2826639811198, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "03.1", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 380.5397542317708, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "Deduce which one of the three materials ", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 760.01171875, "r": 536.1382242838541, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 418.37359619140625, "r": 391.5331217447917, "b": 403.09539794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Question 3 continues on the next page", "furniture": false}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 9, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "9", "furniture": true}, {"page": 9, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 10, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "10", "furniture": true}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 315.0023600260417, "t": 662.4008382161459, "r": 320.921875, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 245.6595662434896, "t": 647.1225992838541, "r": 254.538818359375, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 292.59279378255206, "t": 641.60546875, "r": 300.62640380859375, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "text": "M", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 307.81439208984375, "t": 644.1518351236979, "r": 328.10984293619794, "b": 635.6639404296875, "coord_origin": "BOTTOMLEFT"}, "text": "55\u00b0", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 228.7466837565104, "t": 598.3171590169271, "r": 253.69317626953125, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "text": "rope", "furniture": false}, {"page": 10, "kind": "text", "label": "section_header", "bbox": {"l": 115.43039957682292, "t": 772.3191782633463, "r": 427.8958333333333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4 shows the pulley arrangement wh", "furniture": false}, {"page": 10, "kind": "text", "label": "caption", "bbox": {"l": 267.64630126953125, "t": 748.128651936849, "r": 314.57952880859375, "b": 732.0016377766927, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 4", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 315.0023600260417, "t": 662.4008382161459, "r": 320.921875, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 245.6595662434896, "t": 647.1225992838541, "r": 254.538818359375, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 292.59279378255206, "t": 641.60546875, "r": 300.62640380859375, "b": 633.5419514973959, "coord_origin": "BOTTOMLEFT"}, "text": "M", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 307.81439208984375, "t": 644.1518351236979, "r": 328.10984293619794, "b": 635.6639404296875, "coord_origin": "BOTTOMLEFT"}, "text": "55\u00b0", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 228.7466837565104, "t": 598.3171590169271, "r": 253.69317626953125, "b": 586.0097045898438, "coord_origin": "BOTTOMLEFT"}, "text": "rope", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 563.0923665364583, "r": 526.413330078125, "b": 536.35546875, "coord_origin": "BOTTOMLEFT"}, "text": "Pulleys P and M are frictionless so that", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 536.35546875, "r": 430.8555908203125, "b": 522.7748209635417, "coord_origin": "BOTTOMLEFT"}, "text": "A weighs 35 N and the weight of moveable", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 510.8917643229167, "r": 102.32291666666667, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "text": "03.2", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 508.3453776041667, "r": 459.6074625651042, "b": 494.76475016276044, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the tension in the horizontal ", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 494.34035237630206, "r": 536.1382242838541, "b": 481.18410237630206, "coord_origin": "BOTTOMLEFT"}, "text": "[2marks]", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 313.73388671875, "t": 304.6357218424479, "r": 362.3583984375, "b": 292.3282267252604, "coord_origin": "BOTTOMLEFT"}, "text": "tension =", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 263.4693806966146, "r": 101.9000956217448, "b": 249.03993733723962, "coord_origin": "BOTTOMLEFT"}, "text": "03.3", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 261.77178955078125, "r": 359.8214925130208, "b": 248.19114176432288, "coord_origin": "BOTTOMLEFT"}, "text": "Pulley M is pulled to the left as the ga", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 115.43039957682292, "t": 234.61049397786462, "r": 424.5132649739583, "b": 221.87864176432288, "coord_origin": "BOTTOMLEFT"}, "text": "Explain why this increases the tension i", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 483.7083333333333, "t": 222.30303955078125, "r": 535.7154134114584, "b": 207.87359619140625, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 10, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 10, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 11, "kind": "text", "label": "page_header", "bbox": {"l": 282.86789957682294, "t": 813.0611114501953, "r": 294.7069091796875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": true}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 775.7143351236979, "r": 390.6875, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "Question 3 continues on the next page", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 446.38368733723956, "r": 398.2982991536458, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 11, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 539.0979817708334, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 11, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 12, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "12", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "03.4", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 23.68609619140625, "r": 78.22206115722656, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 772.7435709635416, "r": 501.0440266927083, "b": 748.128651936849, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5 shows a plan view with the gate", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 747.2798563639323, "r": 417.3252766927083, "b": 734.1236063639323, "coord_origin": "BOTTOMLEFT"}, "text": "The angle between the door and the horiz", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 720.1185709635416, "r": 403.3721516927083, "b": 707.8111063639323, "coord_origin": "BOTTOMLEFT"}, "text": "The horizontal distance between the hing", "furniture": false}, {"page": 12, "kind": "text", "label": "caption", "bbox": {"l": 268.06911214192706, "t": 693.3816731770834, "r": 314.15671793619794, "b": 678.527842203776, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 5", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 367.4322916666667, "t": 643.7274373372396, "r": 419.8622233072917, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "text": "Plan view", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 278.21685791015625, "t": 621.6588948567709, "r": 314.57952880859375, "b": 607.6538492838541, "coord_origin": "BOTTOMLEFT"}, "text": "0.95 m", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 358.1302083333333, "t": 568.6094970703125, "r": 387.304931640625, "b": 553.7556762695312, "coord_origin": "BOTTOMLEFT"}, "text": "hinge", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 342.9086100260417, "t": 499.85748291015625, "r": 352.210693359375, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "text": "R", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 470.57419840494794, "r": 356.8617350260417, "b": 458.26674397786456, "coord_origin": "BOTTOMLEFT"}, "text": "The tension in the horizontal cable C is", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 445.11049397786456, "r": 372.928955078125, "b": 431.52984619140625, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the moment of the tension abou", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 305.27744547526044, "t": 266.44012451171875, "r": 357.7073974609375, "b": 255.40586344401038, "coord_origin": "BOTTOMLEFT"}, "text": "moment=", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 432.37864176432294, "r": 536.1382242838541, "b": 417.94919840494794, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 12, "kind": "text", "label": "text", "bbox": {"l": 504.0037841796875, "t": 267.71331787109375, "r": 529.3730875651041, "b": 254.98146565755212, "coord_origin": "BOTTOMLEFT"}, "text": "Nm Donotwrite outsidethe box", "furniture": false}, {"page": 12, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 13, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "03.5", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 759.1629282633463, "r": 414.3655192057292, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "text": "does not supply a sufficiently large mom", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 734.1236063639323, "r": 517.1112467447916, "b": 709.0842997233073, "coord_origin": "BOTTOMLEFT"}, "text": "Discuss two independent changes to the d", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 709.5086873372396, "r": 536.1382242838541, "b": 695.0792541503906, "coord_origin": "BOTTOMLEFT"}, "text": "[4 marks]", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 207.6055908203125, "t": 372.11452229817706, "r": 370.8148600260417, "b": 358.53387451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Turnoverfor thenextquestion", "furniture": false}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 13, "kind": "text", "label": "text", "bbox": {"l": 552.6282958984375, "t": 455.29600016276044, "r": 567.8498942057291, "b": 442.56414794921875, "coord_origin": "BOTTOMLEFT"}, "text": "13", "furniture": false}, {"page": 13, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 14, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "14", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 277.7940266927083, "t": 643.3030395507812, "r": 304.85463460286456, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "text": "12Q", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 276.5255533854167, "t": 582.6145426432292, "r": 306.12310791015625, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "text": "6.2V", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 274.4114583333333, "t": 569.0338948567708, "r": 306.54591878255206, "b": 557.575215657552, "coord_origin": "BOTTOMLEFT"}, "text": "4.5W", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.0167541503906, "r": 78.22206115722656, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "04", "furniture": true}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 771.8947804768881, "r": 327.68701171875, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "A student assembles the circuit in Figur", "furniture": false}, {"page": 14, "kind": "text", "label": "section_header", "bbox": {"l": 267.64630126953125, "t": 747.7042541503906, "r": 314.57952880859375, "b": 731.5772399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 6", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 277.7940266927083, "t": 643.3030395507812, "r": 304.85463460286456, "b": 630.9955851236979, "coord_origin": "BOTTOMLEFT"}, "text": "12Q", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 276.5255533854167, "t": 582.6145426432292, "r": 306.12310791015625, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "text": "6.2V", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 274.4114583333333, "t": 569.0338948567708, "r": 306.54591878255206, "b": 557.575215657552, "coord_origin": "BOTTOMLEFT"}, "text": "4.5W", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 507.9209798177083, "r": 344.1770833333333, "b": 495.61354573567706, "coord_origin": "BOTTOMLEFT"}, "text": "The battery has an internal resistance o", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 50.73863728841146, "t": 479.91090901692706, "r": 87.9469706217448, "b": 466.33026123046875, "coord_origin": "BOTTOMLEFT"}, "text": "04.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 478.63771565755206, "r": 521.7622884114584, "b": 451.05202229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Show that the resistance of the 6.2 V, 4", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 450.62762451171875, "r": 535.7154134114584, "b": 436.19822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 387.39276123046875, "r": 104.43702189127605, "b": 372.96331787109375, "coord_origin": "BOTTOMLEFT"}, "text": "04.2", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 384.42197672526044, "r": 326.41855875651044, "b": 370.84136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "The terminal pd across the battery is 6.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 358.95827229817706, "r": 271.4517008463542, "b": 344.52886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the emf of the battery.", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 327.2642008463542, "t": 102.62359619140625, "r": 357.7073974609375, "b": 90.31614176432288, "coord_origin": "BOTTOMLEFT"}, "text": "emf =", "furniture": false}, {"page": 14, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 14, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 15, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 297.24383544921875, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 15, "kind": "text", "label": "caption", "bbox": {"l": 267.64630126953125, "t": 737.0943806966146, "r": 314.15671793619794, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 775.2899424235026, "r": 478.2116292317708, "b": 750.2506306966146, "coord_origin": "BOTTOMLEFT"}, "text": "The student makes a variable resistor to", "furniture": false}, {"page": 15, "kind": "text", "label": "caption", "bbox": {"l": 267.64630126953125, "t": 737.0943806966146, "r": 314.15671793619794, "b": 722.6649373372396, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 7", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 487.55002848307294, "r": 100.63162231445312, "b": 474.39377848307294, "coord_origin": "BOTTOMLEFT"}, "text": "04.3", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 485.42803955078125, "r": 525.5677083333334, "b": 460.38873291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Sheusesaresistancewirewithadiameterof0.1", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 447.23248291015625, "r": 283.7135416666667, "b": 434.07623291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Calculatetheresistivityof thewire.", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 433.65183512369794, "r": 535.2926025390625, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 299.3579508463542, "t": 122.99460856119788, "r": 529.3730875651041, "b": 107.71636962890625, "coord_origin": "BOTTOMLEFT"}, "text": "resistivity = \u03a9m", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 188.15576171875, "t": 94.56011962890625, "r": 390.2646484375, "b": 80.55507405598962, "coord_origin": "BOTTOMLEFT"}, "text": "Question4continuesonthenextpage", "furniture": false}, {"page": 15, "kind": "text", "label": "text", "bbox": {"l": 474.8290608723958, "t": 69.52081298828125, "r": 538.2523600260416, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 15, "kind": "text", "label": "page_footer", "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 16, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 799.9048614501953, "coord_origin": "BOTTOMLEFT"}, "text": "16", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 103.5913798014323, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "04].4", "furniture": true}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 771.4703877766927, "r": 528.5274658203125, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8 shows the 5.0 m length of wire ", "furniture": false}, {"page": 16, "kind": "text", "label": "section_header", "bbox": {"l": 267.64630126953125, "t": 734.5480041503906, "r": 314.57952880859375, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 8", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 292.59279378255206, "t": 706.5379231770834, "r": 367.0094401041667, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "text": "copper contact", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 178.43086751302084, "t": 620.3857014973959, "r": 205.4914754231771, "b": 608.0782470703125, "coord_origin": "BOTTOMLEFT"}, "text": "plugs", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 553.331278483073, "r": 530.6415608723959, "b": 527.4431762695312, "coord_origin": "BOTTOMLEFT"}, "text": "Two plugs connect the variable resistor ", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 527.8675537109375, "r": 510.7689208984375, "b": 501.5550537109375, "coord_origin": "BOTTOMLEFT"}, "text": "When the contact is placed on the tube a", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 488.39882405598956, "r": 496.3929850260417, "b": 463.35947672526044, "coord_origin": "BOTTOMLEFT"}, "text": "Explain, without calculation, what happe", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 462.51072184244794, "r": 535.7154134114584, "b": 449.35447184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 16, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 16, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 17, "kind": "text", "label": "page_header", "bbox": {"l": 283.7135416666667, "t": 811.3635304768881, "r": 295.55255126953125, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 48.62452697753906, "t": 775.2899424235026, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "04.5", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 486.2452392578125, "b": 746.85546875, "coord_origin": "BOTTOMLEFT"}, "text": "The student now makes a different circui", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 734.5480041503906, "r": 520.0710042317709, "b": 708.659901936849, "coord_origin": "BOTTOMLEFT"}, "text": "The contact is returned to its original ", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 697.6256306966146, "r": 496.8157958984375, "b": 671.7375183105469, "coord_origin": "BOTTOMLEFT"}, "text": "Explain, without calculation, what happe", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 671.7375183105469, "r": 535.7154134114584, "b": 657.3080851236979, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 207.1827596028646, "t": 451.47642008463544, "r": 370.3920491536458, "b": 438.32017008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over for the next question", "furniture": false}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.94521077473962, "r": 538.6751708984375, "b": 57.21335856119788, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 17, "kind": "text", "label": "text", "bbox": {"l": 553.0511067708334, "t": 519.8040568033855, "r": 567.4270833333334, "b": 507.49660237630206, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 17, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 18, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 520.4938151041666, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "A teacher sets up a demonstration to sho", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 488.359375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "She places a block on a turntable at a p", "furniture": false}, {"page": 18, "kind": "text", "label": "caption", "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 313.73388671875, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 282.02223714192706, "t": 683.1961873372396, "r": 317.53928629557294, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "text": "0.25 m", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 353.4791666666667, "t": 661.1276448567709, "r": 384.3451741536458, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "text": "block", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 407.6003824869792, "t": 640.332275390625, "r": 453.6879475911458, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "text": "turntable", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 584.3121134440105, "r": 527.6818033854166, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "text": "The turntable rotates with an angular sp", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 558.4240112304688, "r": 100.63162231445312, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "text": "05.1", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 556.3020426432292, "r": 447.7684733072917, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the time taken for the turntab", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 543.9945678710938, "r": 536.1382242838541, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 340.79449462890625, "t": 378.90484619140625, "r": 373.351806640625, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "time =", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "05", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 773.16796875, "r": 520.4938151041666, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "A teacher sets up a demonstration to sho", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 746.4310709635416, "r": 488.359375, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "She places a block on a turntable at a p", "furniture": false}, {"page": 18, "kind": "text", "label": "caption", "bbox": {"l": 268.06911214192706, "t": 709.0842997233073, "r": 313.73388671875, "b": 694.6548563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 9", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 282.02223714192706, "t": 683.1961873372396, "r": 317.53928629557294, "b": 669.1911417643229, "coord_origin": "BOTTOMLEFT"}, "text": "0.25 m", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 353.4791666666667, "t": 661.1276448567709, "r": 384.3451741536458, "b": 649.2445882161459, "coord_origin": "BOTTOMLEFT"}, "text": "block", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 407.6003824869792, "t": 640.332275390625, "r": 453.6879475911458, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "text": "turntable", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 584.3121134440105, "r": 527.6818033854166, "b": 570.3070678710938, "coord_origin": "BOTTOMLEFT"}, "text": "The turntable rotates with an angular sp", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 558.4240112304688, "r": 100.63162231445312, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "text": "05.1", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 556.3020426432292, "r": 447.7684733072917, "b": 543.1457926432292, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the time taken for the turntab", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 543.9945678710938, "r": 536.1382242838541, "b": 528.7163492838542, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 340.79449462890625, "t": 378.90484619140625, "r": 373.351806640625, "b": 365.74859619140625, "coord_origin": "BOTTOMLEFT"}, "text": "time =", "furniture": false}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 73.14819844563802, "t": 24.53489176432288, "r": 78.64488220214844, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "8", "furniture": true}, {"page": 18, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 18, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 19, "kind": "text", "label": "page_header", "bbox": {"l": 282.445068359375, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "19", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 384.7679850260417, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10 shows a plan view of the turnt", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Draw an arrow on Figure 10 to show the d", "furniture": false}, {"page": 19, "kind": "text", "label": "caption", "bbox": {"l": 265.109375, "t": 692.5328877766927, "r": 315.84800211588544, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 354.3247884114583, "t": 617.8393351236979, "r": 385.1907958984375, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "text": "block", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 507.49660237630206, "r": 103.16855875651042, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "text": "05.3", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 504.52581787109375, "r": 274.8342692057292, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "text": "The mass of the block is 0.12 kg.", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 476.94012451171875, "r": 401.6808675130208, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the magnitude of the resultant", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 464.63267008463544, "r": 536.1382242838541, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 299.1185506184896, "r": 365.3181559244792, "b": 287.6598917643229, "coord_origin": "BOTTOMLEFT"}, "text": "magnitudeofforce=", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 517.5340576171875, "t": 297.84539794921875, "r": 525.9905192057291, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "text": "N", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 230.36655680338538, "r": 390.6875, "b": 216.36151123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Question5 continueson thenextpage", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 775.2899424235026, "r": 102.74573771158855, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "05.2", "furniture": true}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 773.5923614501953, "r": 384.7679850260417, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10 shows a plan view of the turnt", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 733.69921875, "r": 535.2926025390625, "b": 706.9623209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Draw an arrow on Figure 10 to show the d", "furniture": false}, {"page": 19, "kind": "text", "label": "caption", "bbox": {"l": 265.109375, "t": 692.5328877766927, "r": 315.84800211588544, "b": 677.6790568033854, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 10", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 354.3247884114583, "t": 617.8393351236979, "r": 385.1907958984375, "b": 605.5318806966146, "coord_origin": "BOTTOMLEFT"}, "text": "block", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 47.77887980143229, "t": 507.49660237630206, "r": 103.16855875651042, "b": 491.36956787109375, "coord_origin": "BOTTOMLEFT"}, "text": "05.3", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 504.52581787109375, "r": 274.8342692057292, "b": 489.67197672526044, "coord_origin": "BOTTOMLEFT"}, "text": "The mass of the block is 0.12 kg.", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 476.94012451171875, "r": 401.6808675130208, "b": 464.63267008463544, "coord_origin": "BOTTOMLEFT"}, "text": "Calculate the magnitude of the resultant", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 464.63267008463544, "r": 536.1382242838541, "b": 450.20322672526044, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 266.8006591796875, "t": 299.1185506184896, "r": 365.3181559244792, "b": 287.6598917643229, "coord_origin": "BOTTOMLEFT"}, "text": "magnitudeofforce=", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 517.5340576171875, "t": 297.84539794921875, "r": 525.9905192057291, "b": 290.2062784830729, "coord_origin": "BOTTOMLEFT"}, "text": "N", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 187.73295084635416, "t": 230.36655680338538, "r": 390.6875, "b": 216.36151123046875, "coord_origin": "BOTTOMLEFT"}, "text": "Question5 continueson thenextpage", "furniture": false}, {"page": 19, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 19, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 20, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 799.4804662068685, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 774.8655446370443, "r": 102.32291666666667, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "05.4", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 113.73910522460938, "t": 773.16796875, "r": 501.0440266927083, "b": 746.4310709635416, "coord_origin": "BOTTOMLEFT"}, "text": "Describe, with reference to one of Newto", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.976806640625, "t": 746.0066731770834, "r": 535.7154134114584, "b": 732.8504231770834, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 49.04734802246094, "t": 574.1266276041667, "r": 515.8427734375, "b": 546.5409545898438, "coord_origin": "BOTTOMLEFT"}, "text": "05.5 The teacher adjusts the angular spe", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 545.2677612304688, "r": 523.03076171875, "b": 520.2284545898438, "coord_origin": "BOTTOMLEFT"}, "text": "She sets up a simple pendulum above the ", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 506.22340901692706, "r": 331.49241129557294, "b": 493.91595458984375, "coord_origin": "BOTTOMLEFT"}, "text": "Calculatethelengthof thesimplependulum.", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 493.91595458984375, "r": 536.5610758463541, "b": 479.48651123046875, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 326.41855875651044, "t": 330.52382405598956, "r": 527.6818033854166, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "text": "length = m", "furniture": false}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 58.77225240071615, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "20", "furniture": true}, {"page": 20, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 20, "kind": "text", "label": "page_footer", "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.0979817708334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 295.97536214192706, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "21", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "05.6", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 397.8754475911458, "t": 672.5863138834635, "r": 432.546875, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "text": "screen", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 328.9554850260417, "t": 600.4391276041666, "r": 369.54638671875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "shadow", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 328.9554850260417, "t": 589.8292643229166, "r": 362.3583984375, "b": 577.9461873372395, "coord_origin": "BOTTOMLEFT"}, "text": "of bob", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 566.487528483073, "r": 364.4725341796875, "b": 554.6044514973958, "coord_origin": "BOTTOMLEFT"}, "text": "shadow", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 555.4532470703125, "r": 364.4725341796875, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "text": "of block", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 774.8655446370443, "r": 101.9000956217448, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "05.6", "furniture": true}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 772.7435709635416, "r": 533.1785074869791, "b": 734.5480041503906, "coord_origin": "BOTTOMLEFT"}, "text": "A lamp is used to project shadow images ", "furniture": false}, {"page": 21, "kind": "text", "label": "section_header", "bbox": {"l": 265.109375, "t": 721.816151936849, "r": 316.2708333333333, "b": 707.38671875, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 11", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 397.8754475911458, "t": 672.5863138834635, "r": 432.546875, "b": 663.6740112304688, "coord_origin": "BOTTOMLEFT"}, "text": "screen", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 328.9554850260417, "t": 600.4391276041666, "r": 369.54638671875, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "shadow", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 328.9554850260417, "t": 589.8292643229166, "r": 362.3583984375, "b": 577.9461873372395, "coord_origin": "BOTTOMLEFT"}, "text": "of bob", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 566.487528483073, "r": 364.4725341796875, "b": 554.6044514973958, "coord_origin": "BOTTOMLEFT"}, "text": "shadow", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 555.4532470703125, "r": 364.4725341796875, "b": 543.5701904296875, "coord_origin": "BOTTOMLEFT"}, "text": "of block", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 501.9794514973958, "r": 411.8285725911458, "b": 489.24761962890625, "coord_origin": "BOTTOMLEFT"}, "text": "Initially the shadows move in phase with", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 476.51572672526044, "r": 355.59326171875, "b": 464.20827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "Air resistance affects the motion of the", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.16192626953125, "t": 451.05202229817706, "r": 519.648193359375, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "text": "Suggest the effect this has on the ampli", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 425.58831787109375, "r": 535.7154134114584, "b": 412.43206787109375, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 398.00262451171875, "r": 163.6321004231771, "b": 384.84637451171875, "coord_origin": "BOTTOMLEFT"}, "text": "amplitude", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 319.9139200846354, "r": 146.29639689127603, "b": 307.6064656575521, "coord_origin": "BOTTOMLEFT"}, "text": "phase", "furniture": false}, {"page": 21, "kind": "text", "label": "page_header", "bbox": {"l": 552.6282958984375, "t": 273.65484619140625, "r": 567.8498942057291, "b": 261.3473917643229, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 21, "kind": "text", "label": "text", "bbox": {"l": 473.9833984375, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": true}, {"page": 21, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 22, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 531.9100341796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Two transparent prisms A and B of differ", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 530.21875, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 12 shows the path of a ray, incid", "furniture": false}, {"page": 22, "kind": "text", "label": "caption", "bbox": {"l": 264.68654378255206, "t": 710.3574829101562, "r": 316.2708333333333, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 12", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 88.79261271158855, "t": 670.4643351236979, "r": 105.70548502604167, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "text": "air", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 129.80634562174478, "t": 660.7032470703125, "r": 138.26277669270834, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 325.15008544921875, "t": 660.2788492838541, "r": 334.0293375651042, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 129.38351440429688, "t": 648.3957926432291, "r": 238.8944091796875, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "text": "refractive index = 1.62", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 324.7272542317708, "t": 648.3957926432291, "r": 434.6609700520833, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "text": "refractiveindex=1.35", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 448.1912841796875, "t": 597.4683634440104, "r": 510.7689208984375, "b": 584.7365112304688, "coord_origin": "BOTTOMLEFT"}, "text": "not to scale", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 291.32432047526044, "t": 582.6145426432292, "r": 305.27744547526044, "b": 572.4290568033855, "coord_origin": "BOTTOMLEFT"}, "text": "43", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 380.9625651041667, "t": 565.6387329101562, "r": 388.5733642578125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "text": "P", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 496.03794352213544, "r": 101.47727457682292, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "text": "06.1", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 494.76475016276044, "r": 532.7556559244791, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how the path of the ray shows th", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 468.87664794921875, "r": 535.2926025390625, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.8655446370443, "r": 78.64488220214844, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "06", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 115.007568359375, "t": 772.3191782633463, "r": 531.9100341796875, "b": 747.2798563639323, "coord_origin": "BOTTOMLEFT"}, "text": "Two transparent prisms A and B of differ", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 746.85546875, "r": 530.21875, "b": 721.816151936849, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 12 shows the path of a ray, incid", "furniture": false}, {"page": 22, "kind": "text", "label": "caption", "bbox": {"l": 264.68654378255206, "t": 710.3574829101562, "r": 316.2708333333333, "b": 695.9280497233073, "coord_origin": "BOTTOMLEFT"}, "text": "Figure 12", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 88.79261271158855, "t": 670.4643351236979, "r": 105.70548502604167, "b": 657.7324829101562, "coord_origin": "BOTTOMLEFT"}, "text": "air", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 129.80634562174478, "t": 660.7032470703125, "r": 138.26277669270834, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 325.15008544921875, "t": 660.2788492838541, "r": 334.0293375651042, "b": 650.0933634440104, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 129.38351440429688, "t": 648.3957926432291, "r": 238.8944091796875, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "text": "refractive index = 1.62", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 324.7272542317708, "t": 648.3957926432291, "r": 434.6609700520833, "b": 637.3615112304688, "coord_origin": "BOTTOMLEFT"}, "text": "refractiveindex=1.35", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 448.1912841796875, "t": 597.4683634440104, "r": 510.7689208984375, "b": 584.7365112304688, "coord_origin": "BOTTOMLEFT"}, "text": "not to scale", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 291.32432047526044, "t": 582.6145426432292, "r": 305.27744547526044, "b": 572.4290568033855, "coord_origin": "BOTTOMLEFT"}, "text": "43", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 380.9625651041667, "t": 565.6387329101562, "r": 388.5733642578125, "b": 557.1508178710938, "coord_origin": "BOTTOMLEFT"}, "text": "P", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 496.03794352213544, "r": 101.47727457682292, "b": 481.60850016276044, "coord_origin": "BOTTOMLEFT"}, "text": "06.1", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 494.76475016276044, "r": 532.7556559244791, "b": 469.30104573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Explain how the path of the ray shows th", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 468.87664794921875, "r": 535.2926025390625, "b": 455.72039794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "22", "furniture": true}, {"page": 22, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 22, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 23, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "23", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 545.0174967447916, "t": 789.2949829101562, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.7143351236979, "r": 105.2826639811198, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "06.2", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 114.58474731445312, "t": 772.3191782633463, "r": 408.8688151041667, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "Show that the angle of refraction of the", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.1311442057292, "t": 759.1629282633463, "r": 535.7154134114584, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "[2 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 379.75364176432294, "r": 101.054443359375, "b": 365.32419840494794, "coord_origin": "BOTTOMLEFT"}, "text": "06.3", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 113.3162841796875, "t": 378.05605061848956, "r": 455.8020833333333, "b": 350.89479573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Draw, on Figure 12, the path of the ray ", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 484.553955078125, "t": 352.59234619140625, "r": 535.7154134114584, "b": 339.43609619140625, "coord_origin": "BOTTOMLEFT"}, "text": "[3 marks]", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 556.0108642578125, "t": 179.43914794921875, "r": 565.3129475911459, "b": 168.82924397786462, "coord_origin": "BOTTOMLEFT"}, "text": "6", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 232.1292521158854, "t": 111.96026611328125, "r": 346.2911783854167, "b": 100.92600504557288, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOFSECTIONA", "furniture": false}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 474.40625, "t": 69.52081298828125, "r": 537.8295491536459, "b": 58.06215413411462, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 23, "kind": "text", "label": "text", "bbox": {"l": 63.84611511230469, "t": 25.38368733723962, "r": 79.06770833333333, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 23, "kind": "text", "label": "page_footer", "bbox": {"l": 479.0572916666667, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 24, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": true}, {"page": 24, "kind": "text", "label": "section_header", "bbox": {"l": 263.41807047526044, "t": 776.1387329101562, "r": 316.2708333333333, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Section B", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 110.77935791015625, "t": 751.0994160970052, "r": 468.0639241536458, "b": 736.6699829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Each of Questions 07 to 31 is followed b", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 181.81343587239584, "t": 724.3625183105469, "r": 395.3385416666667, "b": 710.7818806966146, "coord_origin": "BOTTOMLEFT"}, "text": "For eachquestionselect thebest response.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 54.12121073404948, "t": 666.2203776041666, "r": 257.07574462890625, "b": 652.6397298177084, "coord_origin": "BOTTOMLEFT"}, "text": "Only one answer per question is allowed.", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 54.12121073404948, "t": 652.6397298177084, "r": 442.694580078125, "b": 639.9078776041666, "coord_origin": "BOTTOMLEFT"}, "text": "For each question, completely fill in th", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 626.3272298177084, "r": 123.0411885579427, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "CORRECT METHOD", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 197.45784505208334, "t": 625.4784545898438, "r": 262.5724283854167, "b": 616.9905395507812, "coord_origin": "BOTTOMLEFT"}, "text": "WRONGMETHODS", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 51.161458333333336, "t": 575.3998209635417, "r": 522.6079508463541, "b": 549.9361165364583, "coord_origin": "BOTTOMLEFT"}, "text": "If you wish to return to an answer previ", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 51.161458333333336, "t": 531.262715657552, "r": 510.3461100260417, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "text": "You may do your working in the blank spa", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 461.66192626953125, "r": 340.79449462890625, "b": 446.38368733723956, "coord_origin": "BOTTOMLEFT"}, "text": "07 Which two quantities have the base un", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 445.95928955078125, "r": 536.5610758463541, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 412.43206787109375, "r": 254.538818359375, "b": 399.27581787109375, "coord_origin": "BOTTOMLEFT"}, "text": "A kinetic energy and momentum", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 383.57322184244794, "r": 276.1027425130208, "b": 370.84136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "B kinetic energy and Young modulus", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 92.17519124348958, "t": 355.13873291015625, "r": 296.82102457682294, "b": 342.83127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "C work done and the moment of a couple", "furniture": false}, {"page": 24, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 327.55303955078125, "r": 225.36409505208334, "b": 313.9723917643229, "coord_origin": "BOTTOMLEFT"}, "text": "Dwork done and pressure", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 49.89299011230469, "t": 280.0207722981771, "r": 379.6941324869792, "b": 265.59136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "08 Which gives Sl prefixes in descending", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 265.59136962890625, "r": 536.1382242838541, "b": 251.16192626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 232.48854573567712, "r": 145.87357584635416, "b": 216.78590901692712, "coord_origin": "BOTTOMLEFT"}, "text": "AGpm", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 197.68813069661462, "r": 147.56486002604166, "b": 184.95627848307288, "coord_origin": "BOTTOMLEFT"}, "text": "BMGn", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 163.73651123046875, "r": 142.06817626953125, "b": 148.88271077473962, "coord_origin": "BOTTOMLEFT"}, "text": "cmn\u03bc", "furniture": false}, {"page": 24, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 125.96531168619788, "r": 142.06817626953125, "b": 113.23345947265625, "coord_origin": "BOTTOMLEFT"}, "text": "Dm\u03bcp", "furniture": false}, {"page": 24, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 24, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 25, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 301.89487711588544, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "60 A car travels at 100 km h-1 on a moto", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 746.4310709635416, "r": 293.015625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "What is an estimate of its kinetic energ", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 733.2748209635416, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 25, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 701.0207926432291, "r": 133.18891398111978, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "text": "A 104 J", "furniture": false}, {"page": 25, "kind": "text", "label": "list_item", "bbox": {"l": 90.48389689127605, "t": 672.1619160970052, "r": 133.61173502604166, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "text": "B 10\u00b0 J", "furniture": false}, {"page": 25, "kind": "text", "label": "list_item", "bbox": {"l": 90.48389689127605, "t": 644.5762329101562, "r": 133.61173502604166, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "text": "C 108 J", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 616.1417643229166, "r": 136.57149251302084, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "text": "D 1010 J", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 563.941141764323, "r": 259.1898600260417, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "text": "10 6", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 543.1457926432292, "r": 536.5610758463541, "b": 528.2919514973958, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 510.04296875, "r": 185.1960245768229, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "text": "A 4.4 \u00d7 107 C kg-1", "furniture": false}, {"page": 25, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 90.48389689127605, "t": 476.09136962890625, "r": 185.61883544921875, "b": 461.23752848307294, "coord_origin": "BOTTOMLEFT"}, "text": "B 5.2 \u00d7 107 C kg-1", "furniture": false}, {"page": 25, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 441.71535237630206, "r": 184.773193359375, "b": 427.28590901692706, "coord_origin": "BOTTOMLEFT"}, "text": "C 8.3 \u00d7 107 C kg-1", "furniture": false}, {"page": 25, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 90.06107584635417, "t": 408.18813069661456, "r": 186.04166666666666, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "text": "D 2.1 \u00d7 10* C kg-l", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 358.53387451171875, "r": 77.79924011230469, "b": 346.65081787109375, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 90.48389689127605, "t": 359.38267008463544, "r": 461.2987467447917, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "text": "Which row describes the variation with d", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 311.8504435221354, "r": 241.43133544921875, "b": 297.84539794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Attractive", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 313.12359619140625, "r": 378.8484700520833, "b": 296.9966023763021, "coord_origin": "BOTTOMLEFT"}, "text": "Repulsive", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 276.20123291015625, "r": 134.45738728841147, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 278.74761962890625, "r": 247.3508504231771, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "text": "beyond 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 302.7405192057292, "t": 277.47442626953125, "r": 398.7211100260417, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 236.30808512369788, "r": 134.45738728841147, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 167.0146687825521, "t": 236.73248291015625, "r": 262.99525960286456, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 319.23057047526044, "t": 238.00567626953125, "r": 383.49951171875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "beyond 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 124.30965169270833, "t": 195.99053955078125, "r": 134.45738728841147, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 167.0146687825521, "t": 197.26373291015625, "r": 263.41807047526044, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 320.49904378255206, "t": 196.41493733723962, "r": 381.8082275390625, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "text": "up to 0.5 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 124.73248291015625, "t": 154.82419840494788, "r": 133.61173502604166, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 185.1960245768229, "t": 156.09739176432288, "r": 246.0823771158854, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "text": "up to 0.5 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 303.16335042317706, "t": 156.09739176432288, "r": 398.7211100260417, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 775.2899424235026, "r": 301.89487711588544, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "60 A car travels at 100 km h-1 on a moto", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 746.4310709635416, "r": 293.015625, "b": 732.426035563151, "coord_origin": "BOTTOMLEFT"}, "text": "What is an estimate of its kinetic energ", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 733.2748209635416, "r": 536.5610758463541, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 25, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 701.0207926432291, "r": 133.18891398111978, "b": 686.5913492838541, "coord_origin": "BOTTOMLEFT"}, "text": "A 104 J", "furniture": false}, {"page": 25, "kind": "text", "label": "list_item", "bbox": {"l": 90.48389689127605, "t": 672.1619160970052, "r": 133.61173502604166, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "text": "B 10\u00b0 J", "furniture": false}, {"page": 25, "kind": "text", "label": "list_item", "bbox": {"l": 90.48389689127605, "t": 644.5762329101562, "r": 133.61173502604166, "b": 630.1467895507812, "coord_origin": "BOTTOMLEFT"}, "text": "C 108 J", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 616.1417643229166, "r": 136.57149251302084, "b": 601.2879231770834, "coord_origin": "BOTTOMLEFT"}, "text": "D 1010 J", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 49.89299011230469, "t": 563.941141764323, "r": 259.1898600260417, "b": 543.9945678710938, "coord_origin": "BOTTOMLEFT"}, "text": "10 6", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 543.1457926432292, "r": 536.5610758463541, "b": 528.2919514973958, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 510.04296875, "r": 185.1960245768229, "b": 496.03794352213544, "coord_origin": "BOTTOMLEFT"}, "text": "A 4.4 \u00d7 107 C kg-1", "furniture": false}, {"page": 25, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 90.48389689127605, "t": 476.09136962890625, "r": 185.61883544921875, "b": 461.23752848307294, "coord_origin": "BOTTOMLEFT"}, "text": "B 5.2 \u00d7 107 C kg-1", "furniture": false}, {"page": 25, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 441.71535237630206, "r": 184.773193359375, "b": 427.28590901692706, "coord_origin": "BOTTOMLEFT"}, "text": "C 8.3 \u00d7 107 C kg-1", "furniture": false}, {"page": 25, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 90.06107584635417, "t": 408.18813069661456, "r": 186.04166666666666, "b": 392.90989176432294, "coord_origin": "BOTTOMLEFT"}, "text": "D 2.1 \u00d7 10* C kg-l", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 358.53387451171875, "r": 77.79924011230469, "b": 346.65081787109375, "coord_origin": "BOTTOMLEFT"}, "text": "11", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 90.48389689127605, "t": 359.38267008463544, "r": 461.2987467447917, "b": 344.95322672526044, "coord_origin": "BOTTOMLEFT"}, "text": "Which row describes the variation with d", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 345.37762451171875, "r": 536.5610758463541, "b": 330.94822184244794, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 189.00142415364584, "t": 311.8504435221354, "r": 241.43133544921875, "b": 297.84539794921875, "coord_origin": "BOTTOMLEFT"}, "text": "Attractive", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 324.304443359375, "t": 313.12359619140625, "r": 378.8484700520833, "b": 296.9966023763021, "coord_origin": "BOTTOMLEFT"}, "text": "Repulsive", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 276.20123291015625, "r": 134.45738728841147, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 183.0819091796875, "t": 278.74761962890625, "r": 247.3508504231771, "b": 261.77178955078125, "coord_origin": "BOTTOMLEFT"}, "text": "beyond 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 302.7405192057292, "t": 277.47442626953125, "r": 398.7211100260417, "b": 263.8937784830729, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 236.30808512369788, "r": 134.45738728841147, "b": 224.42502848307288, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 167.0146687825521, "t": 236.73248291015625, "r": 262.99525960286456, "b": 224.00063069661462, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 319.23057047526044, "t": 238.00567626953125, "r": 383.49951171875, "b": 222.30303955078125, "coord_origin": "BOTTOMLEFT"}, "text": "beyond 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 124.30965169270833, "t": 195.99053955078125, "r": 134.45738728841147, "b": 183.68308512369788, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 167.0146687825521, "t": 197.26373291015625, "r": 263.41807047526044, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 320.49904378255206, "t": 196.41493733723962, "r": 381.8082275390625, "b": 183.25868733723962, "coord_origin": "BOTTOMLEFT"}, "text": "up to 0.5 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 124.73248291015625, "t": 154.82419840494788, "r": 133.61173502604166, "b": 143.78993733723962, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 185.1960245768229, "t": 156.09739176432288, "r": 246.0823771158854, "b": 142.94114176432288, "coord_origin": "BOTTOMLEFT"}, "text": "up to 0.5 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 303.16335042317706, "t": 156.09739176432288, "r": 398.7211100260417, "b": 143.36553955078125, "coord_origin": "BOTTOMLEFT"}, "text": "from 0.5 fm to 3 fm", "furniture": false}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 79.91335042317708, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": true}, {"page": 25, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": true}, {"page": 25, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 26, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 775.2899424235026, "r": 229.16949462890625, "b": 760.01171875, "coord_origin": "BOTTOMLEFT"}, "text": "12 Which statement is correct?", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 760.01171875, "r": 536.1382242838541, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 726.4844970703125, "r": 266.8006591796875, "b": 712.9038492838541, "coord_origin": "BOTTOMLEFT"}, "text": "A All strange particles are mesons.", "furniture": false}, {"page": 26, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 697.2012329101562, "r": 325.9957275390625, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "text": "B Strange particles are always created i", "furniture": false}, {"page": 26, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 669.6155395507812, "r": 358.1302083333333, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "text": "C Strangeness can only change in strong ", "furniture": false}, {"page": 26, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 92.17519124348958, "t": 640.7566731770834, "r": 327.68701171875, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "text": "D Strangeness can only have a value of 0", "furniture": false}, {"page": 26, "kind": "text", "label": "list_item", "bbox": {"l": 49.89299011230469, "t": 594.0732014973959, "r": 294.7069091796875, "b": 579.2193806966145, "coord_origin": "BOTTOMLEFT"}, "text": "13 Which combination of quarks is possib", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 579.643778483073, "r": 536.5610758463541, "b": 565.214335123698, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 546.1165568033855, "r": 120.08144124348958, "b": 532.535909016927, "coord_origin": "BOTTOMLEFT"}, "text": "A sd", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 518.5308634440105, "r": 119.65861002604167, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "text": "B su", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 489.24761962890625, "r": 126.00094604492188, "b": 476.09136962890625, "coord_origin": "BOTTOMLEFT"}, "text": "C sud", "furniture": false}, {"page": 26, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.3295389811198, "t": 460.38873291015625, "r": 120.08144124348958, "b": 448.08127848307294, "coord_origin": "BOTTOMLEFT"}, "text": "Dud", "furniture": false}, {"page": 26, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 412.43206787109375, "r": 317.11647542317706, "b": 397.57822672526044, "coord_origin": "BOTTOMLEFT"}, "text": "In photoelectricity, Vs is the stopping ", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 383.99761962890625, "r": 196.6122029622396, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "What quantity is eVs?", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 371.69012451171875, "r": 536.5610758463541, "b": 356.83632405598956, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 26, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 337.73854573567706, "r": 246.0823771158854, "b": 324.5822957356771, "coord_origin": "BOTTOMLEFT"}, "text": "A energy of an incident photon", "furniture": false}, {"page": 26, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.3295389811198, "t": 309.72845458984375, "r": 316.6936442057292, "b": 295.7234090169271, "coord_origin": "BOTTOMLEFT"}, "text": "B maximum kinetic energy of a photoelect", "furniture": false}, {"page": 26, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.3295389811198, "t": 281.7183634440104, "r": 313.73388671875, "b": 266.8645222981771, "coord_origin": "BOTTOMLEFT"}, "text": "C threshold frequency \u00d7 the Planck const", "furniture": false}, {"page": 26, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.3295389811198, "t": 252.85947672526038, "r": 172.5113525390625, "b": 239.27886962890625, "coord_origin": "BOTTOMLEFT"}, "text": "D work function", "furniture": false}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 60.88636271158854, "t": 24.11049397786462, "r": 65.5374043782552, "b": 17.74460856119788, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 26, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 26, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 27, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "27", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 90.06107584635417, "t": 773.16796875, "r": 258.76702880859375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "A fluorescent tube contains a gas.", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 746.4310709635416, "r": 205.4914754231771, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "The coating of the tube", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 734.1236063639323, "r": 536.1382242838541, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 700.5963948567709, "r": 423.6676025390625, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "text": "A becomes ionised by the gas and emits p", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 671.3131306966146, "r": 447.7684733072917, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "text": "B absorbs photons of ultraviolet light f", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 644.5762329101562, "r": 466.3726399739583, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "text": "C absorbs photons of ultraviolet light f", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 615.29296875, "r": 457.070556640625, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "text": "D absorbs several photons of visible lig", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 106.12831624348958, "t": 600.863525390625, "r": 229.59232584635416, "b": 588.1316731770834, "coord_origin": "BOTTOMLEFT"}, "text": "photon of ultraviolet light.", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 50.31581115722656, "t": 560.9703776041667, "r": 534.8697916666666, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "text": "16 Which row gives evidence for the wave", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 533.3847045898438, "r": 536.5610758463541, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 148.41051228841147, "t": 494.34035237630206, "r": 282.02223714192706, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Wave nature of electrons", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 290.90150960286456, "t": 494.34035237630206, "r": 427.0501708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Particulate nature of light", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 452.74961344401044, "r": 134.45738728841147, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.55160522460938, "t": 454.44720458984375, "r": 260.4583333333333, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "electron diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 453.17401123046875, "r": 407.6003824869792, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "text": "photoelectric effect", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 412.43206787109375, "r": 134.45738728841147, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.55160522460938, "t": 414.12965901692706, "r": 260.4583333333333, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "electron diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 310.77414957682294, "t": 415.82725016276044, "r": 408.8688151041667, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "text": "single-slit diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 124.30965169270833, "t": 372.53892008463544, "r": 134.45738728841147, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.1287841796875, "t": 373.38771565755206, "r": 262.5724283854167, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "text": "photoelectric effect", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 310.77414957682294, "t": 374.66090901692706, "r": 408.8688151041667, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "single-slit diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 124.73248291015625, "t": 331.37261962890625, "r": 133.61173502604166, "b": 320.7627156575521, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.1287841796875, "t": 333.07017008463544, "r": 262.5724283854167, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "text": "photoelectric effect", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 314.15671793619794, "t": 333.49456787109375, "r": 405.0634358723958, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "text": "electron diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 280.4451700846354, "r": 79.91335042317708, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 279.1719767252604, "r": 361.9355875651042, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Which particle has the smallest de Brogl", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 265.1669718424479, "r": 536.5610758463541, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 231.21535237630212, "r": 278.21685791015625, "b": 218.90789794921875, "coord_origin": "BOTTOMLEFT"}, "text": "A an electron moving at 4 \u00d7 103 m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 90.48389689127605, "t": 203.62965901692712, "r": 265.109375, "b": 189.62461344401038, "coord_origin": "BOTTOMLEFT"}, "text": "B a proton moving at 4 \u00d7 103 m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 175.19517008463538, "r": 277.7940266927083, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "text": "C an electron moving at 8 \u00d7 10' m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 146.76072184244788, "r": 264.68654378255206, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "text": "D a proton moving at 8 \u00d7 102 m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "15", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 90.06107584635417, "t": 773.16796875, "r": 258.76702880859375, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "A fluorescent tube contains a gas.", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 746.4310709635416, "r": 205.4914754231771, "b": 733.69921875, "coord_origin": "BOTTOMLEFT"}, "text": "The coating of the tube", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 734.1236063639323, "r": 536.1382242838541, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 700.5963948567709, "r": 423.6676025390625, "b": 687.4401448567709, "coord_origin": "BOTTOMLEFT"}, "text": "A becomes ionised by the gas and emits p", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 671.3131306966146, "r": 447.7684733072917, "b": 658.5812784830729, "coord_origin": "BOTTOMLEFT"}, "text": "B absorbs photons of ultraviolet light f", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 644.5762329101562, "r": 466.3726399739583, "b": 629.7223917643229, "coord_origin": "BOTTOMLEFT"}, "text": "C absorbs photons of ultraviolet light f", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 615.29296875, "r": 457.070556640625, "b": 601.7123209635416, "coord_origin": "BOTTOMLEFT"}, "text": "D absorbs several photons of visible lig", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 106.12831624348958, "t": 600.863525390625, "r": 229.59232584635416, "b": 588.1316731770834, "coord_origin": "BOTTOMLEFT"}, "text": "photon of ultraviolet light.", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 50.31581115722656, "t": 560.9703776041667, "r": 534.8697916666666, "b": 533.809102376302, "coord_origin": "BOTTOMLEFT"}, "text": "16 Which row gives evidence for the wave", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 533.3847045898438, "r": 536.5610758463541, "b": 518.9552612304688, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 148.41051228841147, "t": 494.34035237630206, "r": 282.02223714192706, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Wave nature of electrons", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 290.90150960286456, "t": 494.34035237630206, "r": 427.0501708984375, "b": 480.33530680338544, "coord_origin": "BOTTOMLEFT"}, "text": "Particulate nature of light", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 452.74961344401044, "r": 134.45738728841147, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "A", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.55160522460938, "t": 454.44720458984375, "r": 260.4583333333333, "b": 440.86655680338544, "coord_origin": "BOTTOMLEFT"}, "text": "electron diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 312.46543375651044, "t": 453.17401123046875, "r": 407.6003824869792, "b": 441.29095458984375, "coord_origin": "BOTTOMLEFT"}, "text": "photoelectric effect", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 123.88683064778645, "t": 412.43206787109375, "r": 134.45738728841147, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.55160522460938, "t": 414.12965901692706, "r": 260.4583333333333, "b": 400.54901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "electron diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 310.77414957682294, "t": 415.82725016276044, "r": 408.8688151041667, "b": 398.00262451171875, "coord_origin": "BOTTOMLEFT"}, "text": "single-slit diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 124.30965169270833, "t": 372.53892008463544, "r": 134.45738728841147, "b": 360.23146565755206, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.1287841796875, "t": 373.38771565755206, "r": 262.5724283854167, "b": 360.65586344401044, "coord_origin": "BOTTOMLEFT"}, "text": "photoelectric effect", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 310.77414957682294, "t": 374.66090901692706, "r": 408.8688151041667, "b": 358.95827229817706, "coord_origin": "BOTTOMLEFT"}, "text": "single-slit diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 124.73248291015625, "t": 331.37261962890625, "r": 133.61173502604166, "b": 320.7627156575521, "coord_origin": "BOTTOMLEFT"}, "text": "D", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 169.1287841796875, "t": 333.07017008463544, "r": 262.5724283854167, "b": 320.33831787109375, "coord_origin": "BOTTOMLEFT"}, "text": "photoelectric effect", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 314.15671793619794, "t": 333.49456787109375, "r": 405.0634358723958, "b": 319.9139200846354, "coord_origin": "BOTTOMLEFT"}, "text": "electron diffraction", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 49.47016906738281, "t": 280.4451700846354, "r": 79.91335042317708, "b": 265.1669718424479, "coord_origin": "BOTTOMLEFT"}, "text": "17", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 279.1719767252604, "r": 361.9355875651042, "b": 264.31817626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Which particle has the smallest de Brogl", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 265.1669718424479, "r": 536.5610758463541, "b": 250.73752848307288, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 231.21535237630212, "r": 278.21685791015625, "b": 218.90789794921875, "coord_origin": "BOTTOMLEFT"}, "text": "A an electron moving at 4 \u00d7 103 m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 90.48389689127605, "t": 203.62965901692712, "r": 265.109375, "b": 189.62461344401038, "coord_origin": "BOTTOMLEFT"}, "text": "B a proton moving at 4 \u00d7 103 m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 175.19517008463538, "r": 277.7940266927083, "b": 161.61452229817712, "coord_origin": "BOTTOMLEFT"}, "text": "C an electron moving at 8 \u00d7 10' m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 146.76072184244788, "r": 264.68654378255206, "b": 133.18007405598962, "coord_origin": "BOTTOMLEFT"}, "text": "D a proton moving at 8 \u00d7 102 m s-1", "furniture": false}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.79400634765625, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over Donotwrite outsidethe box", "furniture": true}, {"page": 27, "kind": "text", "label": "text", "bbox": {"l": 61.73200480143229, "t": 23.26169840494788, "r": 65.11458333333333, "b": 18.16900634765625, "coord_origin": "BOTTOMLEFT"}, "text": "2", "furniture": true}, {"page": 27, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 28, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 50.31581115722656, "t": 774.441151936849, "r": 78.22206115722656, "b": 760.8605041503906, "coord_origin": "BOTTOMLEFT"}, "text": "18", "furniture": true}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 773.5923614501953, "r": 419.4393717447917, "b": 744.309092203776, "coord_origin": "BOTTOMLEFT"}, "text": "A longitudinal wave of frequency 660 Hz ", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 732.0016377766927, "r": 404.2177734375, "b": 719.6941731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Which statement describes the motion of ", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 718.8453877766927, "r": 536.5610758463541, "b": 704.4159545898438, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_selected", "bbox": {"l": 91.3295389811198, "t": 685.7425638834635, "r": 289.63303629557294, "b": 672.1619160970052, "coord_origin": "BOTTOMLEFT"}, "text": "A It is travelling at a speed of 330 m s", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 657.3080851236979, "r": 387.7277425130208, "b": 642.4542643229166, "coord_origin": "BOTTOMLEFT"}, "text": "B It moves in phase with a particle in t", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 628.8736165364584, "r": 300.20359293619794, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "text": "C It oscillates with a time period of 1.", "furniture": false}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 600.0147298177084, "r": 324.304443359375, "b": 586.8584798177084, "coord_origin": "BOTTOMLEFT"}, "text": "D It changes direction 660 times every s", "furniture": false}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 61.309183756510414, "t": 552.058085123698, "r": 433.3924967447917, "b": 537.2042643229167, "coord_origin": "BOTTOMLEFT"}, "text": "9 The frequency of the first harmonic of", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 92.59801228841145, "t": 536.35546875, "r": 234.66617838541666, "b": 524.0480143229167, "coord_origin": "BOTTOMLEFT"}, "text": "The tension in the string is T.", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 523.6236165364583, "r": 481.17138671875, "b": 509.6185709635417, "coord_origin": "BOTTOMLEFT"}, "text": "The tension is increased to 4T without c", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 496.46230061848956, "r": 356.4389241536458, "b": 482.45729573567706, "coord_origin": "BOTTOMLEFT"}, "text": "Which harmonic has a frequency 2f after ", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 483.30605061848956, "r": 536.1382242838541, "b": 468.87664794921875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_selected", "bbox": {"l": 90.90671793619792, "t": 449.77886962890625, "r": 126.84658813476562, "b": 436.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "A first", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_selected", "bbox": {"l": 91.3295389811198, "t": 421.34438069661456, "r": 143.33663940429688, "b": 408.61252848307294, "coord_origin": "BOTTOMLEFT"}, "text": "B second", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_selected", "bbox": {"l": 91.75236002604167, "t": 392.48549397786456, "r": 129.38351440429688, "b": 380.60243733723956, "coord_origin": "BOTTOMLEFT"}, "text": "C third", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 364.89980061848956, "r": 135.7258504231771, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "text": "D fourth", "furniture": false}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 48.62452697753906, "t": 317.3675740559896, "r": 333.18369547526044, "b": 276.6256306966146, "coord_origin": "BOTTOMLEFT"}, "text": "20 The distance from the slits to the sc", "furniture": false}, {"page": 28, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 316.94317626953125, "r": 466.3726399739583, "b": 302.9381306966146, "coord_origin": "BOTTOMLEFT"}, "text": "Light of wavelength 5.2 \u00d7 10-7 m is used", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 263.4693806966146, "r": 281.59942626953125, "b": 251.16192626953125, "coord_origin": "BOTTOMLEFT"}, "text": "What is the separation of the two slits?", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 251.58632405598962, "r": 536.1382242838541, "b": 235.88368733723962, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 219.33229573567712, "r": 168.70596313476562, "b": 204.05405680338538, "coord_origin": "BOTTOMLEFT"}, "text": "A 2.2 \u00d7 10-5 m", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.75236002604167, "t": 189.20021565755212, "r": 168.28314208984375, "b": 176.46836344401038, "coord_origin": "BOTTOMLEFT"}, "text": "B 9.9 \u00d7 10-5 m", "furniture": false}, {"page": 28, "kind": "text", "label": "checkbox_unselected", "bbox": {"l": 91.3295389811198, "t": 161.61452229817712, "r": 168.70596313476562, "b": 147.60951741536462, "coord_origin": "BOTTOMLEFT"}, "text": "C 1.1 \u00d7 10-4 m", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 134.02886962890625, "r": 168.70596313476562, "b": 118.75063069661462, "coord_origin": "BOTTOMLEFT"}, "text": "D 2.2 \u00d7 10-4 m", "furniture": false}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.23248291015625, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "28", "furniture": true}, {"page": 28, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 28, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 29, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "29", "furniture": true}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 478.2116292317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "text": "21 Monochromatic light of wavelength 5.8", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 732.0016377766927, "r": 330.2239583333333, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "How many maxima are produced by the grat", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 719.6941731770834, "r": 536.5610758463541, "b": 704.840342203776, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 685.3181660970052, "r": 115.007568359375, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "text": "A4", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 657.3080851236979, "r": 114.58474731445312, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "text": "B5", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 630.1467895507812, "r": 115.007568359375, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "text": "c8", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 92.59801228841145, "t": 600.0147298177084, "r": 114.58474731445312, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "D 9", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 554.1800537109375, "r": 466.3726399739583, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "text": "22 An aeroplane flies horizontally at 15", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 235.5118408203125, "t": 524.8967895507812, "r": 246.0823771158854, "b": 513.4381306966145, "coord_origin": "BOTTOMLEFT"}, "text": "N", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 236.7802937825521, "t": 512.589335123698, "r": 244.3910929361979, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "text": "\u4e2a", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 241.85416666666666, "t": 440.86655680338544, "r": 262.5724283854167, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "text": "60\u00b0", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 397.57822672526044, "r": 536.5610758463541, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "How far north from its starting position", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 350.89479573567706, "r": 144.60511271158853, "b": 338.16294352213544, "coord_origin": "BOTTOMLEFT"}, "text": "A 270 km", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 323.3091023763021, "r": 144.18229166666666, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "text": "B 470 km", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 294.02581787109375, "r": 144.18229166666666, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "text": "C 510 km", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 266.44012451171875, "r": 144.18229166666666, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "text": "D 540 km", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 478.2116292317708, "b": 745.1578877766927, "coord_origin": "BOTTOMLEFT"}, "text": "21 Monochromatic light of wavelength 5.8", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 732.0016377766927, "r": 330.2239583333333, "b": 718.4209899902344, "coord_origin": "BOTTOMLEFT"}, "text": "How many maxima are produced by the grat", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 719.6941731770834, "r": 536.5610758463541, "b": 704.840342203776, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 685.3181660970052, "r": 115.007568359375, "b": 673.0107116699219, "coord_origin": "BOTTOMLEFT"}, "text": "A4", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 657.3080851236979, "r": 114.58474731445312, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "text": "B5", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 630.1467895507812, "r": 115.007568359375, "b": 615.29296875, "coord_origin": "BOTTOMLEFT"}, "text": "c8", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 92.59801228841145, "t": 600.0147298177084, "r": 114.58474731445312, "b": 588.5560709635416, "coord_origin": "BOTTOMLEFT"}, "text": "D 9", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 554.1800537109375, "r": 466.3726399739583, "b": 538.4774373372395, "coord_origin": "BOTTOMLEFT"}, "text": "22 An aeroplane flies horizontally at 15", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 235.5118408203125, "t": 524.8967895507812, "r": 246.0823771158854, "b": 513.4381306966145, "coord_origin": "BOTTOMLEFT"}, "text": "N", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 236.7802937825521, "t": 512.589335123698, "r": 244.3910929361979, "b": 504.1014404296875, "coord_origin": "BOTTOMLEFT"}, "text": "\u4e2a", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 241.85416666666666, "t": 440.86655680338544, "r": 262.5724283854167, "b": 431.10544840494794, "coord_origin": "BOTTOMLEFT"}, "text": "60\u00b0", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 397.57822672526044, "r": 536.5610758463541, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "How far north from its starting position", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 350.89479573567706, "r": 144.60511271158853, "b": 338.16294352213544, "coord_origin": "BOTTOMLEFT"}, "text": "A 270 km", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 323.3091023763021, "r": 144.18229166666666, "b": 309.72845458984375, "coord_origin": "BOTTOMLEFT"}, "text": "B 470 km", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 294.02581787109375, "r": 144.18229166666666, "b": 281.2939656575521, "coord_origin": "BOTTOMLEFT"}, "text": "C 510 km", "furniture": false}, {"page": 29, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 266.44012451171875, "r": 144.18229166666666, "b": 252.43511962890625, "coord_origin": "BOTTOMLEFT"}, "text": "D 540 km", "furniture": false}, {"page": 29, "kind": "text", "label": "text", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 539.0979817708334, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turnover Donotwrite outsidethe box", "furniture": true}, {"page": 29, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 30, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 475.6747233072917, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "23 A ball is thrown vertically upwards a", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 732.8504231770834, "r": 320.07623291015625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "What is the total distance travelled by ", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 720.1185709635416, "r": 536.5610758463541, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 687.0157470703125, "r": 135.7258504231771, "b": 673.4350992838541, "coord_origin": "BOTTOMLEFT"}, "text": "A 5.9 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 658.5812784830729, "r": 135.7258504231771, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "text": "B 7.1 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 630.5711873372396, "r": 132.7660929361979, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "c 14 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 601.7123209635416, "r": 132.34327189127603, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "text": "D 28 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 49.47016906738281, "t": 554.1800537109375, "r": 79.4905293782552, "b": 540.175028483073, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 552.9068806966145, "r": 504.8494059244792, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "text": "A truck of mass 2.1 x 103 kg tows a car ", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 439.16896565755206, "r": 268.06911214192706, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "text": "What is the tension in the tow rope?", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 426.01271565755206, "r": 536.5610758463541, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 392.06109619140625, "r": 143.75947062174478, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "text": "A 3000 N", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 363.20225016276044, "r": 143.33663940429688, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "text": "B 4100N", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 93.86647542317708, "t": 333.49456787109375, "r": 101.47727457682292, "b": 325.0066935221354, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 104.85984293619792, "t": 334.76776123046875, "r": 143.33663940429688, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "text": "7800N", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 93.02083333333333, "t": 306.3332722981771, "r": 143.75947062174478, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "text": "D 8900N", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 775.2899424235026, "r": 475.6747233072917, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "23 A ball is thrown vertically upwards a", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 732.8504231770834, "r": 320.07623291015625, "b": 720.54296875, "coord_origin": "BOTTOMLEFT"}, "text": "What is the total distance travelled by ", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 720.1185709635416, "r": 536.5610758463541, "b": 705.6891377766927, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 687.0157470703125, "r": 135.7258504231771, "b": 673.4350992838541, "coord_origin": "BOTTOMLEFT"}, "text": "A 5.9 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 658.5812784830729, "r": 135.7258504231771, "b": 644.5762329101562, "coord_origin": "BOTTOMLEFT"}, "text": "B 7.1 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 630.5711873372396, "r": 132.7660929361979, "b": 616.1417643229166, "coord_origin": "BOTTOMLEFT"}, "text": "c 14 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 601.7123209635416, "r": 132.34327189127603, "b": 587.707275390625, "coord_origin": "BOTTOMLEFT"}, "text": "D 28 m", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 49.47016906738281, "t": 554.1800537109375, "r": 79.4905293782552, "b": 540.175028483073, "coord_origin": "BOTTOMLEFT"}, "text": "24", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 552.9068806966145, "r": 504.8494059244792, "b": 512.1649373372395, "coord_origin": "BOTTOMLEFT"}, "text": "A truck of mass 2.1 x 103 kg tows a car ", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 439.16896565755206, "r": 268.06911214192706, "b": 426.01271565755206, "coord_origin": "BOTTOMLEFT"}, "text": "What is the tension in the tow rope?", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 426.01271565755206, "r": 536.5610758463541, "b": 411.15887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 392.06109619140625, "r": 143.75947062174478, "b": 379.32924397786456, "coord_origin": "BOTTOMLEFT"}, "text": "A 3000 N", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 363.20225016276044, "r": 143.33663940429688, "b": 351.74355061848956, "coord_origin": "BOTTOMLEFT"}, "text": "B 4100N", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 93.86647542317708, "t": 333.49456787109375, "r": 101.47727457682292, "b": 325.0066935221354, "coord_origin": "BOTTOMLEFT"}, "text": "C", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 104.85984293619792, "t": 334.76776123046875, "r": 143.33663940429688, "b": 323.3091023763021, "coord_origin": "BOTTOMLEFT"}, "text": "7800N", "furniture": false}, {"page": 30, "kind": "text", "label": "list_item", "bbox": {"l": 93.02083333333333, "t": 306.3332722981771, "r": 143.75947062174478, "b": 294.8746134440104, "coord_origin": "BOTTOMLEFT"}, "text": "D 8900N", "furniture": false}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 59.6178944905599, "t": 25.80808512369788, "r": 79.91335042317708, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 30, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.8705851236979, "r": 584.7627766927084, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 30, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 31, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.398193359375, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "31", "furniture": true}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "25 A parachutist descends to the ground ", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 578.370585123698, "r": 519.2253824869791, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "text": "Which force, together with the parachuti", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 551.2092895507812, "r": 535.7154134114584, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 518.106465657552, "r": 324.304443359375, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "text": "A the drag force on the parachutist from", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 489.67197672526044, "r": 308.6600341796875, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "B the tension in the strings of the para", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 93.02083333333333, "t": 460.81313069661456, "r": 362.3583984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Cthe gravitational force of theparachuti", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 433.22743733723956, "r": 308.23720296223956, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Dthe lift force on the parachute from th", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 386.54396565755206, "r": 79.91335042317708, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 90.48389689127605, "t": 386.11956787109375, "r": 252.00189208984375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "A tennis ball has a mass of 58 g.", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 371.26572672526044, "r": 523.8764241536459, "b": 345.37762451171875, "coord_origin": "BOTTOMLEFT"}, "text": "The ball is dropped from rest from a hei", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 345.37762451171875, "r": 286.67327880859375, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "The effect of air resistance is negligib", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 320.33831787109375, "r": 482.8626708984375, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "What is the change in momentum of the ba", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 306.3332722981771, "r": 536.1382242838541, "b": 291.90386962890625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 273.2304484049479, "r": 154.33001708984375, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "text": "A 0.040 N s", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 244.79600016276038, "r": 154.33001708984375, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "text": "B 0.075 N s", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 216.36151123046875, "r": 154.33001708984375, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "text": "C 0.215N s", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 92.17519124348958, "t": 186.65386962890625, "r": 153.90719604492188, "b": 175.19517008463538, "coord_origin": "BOTTOMLEFT"}, "text": "D0.614N s", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 47.77887980143229, "t": 774.8655446370443, "r": 497.2386067708333, "b": 759.5873209635416, "coord_origin": "BOTTOMLEFT"}, "text": "25 A parachutist descends to the ground ", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 578.370585123698, "r": 519.2253824869791, "b": 552.058085123698, "coord_origin": "BOTTOMLEFT"}, "text": "Which force, together with the parachuti", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 551.2092895507812, "r": 535.7154134114584, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 518.106465657552, "r": 324.304443359375, "b": 504.95021565755206, "coord_origin": "BOTTOMLEFT"}, "text": "A the drag force on the parachutist from", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 489.67197672526044, "r": 308.6600341796875, "b": 476.51572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "B the tension in the strings of the para", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 93.02083333333333, "t": 460.81313069661456, "r": 362.3583984375, "b": 448.50567626953125, "coord_origin": "BOTTOMLEFT"}, "text": "Cthe gravitational force of theparachuti", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 433.22743733723956, "r": 308.23720296223956, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "text": "Dthe lift force on the parachute from th", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 48.201700846354164, "t": 386.54396565755206, "r": 79.91335042317708, "b": 371.26572672526044, "coord_origin": "BOTTOMLEFT"}, "text": "26", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 90.48389689127605, "t": 386.11956787109375, "r": 252.00189208984375, "b": 369.99257405598956, "coord_origin": "BOTTOMLEFT"}, "text": "A tennis ball has a mass of 58 g.", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 371.26572672526044, "r": 523.8764241536459, "b": 345.37762451171875, "coord_origin": "BOTTOMLEFT"}, "text": "The ball is dropped from rest from a hei", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 345.37762451171875, "r": 286.67327880859375, "b": 332.22137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "The effect of air resistance is negligib", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 91.3295389811198, "t": 320.33831787109375, "r": 482.8626708984375, "b": 305.90887451171875, "coord_origin": "BOTTOMLEFT"}, "text": "What is the change in momentum of the ba", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 306.3332722981771, "r": 536.1382242838541, "b": 291.90386962890625, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 273.2304484049479, "r": 154.33001708984375, "b": 259.6498006184896, "coord_origin": "BOTTOMLEFT"}, "text": "A 0.040 N s", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 244.79600016276038, "r": 154.33001708984375, "b": 231.21535237630212, "coord_origin": "BOTTOMLEFT"}, "text": "B 0.075 N s", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 216.36151123046875, "r": 154.33001708984375, "b": 202.78086344401038, "coord_origin": "BOTTOMLEFT"}, "text": "C 0.215N s", "furniture": false}, {"page": 31, "kind": "text", "label": "list_item", "bbox": {"l": 92.17519124348958, "t": 186.65386962890625, "r": 153.90719604492188, "b": 175.19517008463538, "coord_origin": "BOTTOMLEFT"}, "text": "D0.614N s", "furniture": false}, {"page": 31, "kind": "text", "label": "text", "bbox": {"l": 545.8631591796875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 31, "kind": "text", "label": "page_footer", "bbox": {"l": 473.5605875651042, "t": 70.36960856119788, "r": 538.6751708984375, "b": 56.78896077473962, "coord_origin": "BOTTOMLEFT"}, "text": "Turn over", "furniture": true}, {"page": 31, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 32, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 813.0611114501953, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 48.62452697753906, "t": 775.7143351236979, "r": 505.695068359375, "b": 721.3917541503906, "coord_origin": "BOTTOMLEFT"}, "text": "27 A mass M is suspended from a spring. ", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 708.2355041503906, "r": 517.1112467447916, "b": 682.347401936849, "coord_origin": "BOTTOMLEFT"}, "text": "What is the total elastic energy stored ", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 681.9230041503906, "r": 536.1382242838541, "b": 667.4935709635416, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 649.2445882161459, "r": 121.77272542317708, "b": 634.8151448567709, "coord_origin": "BOTTOMLEFT"}, "text": "A 2E", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 620.3857014973959, "r": 122.19554646809895, "b": 606.8050537109375, "coord_origin": "BOTTOMLEFT"}, "text": "B 3E", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 592.8000284830729, "r": 121.77272542317708, "b": 578.370585123698, "coord_origin": "BOTTOMLEFT"}, "text": "C 4E", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 563.0923665364583, "r": 121.77272542317708, "b": 550.784891764323, "coord_origin": "BOTTOMLEFT"}, "text": "D9E", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 48.62452697753906, "t": 516.4088948567708, "r": 512.0373942057291, "b": 489.24761962890625, "coord_origin": "BOTTOMLEFT"}, "text": "28 Two wires P and Q are made of the sam", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 488.39882405598956, "r": 504.8494059244792, "b": 462.08632405598956, "coord_origin": "BOTTOMLEFT"}, "text": "P has an original length L and is subjec", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 449.35447184244794, "r": 228.7466837565104, "b": 437.47137451171875, "coord_origin": "BOTTOMLEFT"}, "text": "Whichstatementiscorrect?", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 436.62261962890625, "r": 536.5610758463541, "b": 422.19317626953125, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 32, "kind": "text", "label": "checkbox_selected", "bbox": {"l": 91.75236002604167, "t": 403.09539794921875, "r": 344.5998942057292, "b": 389.93914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "AThe stress in P and the stress in Q are", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 375.08530680338544, "r": 228.3238525390625, "b": 361.08026123046875, "coord_origin": "BOTTOMLEFT"}, "text": "B The extension of Q is 2x.", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 92.17519124348958, "t": 347.07521565755206, "r": 300.20359293619794, "b": 333.91896565755206, "coord_origin": "BOTTOMLEFT"}, "text": "C The strain of Q is double the strain o", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 324.15789794921875, "r": 313.73388671875, "b": 295.29901123046875, "coord_origin": "BOTTOMLEFT"}, "text": "stress D The value of for P is half that", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 268.5621134440104, "r": 313.73388671875, "b": 254.55706787109375, "coord_origin": "BOTTOMLEFT"}, "text": "29 The current in a metallic conductor i", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 240.12762451171875, "r": 416.4796142578125, "b": 227.82017008463538, "coord_origin": "BOTTOMLEFT"}, "text": "How many electrons pass a point in the c", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 490.4734700520833, "t": 227.82017008463538, "r": 536.5610758463541, "b": 213.39072672526038, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 194.29294840494788, "r": 156.44412231445312, "b": 181.98549397786462, "coord_origin": "BOTTOMLEFT"}, "text": "A 1.1 \u00d7 1018", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 165.85850016276038, "r": 156.44412231445312, "b": 153.55100504557288, "coord_origin": "BOTTOMLEFT"}, "text": "B 1.9 \u00d7 1019", "furniture": false}, {"page": 32, "kind": "text", "label": "list_item", "bbox": {"l": 90.06107584635417, "t": 137.42397054036462, "r": 157.28976440429688, "b": 125.54091389973962, "coord_origin": "BOTTOMLEFT"}, "text": "C 1.4 \u00d7 1020", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 108.98956298828125, "r": 156.02130126953125, "b": 97.10650634765625, "coord_origin": "BOTTOMLEFT"}, "text": "D 2.0 \u00d7 1029", "furniture": false}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 59.19507344563802, "t": 26.65688069661462, "r": 80.33617146809895, "b": 15.62261962890625, "coord_origin": "BOTTOMLEFT"}, "text": "32", "furniture": true}, {"page": 32, "kind": "text", "label": "text", "bbox": {"l": 543.7490234375, "t": 788.4461924235026, "r": 582.6486409505209, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 32, "kind": "text", "label": "page_footer", "bbox": {"l": 479.9029134114583, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 33, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "33", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 788.4461924235026, "r": 584.7627766927084, "b": 763.4068756103516, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 49.04734802246094, "t": 774.441151936849, "r": 79.06770833333333, "b": 760.4361114501953, "coord_origin": "BOTTOMLEFT"}, "text": "30", "furniture": true}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 90.90671793619792, "t": 773.16796875, "r": 477.788818359375, "b": 759.1629282633463, "coord_origin": "BOTTOMLEFT"}, "text": "Which value of resistance cannot be made", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 490.0506591796875, "t": 759.1629282633463, "r": 536.1382242838541, "b": 744.7334899902344, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 725.6357116699219, "r": 135.30302937825522, "b": 713.7526448567709, "coord_origin": "BOTTOMLEFT"}, "text": "A 3.3Q", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 93.02083333333333, "t": 695.503651936849, "r": 101.9000956217448, "b": 686.1669616699219, "coord_origin": "BOTTOMLEFT"}, "text": "B", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 97.671875, "t": 696.3524373372396, "r": 135.30302937825522, "b": 684.8937683105469, "coord_origin": "BOTTOMLEFT"}, "text": "36.7Q", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 92.17519124348958, "t": 668.3423665364584, "r": 132.34327189127603, "b": 656.4592895507812, "coord_origin": "BOTTOMLEFT"}, "text": "C15Q", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 91.75236002604167, "t": 639.9078776041666, "r": 132.34327189127603, "b": 628.0248209635416, "coord_origin": "BOTTOMLEFT"}, "text": "D25Q", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 48.201700846354164, "t": 594.0732014973959, "r": 532.7556559244791, "b": 563.941141764323, "coord_origin": "BOTTOMLEFT"}, "text": "31 A particle performs simple harmonic m", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 91.75236002604167, "t": 551.2092895507812, "r": 306.54591878255206, "b": 538.0530395507812, "coord_origin": "BOTTOMLEFT"}, "text": "What is the maximum speed of the particl", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 490.8962809244792, "t": 538.0530395507812, "r": 536.5610758463541, "b": 523.6236165364583, "coord_origin": "BOTTOMLEFT"}, "text": "[1 mark]", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 505.37461344401044, "r": 160.6723429361979, "b": 492.21836344401044, "coord_origin": "BOTTOMLEFT"}, "text": "A 8.6 mm s-1", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 476.94012451171875, "r": 158.13541666666666, "b": 463.78387451171875, "coord_origin": "BOTTOMLEFT"}, "text": "B 27 mm s-1", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 91.3295389811198, "t": 448.08127848307294, "r": 158.13541666666666, "b": 435.34942626953125, "coord_origin": "BOTTOMLEFT"}, "text": "C 54 mm s-1", "furniture": false}, {"page": 33, "kind": "text", "label": "list_item", "bbox": {"l": 90.90671793619792, "t": 419.64678955078125, "r": 164.05492146809897, "b": 406.91493733723956, "coord_origin": "BOTTOMLEFT"}, "text": "D110 mm s-1", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 551.3598225911459, "t": 417.94919840494794, "r": 567.0042317708334, "b": 405.64174397786456, "coord_origin": "BOTTOMLEFT"}, "text": "25", "furniture": false}, {"page": 33, "kind": "text", "label": "text", "bbox": {"l": 231.28361002604166, "t": 347.92401123046875, "r": 347.1368408203125, "b": 336.46535237630206, "coord_origin": "BOTTOMLEFT"}, "text": "ENDOFQUESTIONS", "furniture": false}, {"page": 33, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 34, "kind": "text", "label": "page_header", "bbox": {"l": 281.59942626953125, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "34", "furniture": true}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 173.77982584635416, "t": 774.8655446370443, "r": 403.7949625651042, "b": 761.284901936849, "coord_origin": "BOTTOMLEFT"}, "text": "There are no questions printed on this p", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 187.31011962890625, "t": 445.11049397786456, "r": 396.6070149739583, "b": 420.49558512369794, "coord_origin": "BOTTOMLEFT"}, "text": "DONOTWRITE/ONTHISPAGE ANSWERINTHE/SPACES", "furniture": false}, {"page": 34, "kind": "text", "label": "text", "bbox": {"l": 545.4403076171875, "t": 789.7193756103516, "r": 585.6083984375, "b": 763.8312733968099, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 34, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 35, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.3292566935221, "coord_origin": "BOTTOMLEFT"}, "text": "35", "furniture": true}, {"page": 35, "kind": "text", "label": "page_header", "bbox": {"l": 541.6349283854166, "t": 788.8705851236979, "r": 580.5345458984375, "b": 762.9824829101562, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 244.3910929361979, "t": 771.0459899902344, "r": 383.49951171875, "b": 757.4653472900391, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page,if required.", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.36979166666667, "b": 747.7042541503906, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 184.773193359375, "t": 759.1629282633463, "r": 443.9630533854167, "b": 745.582285563151, "coord_origin": "BOTTOMLEFT"}, "text": "Write the question numbers in the left-h", "furniture": false}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.65151468912761, "b": 16.89581298828125, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 35, "kind": "text", "label": "text", "bbox": {"l": 64.69175720214844, "t": 26.23248291015625, "r": 79.4905293782552, "b": 16.47141520182288, "coord_origin": "BOTTOMLEFT"}, "text": "5", "furniture": true}, {"page": 35, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.9436442057291, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 36, "kind": "text", "label": "page_header", "bbox": {"l": 282.02223714192706, "t": 812.6367162068685, "r": 296.82102457682294, "b": 800.753651936849, "coord_origin": "BOTTOMLEFT"}, "text": "36", "furniture": true}, {"page": 36, "kind": "text", "label": "page_header", "bbox": {"l": 545.4403076171875, "t": 789.2949829101562, "r": 584.3399658203125, "b": 764.2556660970052, "coord_origin": "BOTTOMLEFT"}, "text": "Donotwrite outsidethe box", "furniture": true}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 55.8125, "t": 769.3484090169271, "r": 94.28929646809895, "b": 757.8897399902344, "coord_origin": "BOTTOMLEFT"}, "text": "Question", "furniture": true}, {"page": 36, "kind": "text", "label": "section_header", "bbox": {"l": 184.773193359375, "t": 771.0459899902344, "r": 443.9630533854167, "b": 746.0066731770834, "coord_origin": "BOTTOMLEFT"}, "text": "Additional page, if required. Writethequ", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 54.54403177897135, "t": 757.8897399902344, "r": 88.79261271158855, "b": 748.5530497233073, "coord_origin": "BOTTOMLEFT"}, "text": "number", "furniture": false}, {"page": 36, "kind": "text", "label": "section_header", "bbox": {"l": 106.12831624348958, "t": 195.99053955078125, "r": 187.73295084635416, "b": 184.10748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "Copyrightinformation", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 105.70548502604167, "t": 176.46836344401038, "r": 520.4938151041666, "b": 157.79498291015625, "coord_origin": "BOTTOMLEFT"}, "text": "For confidentialitypurposes,allacknowled", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 106.55113728841145, "t": 131.90688069661462, "r": 159.82670084635416, "b": 121.29701741536462, "coord_origin": "BOTTOMLEFT"}, "text": "CopyrightTeam.", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 106.55113728841145, "t": 114.08225504557288, "r": 294.7069091796875, "b": 103.89678955078125, "coord_origin": "BOTTOMLEFT"}, "text": "Copyright2022AQAand itslicensors.Allrigh", "furniture": false}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 60.463541666666664, "t": 25.38368733723962, "r": 67.22869364420573, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "3", "furniture": true}, {"page": 36, "kind": "text", "label": "text", "bbox": {"l": 378.8484700520833, "t": 57.63775634765625, "r": 506.9635416666667, "b": 47.87660725911462, "coord_origin": "BOTTOMLEFT"}, "text": "226A7408/1", "furniture": false}, {"page": 36, "kind": "text", "label": "page_footer", "bbox": {"l": 479.4801025390625, "t": 25.80808512369788, "r": 539.5208333333334, "b": 17.32021077473962, "coord_origin": "BOTTOMLEFT"}, "text": "IB/M/Jun22/7408/1", "furniture": true}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 38.04322052001953, "t": 798.1278953552246, "r": 168.16883850097656, "b": 750.7074356079102, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "picture", "label": "picture", "bbox": {"l": 41.55791091918945, "t": 53.442626953125, "r": 232.80886840820312, "b": 17.564697265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 2, "kind": "picture", "label": "picture", "bbox": {"l": 43.716583251953125, "t": 53.1287841796875, "r": 99.12460327148438, "b": 17.388427734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 90.66405487060547, "t": 665.022216796875, "r": 488.1374206542969, "b": 485.4034423828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 3, "kind": "picture", "label": "picture", "bbox": {"l": 43.73481750488281, "t": 53.125244140625, "r": 99.09122467041016, "b": 17.48345947265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 4, "kind": "picture", "label": "picture", "bbox": {"l": 43.870540618896484, "t": 53.111572265625, "r": 99.27579498291016, "b": 17.62060546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 39.981536865234375, "t": 787.2447891235352, "r": 539.0674438476562, "b": 75.93817138671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 5, "kind": "picture", "label": "picture", "bbox": {"l": 43.70866394042969, "t": 53.13214111328125, "r": 99.10891723632812, "b": 17.50592041015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 43.68804931640625, "t": 53.1361083984375, "r": 99.04960632324219, "b": 17.542236328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 6, "kind": "picture", "label": "picture", "bbox": {"l": 543.333251953125, "t": 131.81103515625, "r": 576.0045166015625, "b": 90.12890625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 39.12006378173828, "t": 789.1430397033691, "r": 540.823486328125, "b": 73.801025390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 7, "kind": "picture", "label": "picture", "bbox": {"l": 43.57811737060547, "t": 53.12103271484375, "r": 99.4864501953125, "b": 17.18914794921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 43.677764892578125, "t": 53.17633056640625, "r": 98.9754867553711, "b": 17.55694580078125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 8, "kind": "picture", "label": "picture", "bbox": {"l": 154.61647033691406, "t": 721.9823760986328, "r": 426.1144104003906, "b": 525.6509094238281, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 9, "kind": "picture", "label": "picture", "bbox": {"l": 43.875328063964844, "t": 53.1292724609375, "r": 99.22415161132812, "b": 17.6796875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 201.8160858154297, "t": 721.8503341674805, "r": 379.07684326171875, "b": 577.6731567382812, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 10, "kind": "picture", "label": "picture", "bbox": {"l": 43.6340446472168, "t": 53.21136474609375, "r": 99.11817169189453, "b": 17.56353759765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 39.06216812133789, "t": 789.459171295166, "r": 539.8710327148438, "b": 74.51080322265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 11, "kind": "picture", "label": "picture", "bbox": {"l": 43.61802291870117, "t": 53.09515380859375, "r": 99.53155517578125, "b": 17.68267822265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 43.67570877075195, "t": 53.21282958984375, "r": 99.15630340576172, "b": 17.2843017578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 12, "kind": "picture", "label": "picture", "bbox": {"l": 129.14149475097656, "t": 667.7611541748047, "r": 450.1310119628906, "b": 488.6637878417969, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 43.817195892333984, "t": 53.1468505859375, "r": 99.11898803710938, "b": 17.54583740234375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 13, "kind": "picture", "label": "picture", "bbox": {"l": 543.3595581054688, "t": 479.41790771484375, "r": 575.8417358398438, "b": 438.40252685546875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 218.50071716308594, "t": 722.6109161376953, "r": 361.83538818359375, "b": 524.9989624023438, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 14, "kind": "picture", "label": "picture", "bbox": {"l": 43.73312759399414, "t": 53.191162109375, "r": 99.1208724975586, "b": 17.85943603515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 43.66131591796875, "t": 53.1983642578125, "r": 99.0597152709961, "b": 17.4285888671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 15, "kind": "picture", "label": "picture", "bbox": {"l": 218.16305541992188, "t": 735.5035705566406, "r": 361.9599609375, "b": 514.8138427734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 45.604835510253906, "t": 776.7489929199219, "r": 106.06902313232422, "b": 758.4946517944336, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 43.60740280151367, "t": 53.19488525390625, "r": 99.07420349121094, "b": 17.50262451171875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 16, "kind": "picture", "label": "picture", "bbox": {"l": 92.74071502685547, "t": 705.5439300537109, "r": 462.9246520996094, "b": 567.9103393554688, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 17, "kind": "picture", "label": "picture", "bbox": {"l": 43.799156188964844, "t": 53.12493896484375, "r": 99.204345703125, "b": 17.88525390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 39.5291862487793, "t": 788.0014839172363, "r": 539.2009887695312, "b": 75.4483642578125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 18, "kind": "picture", "label": "picture", "bbox": {"l": 43.65611267089844, "t": 53.18243408203125, "r": 99.09671783447266, "b": 17.6627197265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 39.92436981201172, "t": 788.666690826416, "r": 539.1596069335938, "b": 76.3265380859375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 19, "kind": "picture", "label": "picture", "bbox": {"l": 43.8003044128418, "t": 53.18994140625, "r": 99.22151947021484, "b": 17.74847412109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 20, "kind": "picture", "label": "picture", "bbox": {"l": 43.74028778076172, "t": 53.14093017578125, "r": 99.16525268554688, "b": 17.38323974609375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 45.541805267333984, "t": 776.4457015991211, "r": 105.7479248046875, "b": 758.8275680541992, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 43.686729431152344, "t": 53.1051025390625, "r": 99.13709259033203, "b": 17.62286376953125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 21, "kind": "picture", "label": "picture", "bbox": {"l": 148.14927673339844, "t": 696.1988983154297, "r": 432.6424560546875, "b": 517.8292236328125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 39.35024642944336, "t": 787.4561538696289, "r": 539.5936889648438, "b": 75.9244384765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 22, "kind": "picture", "label": "picture", "bbox": {"l": 43.74589157104492, "t": 53.1539306640625, "r": 99.09431457519531, "b": 17.24566650390625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 23, "kind": "picture", "label": "picture", "bbox": {"l": 43.82809066772461, "t": 53.14093017578125, "r": 99.1424560546875, "b": 17.41925048828125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 103.25153350830078, "t": 561.8157043457031, "r": 130.67306518554688, "b": 540.962646484375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 474.3487548828125, "t": 605.8225555419922, "r": 500.7398681640625, "b": 586.4608612060547, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 24, "kind": "picture", "label": "picture", "bbox": {"l": 43.664512634277344, "t": 53.15869140625, "r": 99.07539367675781, "b": 17.5406494140625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 41.39021682739258, "t": 788.1883316040039, "r": 557.9503173828125, "b": 77.1551513671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 25, "kind": "picture", "label": "picture", "bbox": {"l": 43.768917083740234, "t": 53.206298828125, "r": 99.21061706542969, "b": 17.35614013671875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 26, "kind": "picture", "label": "picture", "bbox": {"l": 43.72139358520508, "t": 53.19293212890625, "r": 99.13709259033203, "b": 17.373779296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 40.20746612548828, "t": 788.4639091491699, "r": 539.2969360351562, "b": 76.21099853515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 27, "kind": "picture", "label": "picture", "bbox": {"l": 43.7583122253418, "t": 53.1724853515625, "r": 99.12340545654297, "b": 17.5716552734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 28, "kind": "picture", "label": "picture", "bbox": {"l": 43.66642379760742, "t": 53.19677734375, "r": 99.13784790039062, "b": 17.37799072265625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 40.1088752746582, "t": 787.748893737793, "r": 540.0300903320312, "b": 75.31951904296875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 29, "kind": "picture", "label": "picture", "bbox": {"l": 43.7064323425293, "t": 53.25390625, "r": 99.08885192871094, "b": 17.55670166015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 39.75428009033203, "t": 788.3456954956055, "r": 539.5263061523438, "b": 75.88092041015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 30, "kind": "picture", "label": "picture", "bbox": {"l": 43.5898551940918, "t": 53.221923828125, "r": 99.1150131225586, "b": 17.39642333984375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 39.60329055786133, "t": 788.077392578125, "r": 539.8965454101562, "b": 76.03204345703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 31, "kind": "picture", "label": "picture", "bbox": {"l": 43.6134147644043, "t": 53.18646240234375, "r": 99.23092651367188, "b": 17.52117919921875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 32, "kind": "picture", "label": "picture", "bbox": {"l": 43.62717819213867, "t": 53.14801025390625, "r": 99.07987976074219, "b": 17.21087646484375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 33, "kind": "picture", "label": "picture", "bbox": {"l": 43.651397705078125, "t": 53.1204833984375, "r": 99.10762023925781, "b": 17.42449951171875, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 34, "kind": "picture", "label": "picture", "bbox": {"l": 43.563106536865234, "t": 52.9520263671875, "r": 99.4925765991211, "b": 17.06787109375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 35, "kind": "picture", "label": "picture", "bbox": {"l": 43.705772399902344, "t": 53.1787109375, "r": 99.34980773925781, "b": 16.9459228515625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 36, "kind": "picture", "label": "picture", "bbox": {"l": 43.670074462890625, "t": 53.22137451171875, "r": 99.135986328125, "b": 17.025634765625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": true}, {"page": 36, "kind": "picture", "label": "picture", "bbox": {"l": 362.7693786621094, "t": 84.42547607421875, "r": 527.0680541992188, "b": 48.60748291015625, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 1, "kind": "table", "label": "table", "bbox": {"l": 443.11932373046875, "t": 396.3277587890625, "r": 544.253662109375, "b": 216.21173095703125, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 6, "kind": "table", "label": "table", "bbox": {"l": 187.1017303466797, "t": 518.6640625, "r": 394.65936279296875, "b": 402.0744323730469, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}, {"page": 8, "kind": "table", "label": "table", "bbox": {"l": 187.03213500976562, "t": 313.766357421875, "r": 393.7676696777344, "b": 208.6341552734375, "coord_origin": "BOTTOMLEFT"}, "text": "", "furniture": false}]} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/page_roles.json b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/page_roles.json new file mode 100644 index 0000000..679c016 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/page_roles.json @@ -0,0 +1,256 @@ +{ + "pages": { + "1": { + "role": "cover", + "chars": 883, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "2": { + "role": "question", + "chars": 351, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "3": { + "role": "question", + "chars": 680, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "4": { + "role": "question", + "chars": 284, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "5": { + "role": "question", + "chars": 753, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "6": { + "role": "question", + "chars": 560, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "7": { + "role": "blank", + "chars": 121, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "8": { + "role": "continuation", + "chars": 412, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "9": { + "role": "question", + "chars": 137, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "10": { + "role": "question", + "chars": 447, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "11": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "12": { + "role": "question", + "chars": 371, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "13": { + "role": "question", + "chars": 236, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "14": { + "role": "question", + "chars": 324, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "15": { + "role": "question", + "chars": 352, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "16": { + "role": "continuation", + "chars": 477, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "17": { + "role": "question", + "chars": 381, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "18": { + "role": "question", + "chars": 735, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "19": { + "role": "question", + "chars": 684, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "20": { + "role": "question", + "chars": 403, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "21": { + "role": "question", + "chars": 498, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "22": { + "role": "question", + "chars": 770, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "23": { + "role": "question", + "chars": 232, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "24": { + "role": "question", + "chars": 703, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "25": { + "role": "question", + "chars": 750, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "26": { + "role": "question", + "chars": 467, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "27": { + "role": "question", + "chars": 1647, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "28": { + "role": "question", + "chars": 780, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "29": { + "role": "question", + "chars": 744, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "30": { + "role": "question", + "chars": 808, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "31": { + "role": "question", + "chars": 1278, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "32": { + "role": "question", + "chars": 831, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "33": { + "role": "question", + "chars": 306, + "margins_enabled": true, + "source": "auto", + "confirmed": false + }, + "34": { + "role": "blank", + "chars": 125, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "35": { + "role": "blank", + "chars": 128, + "margins_enabled": false, + "source": "auto", + "confirmed": false + }, + "36": { + "role": "appendix", + "chars": 428, + "margins_enabled": true, + "source": "auto", + "confirmed": false + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/report.md b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/report.md new file mode 100644 index 0000000..a5d9401 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/report.md @@ -0,0 +1,16 @@ +# AQA A-level Physics 7408/1 2022 Jun (image-only OCR baseline) + +- **slug:** `b1-aqa-physics-7408-1-2022jun` · **board:** aqa · **level:** A-level · **path:** B1 image-only OCR (RapidOCR margin-pass) +- **questions/parts:** 27 / 47 +- **marks:** 76/85 (89.4% of official max) +- **coverage vs GT:** 88.7% (missed ['04.1', '04.4', '09.0', '10.0', '14.0', '19.0']) +- **G6 verdict:** warn +- **answer-region count:** 325 + +**Flags (human-review hints):** +- [warn] C1_marks_sum: marks sum 76 below official max 85 (-9) — missing parts or unread marks +- [warn] C3_question_seq: top-level questions [9, 10, 14, 19] missing between 1-31 — expected but unrecovered; surface as second-pass slots in the question tree +- [warn] C4_subpart_seq: sub-part gaps: Q04 missing ['4'] +- [warn] C5_coverage: 52.4% vs GT (22/42); missed ['04.1', '04.4', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3', '08.4', '08.5'] + +**Artifacts:** `structured.json`, `validate.json`, `furniture.json`, `bands.json`, `page_roles.json`, `template.json`, `overlays/` (0 images) diff --git a/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/structured.json b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/structured.json new file mode 100644 index 0000000..207b4f8 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/structured.json @@ -0,0 +1,5202 @@ +{ + "board": "aqa", + "paper_code": "7408/1", + "front_matter": { + "exam_board": "AQA", + "paper_code": "7408/1", + "qualification": "ALEVEL", + "subject": "Physics", + "time_allowed": "2 hours", + "max_marks": 85, + "session": "Jun 2022" + }, + "path": "aqa-docling+rapidocr (v1)", + "pages": [], + "questions": [ + { + "question": "01", + "parts": [ + { + "label": "01.1", + "page": 2, + "bbox": { + "l": 49.04734802246094, + "t": 673.0107116699219, + "r": 524.7220458984375, + "b": 630.1467895507812, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.2", + "page": 2, + "bbox": { + "l": 49.47016906738281, + "t": 495.61354573567706, + "r": 432.9696858723958, + "b": 476.51572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.3", + "page": 3, + "bbox": { + "l": 48.201700846354164, + "t": 471.42299397786456, + "r": 102.32291666666667, + "b": 455.29600016276044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.4", + "page": 4, + "bbox": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "01.5", + "page": 4, + "bbox": { + "l": 48.62452697753906, + "t": 478.63771565755206, + "r": 101.9000956217448, + "b": 462.51072184244794, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "02", + "parts": [ + { + "label": "02.1", + "page": 5, + "bbox": { + "l": 48.62452697753906, + "t": 729.0308736165365, + "r": 103.5913798014323, + "b": 713.3282470703125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.2", + "page": 5, + "bbox": { + "l": 48.201700846354164, + "t": 622.9320882161459, + "r": 105.2826639811198, + "b": 605.9562784830729, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "02.3", + "page": 6, + "bbox": { + "l": 49.04734802246094, + "t": 702.2939758300781, + "r": 102.32291666666667, + "b": 687.0157470703125, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": true, + "extended": false + }, + { + "label": "02.4", + "page": 6, + "bbox": { + "l": 48.201700846354164, + "t": 623.3564656575521, + "r": 104.01420084635417, + "b": 605.9562784830729, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "03", + "parts": [ + { + "label": "03.1", + "page": 9, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 105.2826639811198, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.2", + "page": 10, + "bbox": { + "l": 48.62452697753906, + "t": 510.8917643229167, + "r": 102.32291666666667, + "b": 494.76475016276044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.3", + "page": 10, + "bbox": { + "l": 49.89299011230469, + "t": 263.4693806966146, + "r": 101.9000956217448, + "b": 249.03993733723962, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.4", + "page": 12, + "bbox": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "03.5", + "page": 13, + "bbox": { + "l": 48.201700846354164, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 4, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "04", + "parts": [ + { + "label": "04.2", + "page": 14, + "bbox": { + "l": 49.47016906738281, + "t": 387.39276123046875, + "r": 104.43702189127605, + "b": 372.96331787109375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.3", + "page": 15, + "bbox": { + "l": 50.31581115722656, + "t": 487.55002848307294, + "r": 100.63162231445312, + "b": 474.39377848307294, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "04.5", + "page": 17, + "bbox": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "05", + "parts": [ + { + "label": "05.1", + "page": 18, + "bbox": { + "l": 50.31581115722656, + "t": 558.4240112304688, + "r": 100.63162231445312, + "b": 543.9945678710938, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.2", + "page": 19, + "bbox": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.3", + "page": 19, + "bbox": { + "l": 47.77887980143229, + "t": 507.49660237630206, + "r": 103.16855875651042, + "b": 491.36956787109375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.4", + "page": 20, + "bbox": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.5", + "page": 20, + "bbox": { + "l": 49.04734802246094, + "t": 574.1266276041667, + "r": 515.8427734375, + "b": 546.5409545898438, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "05.6", + "page": 21, + "bbox": { + "l": 49.89299011230469, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "06", + "parts": [ + { + "label": "06.1", + "page": 22, + "bbox": { + "l": 49.47016906738281, + "t": 496.03794352213544, + "r": 101.47727457682292, + "b": 481.60850016276044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.2", + "page": 23, + "bbox": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 105.2826639811198, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 2, + "regions": [], + "has_table": false, + "extended": false + }, + { + "label": "06.3", + "page": 23, + "bbox": { + "l": 49.89299011230469, + "t": 379.75364176432294, + "r": 101.054443359375, + "b": 365.32419840494794, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 3, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "07", + "parts": [ + { + "label": "07.0", + "page": 24, + "bbox": { + "l": 49.89299011230469, + "t": 461.66192626953125, + "r": 340.79449462890625, + "b": 446.38368733723956, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "08", + "parts": [ + { + "label": "08.0", + "page": 24, + "bbox": { + "l": 49.89299011230469, + "t": 280.0207722981771, + "r": 379.6941324869792, + "b": 265.59136962890625, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "11", + "parts": [ + { + "label": "11.0", + "page": 25, + "bbox": { + "l": 50.31581115722656, + "t": 358.53387451171875, + "r": 77.79924011230469, + "b": 346.65081787109375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "12", + "parts": [ + { + "label": "12.0", + "page": 26, + "bbox": { + "l": 49.04734802246094, + "t": 775.2899424235026, + "r": 229.16949462890625, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "13", + "parts": [ + { + "label": "13.0", + "page": 26, + "bbox": { + "l": 49.89299011230469, + "t": 594.0732014973959, + "r": 294.7069091796875, + "b": 579.2193806966145, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "15", + "parts": [ + { + "label": "15.0", + "page": 27, + "bbox": { + "l": 50.31581115722656, + "t": 774.441151936849, + "r": 79.06770833333333, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "16", + "parts": [ + { + "label": "16.0", + "page": 27, + "bbox": { + "l": 50.31581115722656, + "t": 560.9703776041667, + "r": 534.8697916666666, + "b": 533.809102376302, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "17", + "parts": [ + { + "label": "17.0", + "page": 27, + "bbox": { + "l": 49.47016906738281, + "t": 280.4451700846354, + "r": 79.91335042317708, + "b": 265.1669718424479, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "18", + "parts": [ + { + "label": "18.0", + "page": 28, + "bbox": { + "l": 50.31581115722656, + "t": 774.441151936849, + "r": 78.22206115722656, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "20", + "parts": [ + { + "label": "20.0", + "page": 28, + "bbox": { + "l": 48.62452697753906, + "t": 317.3675740559896, + "r": 333.18369547526044, + "b": 276.6256306966146, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "21", + "parts": [ + { + "label": "21.0", + "page": 29, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 478.2116292317708, + "b": 745.1578877766927, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "22", + "parts": [ + { + "label": "22.0", + "page": 29, + "bbox": { + "l": 48.201700846354164, + "t": 554.1800537109375, + "r": 466.3726399739583, + "b": 538.4774373372395, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "23", + "parts": [ + { + "label": "23.0", + "page": 30, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 475.6747233072917, + "b": 745.582285563151, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "24", + "parts": [ + { + "label": "24.0", + "page": 30, + "bbox": { + "l": 49.47016906738281, + "t": 554.1800537109375, + "r": 79.4905293782552, + "b": 540.175028483073, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "25", + "parts": [ + { + "label": "25.0", + "page": 31, + "bbox": { + "l": 47.77887980143229, + "t": 774.8655446370443, + "r": 497.2386067708333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "26", + "parts": [ + { + "label": "26.0", + "page": 31, + "bbox": { + "l": 48.201700846354164, + "t": 386.54396565755206, + "r": 79.91335042317708, + "b": 371.26572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "27", + "parts": [ + { + "label": "27.0", + "page": 32, + "bbox": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 505.695068359375, + "b": 721.3917541503906, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "28", + "parts": [ + { + "label": "28.0", + "page": 32, + "bbox": { + "l": 48.62452697753906, + "t": 516.4088948567708, + "r": 512.0373942057291, + "b": 489.24761962890625, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "29", + "parts": [ + { + "label": "29.0", + "page": 32, + "bbox": { + "l": 48.201700846354164, + "t": 268.5621134440104, + "r": 313.73388671875, + "b": 254.55706787109375, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "30", + "parts": [ + { + "label": "30.0", + "page": 33, + "bbox": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 79.06770833333333, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + }, + { + "question": "31", + "parts": [ + { + "label": "31.0", + "page": 33, + "bbox": { + "l": 48.201700846354164, + "t": 594.0732014973959, + "r": 532.7556559244791, + "b": 563.941141764323, + "coord_origin": "BOTTOMLEFT" + }, + "marks": 1, + "regions": [], + "has_table": false, + "extended": false + } + ] + } + ], + "regions": [ + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 40.59090677897135, + "t": 555.8776448567708, + "r": 146.7192179361979, + "b": 496.46230061848956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A-level PHYSICS" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 39.7452646891276, + "t": 483.73044840494794, + "r": 96.82623291015625, + "b": 464.63267008463544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Paper 1" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 396.30507405598956, + "r": 92.59801228841145, + "b": 383.57322184244794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Materials" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 367.87058512369794, + "r": 145.87357584635416, + "b": 356.83632405598956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a pencil and a ruler" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 355.56313069661456, + "r": 153.90719604492188, + "b": 343.68007405598956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a scientific calculator" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 341.98248291015625, + "r": 195.76656087239584, + "b": 329.6750284830729, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a Data and Formulae Booklet" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 327.9774373372396, + "r": 111.20217895507812, + "b": 316.0943806966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7a protractor." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.899620056152344, + "t": 305.90887451171875, + "r": 108.66524251302083, + "b": 294.4502156575521, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Instructions" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 292.3282267252604, + "r": 230.86079915364584, + "b": 279.1719767252604, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Use black ink or black ball-point pen." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 279.59637451171875, + "r": 239.31722005208334, + "b": 264.7425740559896, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Fill in the boxes at the top of this page." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.7452646891276, + "t": 264.31817626953125, + "r": 157.71259562174478, + "b": 252.85947672526038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7Answer all questions." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 251.58632405598962, + "r": 386.0364583333333, + "b": 225.27382405598962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You must answer the questions in the spaces provided. Do not write outside the b" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 225.27382405598962, + "r": 424.5132649739583, + "b": 198.96132405598962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "If you need extra space for your answer(s), use the lined pages at the end of th" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 402.1036783854167, + "t": 427.28590901692706, + "r": 545.0174967447916, + "b": 412.43206787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Time allowed: 2 hours" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 198.53692626953125, + "r": 402.9493408203125, + "b": 173.92197672526038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Do all rough work in this book. Cross through any work you do not want to be mar" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 171.80002848307288, + "r": 161.51798502604166, + "b": 159.06817626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Show all your working." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 1, + "bbox": { + "l": 38.053975423177086, + "t": 151.00461832682288, + "r": 106.12831624348958, + "b": 136.99965413411462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Information" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 38.47679901123047, + "t": 135.72646077473962, + "r": 282.02223714192706, + "b": 123.41900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The marks for questions are shown in brackets." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 122.14581298828125, + "r": 245.23673502604166, + "b": 109.83835856119788, + "coord_origin": "BOTTOMLEFT" + }, + "text": "The maximum mark for this paper is 85." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 41.859375, + "t": 108.56516520182288, + "r": 369.54638671875, + "b": 96.25771077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "You are expected touse a scientificcalculatorwhere appropriate." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 1, + "bbox": { + "l": 39.32244110107422, + "t": 94.98451741536462, + "r": 337.41192626953125, + "b": 83.95025634765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00b7ADataandFormulaeBookletisprovidedasalooseinsert." + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 316.2708333333333, + "t": 22.83730061848962, + "r": 367.8551025390625, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/E12" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 1, + "bbox": { + "l": 480.7485758463542, + "t": 34.72035725911462, + "r": 545.8631591796875, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 2, + "bbox": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 2, + "bbox": { + "l": 263.41807047526044, + "t": 776.5631256103516, + "r": 316.2708333333333, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Section A" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 2, + "bbox": { + "l": 49.04734802246094, + "t": 673.0107116699219, + "r": 524.7220458984375, + "b": 630.1467895507812, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01.1 An atom of fHe is produced in a rock that contains uranium. It is produced " + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 2, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 3, + "bbox": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.015625, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 3, + "bbox": { + "l": 267.64630126953125, + "t": 692.5328877766927, + "r": 314.15671793619794, + "b": 676.4058736165365, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 1" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 3, + "bbox": { + "l": 187.73295084635416, + "t": 117.90183512369788, + "r": 390.6875, + "b": 103.89678955078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Question1continuesonthenextpage" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 3, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 4, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 5, + "bbox": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 5, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 6, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 6, + "bbox": { + "l": 270.1832275390625, + "t": 543.1457926432292, + "r": 310.77414957682294, + "b": 531.262715657552, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 6, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 7, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 8, + "bbox": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 8, + "bbox": { + "l": 267.64630126953125, + "t": 747.2798563639323, + "r": 314.15671793619794, + "b": 732.426035563151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 3" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 8, + "bbox": { + "l": 270.60605875651044, + "t": 340.28489176432294, + "r": 311.19696044921875, + "b": 328.4018351236979, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Table 2" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 8, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 9, + "bbox": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 9, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 10, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 10, + "bbox": { + "l": 115.43039957682292, + "t": 772.3191782633463, + "r": 427.8958333333333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4 shows the pulley arrangement when the gate is closed." + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 10, + "bbox": { + "l": 267.64630126953125, + "t": 748.128651936849, + "r": 314.57952880859375, + "b": 732.0016377766927, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 4" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 10, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 11, + "bbox": { + "l": 282.86789957682294, + "t": 813.0611114501953, + "r": 294.7069091796875, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 11, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 12, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 12, + "bbox": { + "l": 268.06911214192706, + "t": 693.3816731770834, + "r": 314.15671793619794, + "b": 678.527842203776, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 5" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 12, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 13, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 13, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 14, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "14" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 14, + "bbox": { + "l": 267.64630126953125, + "t": 747.7042541503906, + "r": 314.57952880859375, + "b": 731.5772399902344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 6" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 14, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 15, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 297.24383544921875, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "15" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 15, + "bbox": { + "l": 267.64630126953125, + "t": 737.0943806966146, + "r": 314.15671793619794, + "b": 722.6649373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 15, + "bbox": { + "l": 267.64630126953125, + "t": 737.0943806966146, + "r": 314.15671793619794, + "b": 722.6649373372396, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 7" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 15, + "bbox": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 16, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 16, + "bbox": { + "l": 267.64630126953125, + "t": 734.5480041503906, + "r": 314.57952880859375, + "b": 718.4209899902344, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 8" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 16, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 17, + "bbox": { + "l": 283.7135416666667, + "t": 811.3635304768881, + "r": 295.55255126953125, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "17" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 17, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 18, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 18, + "bbox": { + "l": 268.06911214192706, + "t": 709.0842997233073, + "r": 313.73388671875, + "b": 694.6548563639323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 9" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 18, + "bbox": { + "l": 268.06911214192706, + "t": 709.0842997233073, + "r": 313.73388671875, + "b": 694.6548563639323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 9" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 18, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 19, + "bbox": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "19" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 19, + "bbox": { + "l": 265.109375, + "t": 692.5328877766927, + "r": 315.84800211588544, + "b": 677.6790568033854, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 19, + "bbox": { + "l": 265.109375, + "t": 692.5328877766927, + "r": 315.84800211588544, + "b": 677.6790568033854, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 10" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 19, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 20, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 20, + "bbox": { + "l": 49.04734802246094, + "t": 574.1266276041667, + "r": 515.8427734375, + "b": 546.5409545898438, + "coord_origin": "BOTTOMLEFT" + }, + "text": "05.5 The teacher adjusts the angular speed of the turntable so that the block co" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 20, + "bbox": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 21, + "bbox": { + "l": 265.109375, + "t": 721.816151936849, + "r": 316.2708333333333, + "b": 707.38671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 11" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 21, + "bbox": { + "l": 552.6282958984375, + "t": 273.65484619140625, + "r": 567.8498942057291, + "b": 261.3473917643229, + "coord_origin": "BOTTOMLEFT" + }, + "text": "11" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 21, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 22, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 22, + "bbox": { + "l": 264.68654378255206, + "t": 710.3574829101562, + "r": 316.2708333333333, + "b": 695.9280497233073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 12" + }, + { + "type": "context_caption", + "docling_label": "caption", + "page": 22, + "bbox": { + "l": 264.68654378255206, + "t": 710.3574829101562, + "r": 316.2708333333333, + "b": 695.9280497233073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Figure 12" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 22, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 23, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 23, + "bbox": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 24, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 24, + "bbox": { + "l": 263.41807047526044, + "t": 776.1387329101562, + "r": 316.2708333333333, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Section B" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 91.75236002604167, + "t": 412.43206787109375, + "r": 254.538818359375, + "b": 399.27581787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A kinetic energy and momentum" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 91.75236002604167, + "t": 383.57322184244794, + "r": 276.1027425130208, + "b": 370.84136962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B kinetic energy and Young modulus" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 92.17519124348958, + "t": 355.13873291015625, + "r": 296.82102457682294, + "b": 342.83127848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C work done and the moment of a couple" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 24, + "bbox": { + "l": 91.75236002604167, + "t": 327.55303955078125, + "r": 225.36409505208334, + "b": 313.9723917643229, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Dwork done and pressure" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 49.89299011230469, + "t": 280.0207722981771, + "r": 379.6941324869792, + "b": 265.59136962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "08 Which gives Sl prefixes in descending order of magnitude?" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 90.90671793619792, + "t": 232.48854573567712, + "r": 145.87357584635416, + "b": 216.78590901692712, + "coord_origin": "BOTTOMLEFT" + }, + "text": "AGpm" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 91.3295389811198, + "t": 197.68813069661462, + "r": 147.56486002604166, + "b": 184.95627848307288, + "coord_origin": "BOTTOMLEFT" + }, + "text": "BMGn" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 91.3295389811198, + "t": 163.73651123046875, + "r": 142.06817626953125, + "b": 148.88271077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "cmn\u03bc" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 24, + "bbox": { + "l": 91.3295389811198, + "t": 125.96531168619788, + "r": 142.06817626953125, + "b": 113.23345947265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Dm\u03bcp" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 24, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 25, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 25, + "bbox": { + "l": 90.90671793619792, + "t": 701.0207926432291, + "r": 133.18891398111978, + "b": 686.5913492838541, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 104 J" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 25, + "bbox": { + "l": 90.48389689127605, + "t": 672.1619160970052, + "r": 133.61173502604166, + "b": 658.5812784830729, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 10\u00b0 J" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 25, + "bbox": { + "l": 90.48389689127605, + "t": 644.5762329101562, + "r": 133.61173502604166, + "b": 630.1467895507812, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 108 J" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 25, + "bbox": { + "l": 90.48389689127605, + "t": 476.09136962890625, + "r": 185.61883544921875, + "b": 461.23752848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 5.2 \u00d7 107 C kg-1" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 25, + "bbox": { + "l": 91.75236002604167, + "t": 441.71535237630206, + "r": 184.773193359375, + "b": 427.28590901692706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 8.3 \u00d7 107 C kg-1" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 25, + "bbox": { + "l": 90.06107584635417, + "t": 408.18813069661456, + "r": 186.04166666666666, + "b": 392.90989176432294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 2.1 \u00d7 10* C kg-l" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 25, + "bbox": { + "l": 90.90671793619792, + "t": 701.0207926432291, + "r": 133.18891398111978, + "b": 686.5913492838541, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 104 J" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 25, + "bbox": { + "l": 90.48389689127605, + "t": 672.1619160970052, + "r": 133.61173502604166, + "b": 658.5812784830729, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 10\u00b0 J" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 25, + "bbox": { + "l": 90.48389689127605, + "t": 644.5762329101562, + "r": 133.61173502604166, + "b": 630.1467895507812, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 108 J" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 25, + "bbox": { + "l": 90.48389689127605, + "t": 476.09136962890625, + "r": 185.61883544921875, + "b": 461.23752848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 5.2 \u00d7 107 C kg-1" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 25, + "bbox": { + "l": 91.75236002604167, + "t": 441.71535237630206, + "r": 184.773193359375, + "b": 427.28590901692706, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 8.3 \u00d7 107 C kg-1" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 25, + "bbox": { + "l": 90.06107584635417, + "t": 408.18813069661456, + "r": 186.04166666666666, + "b": 392.90989176432294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 2.1 \u00d7 10* C kg-l" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 539.0979817708334, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Turn over" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 25, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 26, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "26" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 26, + "bbox": { + "l": 91.75236002604167, + "t": 726.4844970703125, + "r": 266.8006591796875, + "b": 712.9038492838541, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A All strange particles are mesons." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 26, + "bbox": { + "l": 91.75236002604167, + "t": 697.2012329101562, + "r": 325.9957275390625, + "b": 684.8937683105469, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B Strange particles are always created in pairs." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 26, + "bbox": { + "l": 91.75236002604167, + "t": 669.6155395507812, + "r": 358.1302083333333, + "b": 656.4592895507812, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C Strangeness can only change in strong interactions." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 26, + "bbox": { + "l": 92.17519124348958, + "t": 640.7566731770834, + "r": 327.68701171875, + "b": 628.0248209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D Strangeness can only have a value of 0 or -1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 26, + "bbox": { + "l": 49.89299011230469, + "t": 594.0732014973959, + "r": 294.7069091796875, + "b": 579.2193806966145, + "coord_origin": "BOTTOMLEFT" + }, + "text": "13 Which combination of quarks is possible?" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 26, + "bbox": { + "l": 91.3295389811198, + "t": 460.38873291015625, + "r": 120.08144124348958, + "b": 448.08127848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Dud" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 26, + "bbox": { + "l": 90.90671793619792, + "t": 412.43206787109375, + "r": 317.11647542317706, + "b": 397.57822672526044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "In photoelectricity, Vs is the stopping potential." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 26, + "bbox": { + "l": 91.75236002604167, + "t": 337.73854573567706, + "r": 246.0823771158854, + "b": 324.5822957356771, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A energy of an incident photon" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 26, + "bbox": { + "l": 91.3295389811198, + "t": 309.72845458984375, + "r": 316.6936442057292, + "b": 295.7234090169271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B maximum kinetic energy of a photoelectron" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 26, + "bbox": { + "l": 91.3295389811198, + "t": 281.7183634440104, + "r": 313.73388671875, + "b": 266.8645222981771, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C threshold frequency \u00d7 the Planck constant" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 26, + "bbox": { + "l": 91.3295389811198, + "t": 252.85947672526038, + "r": 172.5113525390625, + "b": 239.27886962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D work function" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 26, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 27, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 50.31581115722656, + "t": 560.9703776041667, + "r": 534.8697916666666, + "b": 533.809102376302, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16 Which row gives evidence for the wave nature of electrons and evidence for th" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 91.3295389811198, + "t": 231.21535237630212, + "r": 278.21685791015625, + "b": 218.90789794921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A an electron moving at 4 \u00d7 103 m s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 90.48389689127605, + "t": 203.62965901692712, + "r": 265.109375, + "b": 189.62461344401038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B a proton moving at 4 \u00d7 103 m s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 90.90671793619792, + "t": 175.19517008463538, + "r": 277.7940266927083, + "b": 161.61452229817712, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C an electron moving at 8 \u00d7 10' m s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 90.90671793619792, + "t": 146.76072184244788, + "r": 264.68654378255206, + "b": 133.18007405598962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D a proton moving at 8 \u00d7 102 m s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 50.31581115722656, + "t": 560.9703776041667, + "r": 534.8697916666666, + "b": 533.809102376302, + "coord_origin": "BOTTOMLEFT" + }, + "text": "16 Which row gives evidence for the wave nature of electrons and evidence for th" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 91.3295389811198, + "t": 231.21535237630212, + "r": 278.21685791015625, + "b": 218.90789794921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A an electron moving at 4 \u00d7 103 m s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 90.48389689127605, + "t": 203.62965901692712, + "r": 265.109375, + "b": 189.62461344401038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B a proton moving at 4 \u00d7 103 m s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 90.90671793619792, + "t": 175.19517008463538, + "r": 277.7940266927083, + "b": 161.61452229817712, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C an electron moving at 8 \u00d7 10' m s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 27, + "bbox": { + "l": 90.90671793619792, + "t": 146.76072184244788, + "r": 264.68654378255206, + "b": 133.18007405598962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D a proton moving at 8 \u00d7 102 m s-1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 27, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 28, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 50.31581115722656, + "t": 774.441151936849, + "r": 78.22206115722656, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "18" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 90.90671793619792, + "t": 773.5923614501953, + "r": 419.4393717447917, + "b": 744.309092203776, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A longitudinal wave of frequency 660 Hz travels through a medium. The wave speed" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_selected", + "page": 28, + "bbox": { + "l": 91.3295389811198, + "t": 685.7425638834635, + "r": 289.63303629557294, + "b": 672.1619160970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A It is travelling at a speed of 330 m s-1." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 28, + "bbox": { + "l": 91.75236002604167, + "t": 628.8736165364584, + "r": 300.20359293619794, + "b": 615.29296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C It oscillates with a time period of 1.5 ms." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 91.75236002604167, + "t": 600.0147298177084, + "r": 324.304443359375, + "b": 586.8584798177084, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D It changes direction 660 times every second." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 61.309183756510414, + "t": 552.058085123698, + "r": 433.3924967447917, + "b": 537.2042643229167, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9 The frequency of the first harmonic of a standing wave on a string is f." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_selected", + "page": 28, + "bbox": { + "l": 90.90671793619792, + "t": 449.77886962890625, + "r": 126.84658813476562, + "b": 436.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A first" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_selected", + "page": 28, + "bbox": { + "l": 91.3295389811198, + "t": 421.34438069661456, + "r": 143.33663940429688, + "b": 408.61252848307294, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B second" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_selected", + "page": 28, + "bbox": { + "l": 91.75236002604167, + "t": 392.48549397786456, + "r": 129.38351440429688, + "b": 380.60243733723956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C third" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 28, + "bbox": { + "l": 91.75236002604167, + "t": 364.89980061848956, + "r": 135.7258504231771, + "b": 351.74355061848956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D fourth" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 48.62452697753906, + "t": 317.3675740559896, + "r": 333.18369547526044, + "b": 276.6256306966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "20 The distance from the slits to the screen is 1.5 m. The width of ten fringes " + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 28, + "bbox": { + "l": 91.3295389811198, + "t": 316.94317626953125, + "r": 466.3726399739583, + "b": 302.9381306966146, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Light of wavelength 5.2 \u00d7 10-7 m is used in a Young's double-slit experiment." + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 28, + "bbox": { + "l": 91.75236002604167, + "t": 189.20021565755212, + "r": 168.28314208984375, + "b": 176.46836344401038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 9.9 \u00d7 10-5 m" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_unselected", + "page": 28, + "bbox": { + "l": 91.3295389811198, + "t": 161.61452229817712, + "r": 168.70596313476562, + "b": 147.60951741536462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 1.1 \u00d7 10-4 m" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 28, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 29, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "29" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 478.2116292317708, + "b": 745.1578877766927, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plan" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 685.3181660970052, + "r": 115.007568359375, + "b": 673.0107116699219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A4" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 657.3080851236979, + "r": 114.58474731445312, + "b": 644.5762329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B5" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 90.90671793619792, + "t": 630.1467895507812, + "r": 115.007568359375, + "b": 615.29296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c8" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 92.59801228841145, + "t": 600.0147298177084, + "r": 114.58474731445312, + "b": 588.5560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 9" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 48.201700846354164, + "t": 554.1800537109375, + "r": 466.3726399739583, + "b": 538.4774373372395, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of nort" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 350.89479573567706, + "r": 144.60511271158853, + "b": 338.16294352213544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 270 km" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 90.90671793619792, + "t": 323.3091023763021, + "r": 144.18229166666666, + "b": 309.72845458984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 470 km" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.75236002604167, + "t": 294.02581787109375, + "r": 144.18229166666666, + "b": 281.2939656575521, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 510 km" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 266.44012451171875, + "r": 144.18229166666666, + "b": 252.43511962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 540 km" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 478.2116292317708, + "b": 745.1578877766927, + "coord_origin": "BOTTOMLEFT" + }, + "text": "21 Monochromatic light of wavelength 5.8 \u00d7 10-7 m is incident normally on a plan" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 685.3181660970052, + "r": 115.007568359375, + "b": 673.0107116699219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A4" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 657.3080851236979, + "r": 114.58474731445312, + "b": 644.5762329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B5" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 90.90671793619792, + "t": 630.1467895507812, + "r": 115.007568359375, + "b": 615.29296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c8" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 92.59801228841145, + "t": 600.0147298177084, + "r": 114.58474731445312, + "b": 588.5560709635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 9" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 48.201700846354164, + "t": 554.1800537109375, + "r": 466.3726399739583, + "b": 538.4774373372395, + "coord_origin": "BOTTOMLEFT" + }, + "text": "22 An aeroplane flies horizontally at 150 m s-1 along a bearing 60\u00b0 east of nort" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 350.89479573567706, + "r": 144.60511271158853, + "b": 338.16294352213544, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 270 km" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 90.90671793619792, + "t": 323.3091023763021, + "r": 144.18229166666666, + "b": 309.72845458984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 470 km" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.75236002604167, + "t": 294.02581787109375, + "r": 144.18229166666666, + "b": 281.2939656575521, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 510 km" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 29, + "bbox": { + "l": 91.3295389811198, + "t": 266.44012451171875, + "r": 144.18229166666666, + "b": 252.43511962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 540 km" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 29, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 30, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "30" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 475.6747233072917, + "b": 745.582285563151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23 A ball is thrown vertically upwards and returns to its original position 2.4 " + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 90.90671793619792, + "t": 687.0157470703125, + "r": 135.7258504231771, + "b": 673.4350992838541, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 5.9 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 90.90671793619792, + "t": 658.5812784830729, + "r": 135.7258504231771, + "b": 644.5762329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 7.1 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.3295389811198, + "t": 630.5711873372396, + "r": 132.7660929361979, + "b": 616.1417643229166, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c 14 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.3295389811198, + "t": 601.7123209635416, + "r": 132.34327189127603, + "b": 587.707275390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 28 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 49.47016906738281, + "t": 554.1800537109375, + "r": 79.4905293782552, + "b": 540.175028483073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 90.90671793619792, + "t": 552.9068806966145, + "r": 504.8494059244792, + "b": 512.1649373372395, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal " + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.3295389811198, + "t": 392.06109619140625, + "r": 143.75947062174478, + "b": 379.32924397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 3000 N" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.75236002604167, + "t": 363.20225016276044, + "r": 143.33663940429688, + "b": 351.74355061848956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 4100N" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 93.86647542317708, + "t": 333.49456787109375, + "r": 101.47727457682292, + "b": 325.0066935221354, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 104.85984293619792, + "t": 334.76776123046875, + "r": 143.33663940429688, + "b": 323.3091023763021, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7800N" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 93.02083333333333, + "t": 306.3332722981771, + "r": 143.75947062174478, + "b": 294.8746134440104, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 8900N" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 475.6747233072917, + "b": 745.582285563151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "23 A ball is thrown vertically upwards and returns to its original position 2.4 " + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 90.90671793619792, + "t": 687.0157470703125, + "r": 135.7258504231771, + "b": 673.4350992838541, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 5.9 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 90.90671793619792, + "t": 658.5812784830729, + "r": 135.7258504231771, + "b": 644.5762329101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 7.1 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.3295389811198, + "t": 630.5711873372396, + "r": 132.7660929361979, + "b": 616.1417643229166, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c 14 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.3295389811198, + "t": 601.7123209635416, + "r": 132.34327189127603, + "b": 587.707275390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 28 m" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 49.47016906738281, + "t": 554.1800537109375, + "r": 79.4905293782552, + "b": 540.175028483073, + "coord_origin": "BOTTOMLEFT" + }, + "text": "24" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 90.90671793619792, + "t": 552.9068806966145, + "r": 504.8494059244792, + "b": 512.1649373372395, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A truck of mass 2.1 x 103 kg tows a car of mass 1.3 x 103 kg along a horizontal " + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.3295389811198, + "t": 392.06109619140625, + "r": 143.75947062174478, + "b": 379.32924397786456, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 3000 N" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 91.75236002604167, + "t": 363.20225016276044, + "r": 143.33663940429688, + "b": 351.74355061848956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 4100N" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 93.86647542317708, + "t": 333.49456787109375, + "r": 101.47727457682292, + "b": 325.0066935221354, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 104.85984293619792, + "t": 334.76776123046875, + "r": 143.33663940429688, + "b": 323.3091023763021, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7800N" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 30, + "bbox": { + "l": 93.02083333333333, + "t": 306.3332722981771, + "r": 143.75947062174478, + "b": 294.8746134440104, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D 8900N" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 30, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 31, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "31" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 47.77887980143229, + "t": 774.8655446370443, + "r": 497.2386067708333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25 A parachutist descends to the ground at a constant speed with the parachute o" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.75236002604167, + "t": 518.106465657552, + "r": 324.304443359375, + "b": 504.95021565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A the drag force on the parachutist from the air" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 489.67197672526044, + "r": 308.6600341796875, + "b": 476.51572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B the tension in the strings of the parachute" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 93.02083333333333, + "t": 460.81313069661456, + "r": 362.3583984375, + "b": 448.50567626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cthe gravitational force of theparachutist on the Earth" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.75236002604167, + "t": 433.22743733723956, + "r": 308.23720296223956, + "b": 420.49558512369794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Dthe lift force on the parachute from the air" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 273.2304484049479, + "r": 154.33001708984375, + "b": 259.6498006184896, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 0.040 N s" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 244.79600016276038, + "r": 154.33001708984375, + "b": 231.21535237630212, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 0.075 N s" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 216.36151123046875, + "r": 154.33001708984375, + "b": 202.78086344401038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 0.215N s" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 92.17519124348958, + "t": 186.65386962890625, + "r": 153.90719604492188, + "b": 175.19517008463538, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D0.614N s" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 47.77887980143229, + "t": 774.8655446370443, + "r": 497.2386067708333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "25 A parachutist descends to the ground at a constant speed with the parachute o" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.75236002604167, + "t": 518.106465657552, + "r": 324.304443359375, + "b": 504.95021565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A the drag force on the parachutist from the air" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 489.67197672526044, + "r": 308.6600341796875, + "b": 476.51572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B the tension in the strings of the parachute" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 93.02083333333333, + "t": 460.81313069661456, + "r": 362.3583984375, + "b": 448.50567626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cthe gravitational force of theparachutist on the Earth" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.75236002604167, + "t": 433.22743733723956, + "r": 308.23720296223956, + "b": 420.49558512369794, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Dthe lift force on the parachute from the air" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 273.2304484049479, + "r": 154.33001708984375, + "b": 259.6498006184896, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 0.040 N s" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 244.79600016276038, + "r": 154.33001708984375, + "b": 231.21535237630212, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 0.075 N s" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 91.3295389811198, + "t": 216.36151123046875, + "r": 154.33001708984375, + "b": 202.78086344401038, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 0.215N s" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 31, + "bbox": { + "l": 92.17519124348958, + "t": 186.65386962890625, + "r": 153.90719604492188, + "b": 175.19517008463538, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D0.614N s" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 31, + "bbox": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 538.6751708984375, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Turn over" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 31, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 32, + "bbox": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "32" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 505.695068359375, + "b": 721.3917541503906, + "coord_origin": "BOTTOMLEFT" + }, + "text": "27 A mass M is suspended from a spring. When the mass is at rest at the equilibr" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 90.90671793619792, + "t": 592.8000284830729, + "r": 121.77272542317708, + "b": 578.370585123698, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 4E" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 91.3295389811198, + "t": 563.0923665364583, + "r": 121.77272542317708, + "b": 550.784891764323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D9E" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 48.62452697753906, + "t": 516.4088948567708, + "r": 512.0373942057291, + "b": 489.24761962890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "28 Two wires P and Q are made of the same material and have the same cross-secti" + }, + { + "type": "mcq_option", + "docling_label": "checkbox_selected", + "page": 32, + "bbox": { + "l": 91.75236002604167, + "t": 403.09539794921875, + "r": 344.5998942057292, + "b": 389.93914794921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "AThe stress in P and the stress in Q are the same." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 91.75236002604167, + "t": 375.08530680338544, + "r": 228.3238525390625, + "b": 361.08026123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B The extension of Q is 2x." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 92.17519124348958, + "t": 347.07521565755206, + "r": 300.20359293619794, + "b": 333.91896565755206, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C The strain of Q is double the strain of P." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 90.90671793619792, + "t": 324.15789794921875, + "r": 313.73388671875, + "b": 295.29901123046875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "stress D The value of for P is half that of Q. strain" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 48.201700846354164, + "t": 268.5621134440104, + "r": 313.73388671875, + "b": 254.55706787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "29 The current in a metallic conductor is 1.5 mA." + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 90.90671793619792, + "t": 194.29294840494788, + "r": 156.44412231445312, + "b": 181.98549397786462, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 1.1 \u00d7 1018" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 32, + "bbox": { + "l": 90.06107584635417, + "t": 137.42397054036462, + "r": 157.28976440429688, + "b": 125.54091389973962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 1.4 \u00d7 1020" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 32, + "bbox": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 33, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "33" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 93.02083333333333, + "t": 695.503651936849, + "r": 101.9000956217448, + "b": 686.1669616699219, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 97.671875, + "t": 696.3524373372396, + "r": 135.30302937825522, + "b": 684.8937683105469, + "coord_origin": "BOTTOMLEFT" + }, + "text": "36.7Q" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 91.75236002604167, + "t": 639.9078776041666, + "r": 132.34327189127603, + "b": 628.0248209635416, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D25Q" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 48.201700846354164, + "t": 594.0732014973959, + "r": 532.7556559244791, + "b": 563.941141764323, + "coord_origin": "BOTTOMLEFT" + }, + "text": "31 A particle performs simple harmonic motion with a time period of 1.4 s and an" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 90.90671793619792, + "t": 505.37461344401044, + "r": 160.6723429361979, + "b": 492.21836344401044, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A 8.6 mm s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 90.90671793619792, + "t": 476.94012451171875, + "r": 158.13541666666666, + "b": 463.78387451171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B 27 mm s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 91.3295389811198, + "t": 448.08127848307294, + "r": 158.13541666666666, + "b": 435.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C 54 mm s-1" + }, + { + "type": "instruction", + "docling_label": "list_item", + "page": 33, + "bbox": { + "l": 90.90671793619792, + "t": 419.64678955078125, + "r": 164.05492146809897, + "b": 406.91493733723956, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D110 mm s-1" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 33, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 34, + "bbox": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "34" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 34, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 35, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "text": "35" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 35, + "bbox": { + "l": 541.6349283854166, + "t": 788.8705851236979, + "r": 580.5345458984375, + "b": 762.9824829101562, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 35, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 36, + "bbox": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "text": "36" + }, + { + "type": "furniture", + "docling_label": "page_header", + "page": 36, + "bbox": { + "l": 545.4403076171875, + "t": 789.2949829101562, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Donotwrite outsidethe box" + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 36, + "bbox": { + "l": 184.773193359375, + "t": 771.0459899902344, + "r": 443.9630533854167, + "b": 746.0066731770834, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Additional page, if required. Writethequestionnumbers inthe left-handmargin." + }, + { + "type": "heading", + "docling_label": "section_header", + "page": 36, + "bbox": { + "l": 106.12831624348958, + "t": 195.99053955078125, + "r": 187.73295084635416, + "b": 184.10748291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Copyrightinformation" + }, + { + "type": "furniture", + "docling_label": "page_footer", + "page": 36, + "bbox": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "text": "IB/M/Jun22/7408/1" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 38.04322052001953, + "t": 798.1278953552246, + "r": 168.16883850097656, + "b": 750.7074356079102, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 1, + "bbox": { + "l": 41.55791091918945, + "t": 53.442626953125, + "r": 232.80886840820312, + "b": 17.564697265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 2, + "bbox": { + "l": 43.716583251953125, + "t": 53.1287841796875, + "r": 99.12460327148438, + "b": 17.388427734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 90.66405487060547, + "t": 665.022216796875, + "r": 488.1374206542969, + "b": 485.4034423828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 3, + "bbox": { + "l": 43.73481750488281, + "t": 53.125244140625, + "r": 99.09122467041016, + "b": 17.48345947265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 4, + "bbox": { + "l": 43.870540618896484, + "t": 53.111572265625, + "r": 99.27579498291016, + "b": 17.62060546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 39.981536865234375, + "t": 787.2447891235352, + "r": 539.0674438476562, + "b": 75.93817138671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 5, + "bbox": { + "l": 43.70866394042969, + "t": 53.13214111328125, + "r": 99.10891723632812, + "b": 17.50592041015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 43.68804931640625, + "t": 53.1361083984375, + "r": 99.04960632324219, + "b": 17.542236328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 6, + "bbox": { + "l": 543.333251953125, + "t": 131.81103515625, + "r": 576.0045166015625, + "b": 90.12890625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 39.12006378173828, + "t": 789.1430397033691, + "r": 540.823486328125, + "b": 73.801025390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 7, + "bbox": { + "l": 43.57811737060547, + "t": 53.12103271484375, + "r": 99.4864501953125, + "b": 17.18914794921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 43.677764892578125, + "t": 53.17633056640625, + "r": 98.9754867553711, + "b": 17.55694580078125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 8, + "bbox": { + "l": 154.61647033691406, + "t": 721.9823760986328, + "r": 426.1144104003906, + "b": 525.6509094238281, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 9, + "bbox": { + "l": 43.875328063964844, + "t": 53.1292724609375, + "r": 99.22415161132812, + "b": 17.6796875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 201.8160858154297, + "t": 721.8503341674805, + "r": 379.07684326171875, + "b": 577.6731567382812, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 10, + "bbox": { + "l": 43.6340446472168, + "t": 53.21136474609375, + "r": 99.11817169189453, + "b": 17.56353759765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 39.06216812133789, + "t": 789.459171295166, + "r": 539.8710327148438, + "b": 74.51080322265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 11, + "bbox": { + "l": 43.61802291870117, + "t": 53.09515380859375, + "r": 99.53155517578125, + "b": 17.68267822265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 43.67570877075195, + "t": 53.21282958984375, + "r": 99.15630340576172, + "b": 17.2843017578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 12, + "bbox": { + "l": 129.14149475097656, + "t": 667.7611541748047, + "r": 450.1310119628906, + "b": 488.6637878417969, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 43.817195892333984, + "t": 53.1468505859375, + "r": 99.11898803710938, + "b": 17.54583740234375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 13, + "bbox": { + "l": 543.3595581054688, + "t": 479.41790771484375, + "r": 575.8417358398438, + "b": 438.40252685546875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 218.50071716308594, + "t": 722.6109161376953, + "r": 361.83538818359375, + "b": 524.9989624023438, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 14, + "bbox": { + "l": 43.73312759399414, + "t": 53.191162109375, + "r": 99.1208724975586, + "b": 17.85943603515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 43.66131591796875, + "t": 53.1983642578125, + "r": 99.0597152709961, + "b": 17.4285888671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 15, + "bbox": { + "l": 218.16305541992188, + "t": 735.5035705566406, + "r": 361.9599609375, + "b": 514.8138427734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 45.604835510253906, + "t": 776.7489929199219, + "r": 106.06902313232422, + "b": 758.4946517944336, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 43.60740280151367, + "t": 53.19488525390625, + "r": 99.07420349121094, + "b": 17.50262451171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 16, + "bbox": { + "l": 92.74071502685547, + "t": 705.5439300537109, + "r": 462.9246520996094, + "b": 567.9103393554688, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 17, + "bbox": { + "l": 43.799156188964844, + "t": 53.12493896484375, + "r": 99.204345703125, + "b": 17.88525390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 39.5291862487793, + "t": 788.0014839172363, + "r": 539.2009887695312, + "b": 75.4483642578125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 18, + "bbox": { + "l": 43.65611267089844, + "t": 53.18243408203125, + "r": 99.09671783447266, + "b": 17.6627197265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 39.92436981201172, + "t": 788.666690826416, + "r": 539.1596069335938, + "b": 76.3265380859375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 19, + "bbox": { + "l": 43.8003044128418, + "t": 53.18994140625, + "r": 99.22151947021484, + "b": 17.74847412109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 20, + "bbox": { + "l": 43.74028778076172, + "t": 53.14093017578125, + "r": 99.16525268554688, + "b": 17.38323974609375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 45.541805267333984, + "t": 776.4457015991211, + "r": 105.7479248046875, + "b": 758.8275680541992, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 43.686729431152344, + "t": 53.1051025390625, + "r": 99.13709259033203, + "b": 17.62286376953125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 21, + "bbox": { + "l": 148.14927673339844, + "t": 696.1988983154297, + "r": 432.6424560546875, + "b": 517.8292236328125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 39.35024642944336, + "t": 787.4561538696289, + "r": 539.5936889648438, + "b": 75.9244384765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 22, + "bbox": { + "l": 43.74589157104492, + "t": 53.1539306640625, + "r": 99.09431457519531, + "b": 17.24566650390625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 23, + "bbox": { + "l": 43.82809066772461, + "t": 53.14093017578125, + "r": 99.1424560546875, + "b": 17.41925048828125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 103.25153350830078, + "t": 561.8157043457031, + "r": 130.67306518554688, + "b": 540.962646484375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 474.3487548828125, + "t": 605.8225555419922, + "r": 500.7398681640625, + "b": 586.4608612060547, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 24, + "bbox": { + "l": 43.664512634277344, + "t": 53.15869140625, + "r": 99.07539367675781, + "b": 17.5406494140625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 41.39021682739258, + "t": 788.1883316040039, + "r": 557.9503173828125, + "b": 77.1551513671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 25, + "bbox": { + "l": 43.768917083740234, + "t": 53.206298828125, + "r": 99.21061706542969, + "b": 17.35614013671875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 26, + "bbox": { + "l": 43.72139358520508, + "t": 53.19293212890625, + "r": 99.13709259033203, + "b": 17.373779296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 40.20746612548828, + "t": 788.4639091491699, + "r": 539.2969360351562, + "b": 76.21099853515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 27, + "bbox": { + "l": 43.7583122253418, + "t": 53.1724853515625, + "r": 99.12340545654297, + "b": 17.5716552734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 28, + "bbox": { + "l": 43.66642379760742, + "t": 53.19677734375, + "r": 99.13784790039062, + "b": 17.37799072265625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 40.1088752746582, + "t": 787.748893737793, + "r": 540.0300903320312, + "b": 75.31951904296875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 29, + "bbox": { + "l": 43.7064323425293, + "t": 53.25390625, + "r": 99.08885192871094, + "b": 17.55670166015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 39.75428009033203, + "t": 788.3456954956055, + "r": 539.5263061523438, + "b": 75.88092041015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 30, + "bbox": { + "l": 43.5898551940918, + "t": 53.221923828125, + "r": 99.1150131225586, + "b": 17.39642333984375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 39.60329055786133, + "t": 788.077392578125, + "r": 539.8965454101562, + "b": 76.03204345703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 31, + "bbox": { + "l": 43.6134147644043, + "t": 53.18646240234375, + "r": 99.23092651367188, + "b": 17.52117919921875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 32, + "bbox": { + "l": 43.62717819213867, + "t": 53.14801025390625, + "r": 99.07987976074219, + "b": 17.21087646484375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 33, + "bbox": { + "l": 43.651397705078125, + "t": 53.1204833984375, + "r": 99.10762023925781, + "b": 17.42449951171875, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 34, + "bbox": { + "l": 43.563106536865234, + "t": 52.9520263671875, + "r": 99.4925765991211, + "b": 17.06787109375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 35, + "bbox": { + "l": 43.705772399902344, + "t": 53.1787109375, + "r": 99.34980773925781, + "b": 16.9459228515625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 36, + "bbox": { + "l": 43.670074462890625, + "t": 53.22137451171875, + "r": 99.135986328125, + "b": 17.025634765625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_figure", + "docling_label": "picture", + "page": 36, + "bbox": { + "l": 362.7693786621094, + "t": 84.42547607421875, + "r": 527.0680541992188, + "b": 48.60748291015625, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 1, + "bbox": { + "l": 443.11932373046875, + "t": 396.3277587890625, + "r": 544.253662109375, + "b": 216.21173095703125, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 6, + "bbox": { + "l": 187.1017303466797, + "t": 518.6640625, + "r": 394.65936279296875, + "b": 402.0744323730469, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + }, + { + "type": "context_data", + "docling_label": "table", + "page": 8, + "bbox": { + "l": 187.03213500976562, + "t": 313.766357421875, + "r": 393.7676696777344, + "b": 208.6341552734375, + "coord_origin": "BOTTOMLEFT" + }, + "text": "" + } + ], + "tables": [ + { + "page": 6, + "n_rows": 4, + "n_cols": 2, + "grid": [ + [ + "Gammaphoton", + "Photonenergy/ J" + ], + [ + "G1", + "5.0 \u00d7 10-14" + ], + [ + "G2", + "6.6 \u00d7 10-14" + ], + [ + "G3", + "1.0 \u00d7 10-13" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 0, + "for_part": "02.3" + }, + { + "page": 8, + "n_rows": 4, + "n_cols": 2, + "grid": [ + [ + "Material", + "Density / kg m-3" + ], + [ + "concrete", + "2.4 \u00d7 103" + ], + [ + "iron", + "7.8 \u00d7 103" + ], + [ + "brass", + "8.6 \u00d7 103" + ] + ], + "caption": null, + "source": "docling-standard", + "is_furniture": false, + "id": 1, + "for_part": null + } + ], + "stats": { + "n_questions": 27, + "n_parts": 47, + "marks_parts_known": 47, + "marks_sum": 76, + "marks_check": { + "sum": 76, + "expected_max": 85, + "pct": 89.4 + }, + "gemma_answer_regions": 0, + "gemma_marks_filled": 0, + "gemma_marks_gapfilled": 0, + "n_data_tables": 2, + "n_furniture_tables": 1, + "table_sources": { + "docling-standard": 2 + }, + "table_pages": [ + 6, + 8 + ], + "region_type_counts": { + "context_caption": 11, + "context_data": 3, + "context_figure": 63, + "furniture": 76, + "heading": 18, + "instruction": 128, + "mcq_option": 26 + } + }, + "coverage": { + "coverage_pct": 52.4, + "recovered": 22, + "total": 42, + "missed": [ + "04.1", + "04.4", + "07.1", + "07.2", + "07.3", + "08.1", + "08.2", + "08.3", + "08.4", + "08.5", + "09.1", + "09.2", + "09.3", + "10.1", + "10.2", + "10.3", + "11.1", + "11.2", + "11.3", + "11.4" + ], + "source": "builtin-physics-gt" + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/template.json b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/template.json new file mode 100644 index 0000000..421ffa0 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/template.json @@ -0,0 +1,4860 @@ +{ + "meta": { + "schema": "exam-template/first-pass/v1", + "board": "aqa", + "paper_code": "7408/1", + "source_pdf": "samples/b1/aqa-physics-7408-1-2022jun.pdf", + "n_pages": 36, + "coord_origin": "BOTTOMLEFT", + "units": "pdf_points", + "generated_at": "2026-06-08T01:49:00", + "ui_principle": "directional limits = draggable axis-locked lines; object footprints = boxes", + "confirmed": false, + "confirmed_by": null, + "confirmed_at": null + }, + "margins": [ + { + "edge": "left", + "axis": "x", + "value": 41.9, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "right", + "axis": "x", + "value": 536.6, + "scope": "document", + "source": "auto", + "confirmed": false + }, + { + "edge": "top", + "axis": "y", + "value": 788.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 2 + }, + { + "edge": "bottom", + "axis": "y", + "value": 434.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 2 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "bottom", + "axis": "y", + "value": 103.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 3 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "bottom", + "axis": "y", + "value": 105.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 4 + }, + { + "edge": "top", + "axis": "y", + "value": 787.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 5 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "bottom", + "axis": "y", + "value": 90.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 6 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "bottom", + "axis": "y", + "value": 208.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 8 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "bottom", + "axis": "y", + "value": 403.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 9 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "bottom", + "axis": "y", + "value": 207.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 10 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "bottom", + "axis": "y", + "value": 255.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 12 + }, + { + "edge": "top", + "axis": "y", + "value": 759.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "bottom", + "axis": "y", + "value": 358.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 13 + }, + { + "edge": "top", + "axis": "y", + "value": 771.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "bottom", + "axis": "y", + "value": 90.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 14 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "bottom", + "axis": "y", + "value": 80.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 15 + }, + { + "edge": "top", + "axis": "y", + "value": 771.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "bottom", + "axis": "y", + "value": 449.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 16 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "bottom", + "axis": "y", + "value": 438.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 17 + }, + { + "edge": "top", + "axis": "y", + "value": 788.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 18 + }, + { + "edge": "top", + "axis": "y", + "value": 788.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "bottom", + "axis": "y", + "value": 76.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 19 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "bottom", + "axis": "y", + "value": 314.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 20 + }, + { + "edge": "top", + "axis": "y", + "value": 772.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "bottom", + "axis": "y", + "value": 261.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 21 + }, + { + "edge": "top", + "axis": "y", + "value": 787.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 22 + }, + { + "edge": "top", + "axis": "y", + "value": 772.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "bottom", + "axis": "y", + "value": 100.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 23 + }, + { + "edge": "top", + "axis": "y", + "value": 776.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "bottom", + "axis": "y", + "value": 113.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 24 + }, + { + "edge": "top", + "axis": "y", + "value": 788.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "bottom", + "axis": "y", + "value": 77.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 25 + }, + { + "edge": "top", + "axis": "y", + "value": 775.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "bottom", + "axis": "y", + "value": 239.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 26 + }, + { + "edge": "top", + "axis": "y", + "value": 788.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "bottom", + "axis": "y", + "value": 76.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 27 + }, + { + "edge": "top", + "axis": "y", + "value": 773.6, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + }, + { + "edge": "bottom", + "axis": "y", + "value": 118.8, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 28 + }, + { + "edge": "top", + "axis": "y", + "value": 787.7, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 29 + }, + { + "edge": "top", + "axis": "y", + "value": 788.3, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "bottom", + "axis": "y", + "value": 75.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 30 + }, + { + "edge": "top", + "axis": "y", + "value": 788.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 31 + }, + { + "edge": "bottom", + "axis": "y", + "value": 76.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 31 + }, + { + "edge": "top", + "axis": "y", + "value": 788.4, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "bottom", + "axis": "y", + "value": 97.1, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 32 + }, + { + "edge": "top", + "axis": "y", + "value": 773.2, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 33 + }, + { + "edge": "bottom", + "axis": "y", + "value": 336.5, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 33 + }, + { + "edge": "top", + "axis": "y", + "value": 771.0, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 36 + }, + { + "edge": "bottom", + "axis": "y", + "value": 47.9, + "scope": "page", + "source": "auto", + "confirmed": false, + "page": 36 + } + ], + "pages": { + "1": { + "role": "cover", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 480.7485758463542, + "t": 34.72035725911462, + "r": 545.8631591796875, + "b": 14.34942626953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 38.04322052001953, + "t": 798.1278953552246, + "r": 168.16883850097656, + "b": 750.7074356079102, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 41.55791091918945, + "t": 53.442626953125, + "r": 232.80886840820312, + "b": 17.564697265625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "2": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 673.0, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.1", + "question": "01", + "y_start": 673.0, + "y_end": 495.6, + "label_box": { + "l": 49.04734802246094, + "t": 673.0107116699219, + "r": 524.7220458984375, + "b": 630.1467895507812, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 673.0, + "r": 536.6, + "b": 495.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.2", + "question": "01", + "y_start": 495.6, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 495.61354573567706, + "r": 432.9696858723958, + "b": 476.51572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 495.6, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.4384358723958, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.716583251953125, + "t": 53.1287841796875, + "r": 99.12460327148438, + "b": 17.388427734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "3": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 471.4, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.3", + "question": "01", + "y_start": 471.4, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 471.42299397786456, + "r": 102.32291666666667, + "b": 455.29600016276044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 471.4, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 284.98199462890625, + "t": 811.7879257202148, + "r": 293.015625, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.94521077473962, + "r": 538.6751708984375, + "b": 57.63775634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73481750488281, + "t": 53.125244140625, + "r": 99.09122467041016, + "b": 17.48345947265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 90.66405487060547, + "t": 665.022216796875, + "r": 488.1374206542969, + "b": 485.4034423828125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "4": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "01", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "01.4", + "question": "01", + "y_start": 775.7, + "y_end": 478.6, + "label_box": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 103.16855875651042, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 536.6, + "b": 478.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "01.5", + "question": "01", + "y_start": 478.6, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 478.63771565755206, + "r": 101.9000956217448, + "b": 462.51072184244794, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 478.6, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 23.68609619140625, + "r": 78.22206115722656, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.870540618896484, + "t": 53.111572265625, + "r": 99.27579498291016, + "b": 17.62060546875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "5": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.1", + "question": "02", + "y_start": 729.0, + "y_end": 622.9, + "label_box": { + "l": 48.62452697753906, + "t": 729.0308736165365, + "r": 103.5913798014323, + "b": 713.3282470703125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 729.0, + "r": 536.6, + "b": 622.9, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.2", + "question": "02", + "y_start": 622.9, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 622.9320882161459, + "r": 105.2826639811198, + "b": 605.9562784830729, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 622.9, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 775.2899424235026, + "r": 79.91335042317708, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 775.2899424235026, + "r": 79.91335042317708, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 538.6751708984375, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.70866394042969, + "t": 53.13214111328125, + "r": 99.10891723632812, + "b": 17.50592041015625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "6": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "02", + "y_start": 702.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "02.3", + "question": "02", + "y_start": 702.3, + "y_end": 623.4, + "label_box": { + "l": 49.04734802246094, + "t": 702.2939758300781, + "r": 102.32291666666667, + "b": 687.0157470703125, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 702.3, + "r": 536.6, + "b": 623.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "02.4", + "question": "02", + "y_start": 623.4, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 623.3564656575521, + "r": 104.01420084635417, + "b": 605.9562784830729, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 623.4, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.68804931640625, + "t": 53.1361083984375, + "r": 99.04960632324219, + "b": 17.542236328125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.333251953125, + "t": 131.81103515625, + "r": 576.0045166015625, + "b": 90.12890625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [ + { + "box": null, + "n_rows": 4, + "n_cols": 2, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "7": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 473.9833984375, + "t": 69.94521077473962, + "r": 539.0979817708334, + "b": 57.21335856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.57811737060547, + "t": 53.12103271484375, + "r": 99.4864501953125, + "b": 17.18914794921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "8": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 811.3635304768881, + "r": 292.59279378255206, + "b": 801.1780471801758, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 78.64488220214844, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.65688069661462, + "r": 80.75899251302083, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.677764892578125, + "t": 53.17633056640625, + "r": 98.9754867553711, + "b": 17.55694580078125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 154.61647033691406, + "t": 721.9823760986328, + "r": 426.1144104003906, + "b": 525.6509094238281, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [ + { + "box": null, + "n_rows": 4, + "n_cols": 2, + "table_source": "docling-standard", + "source": "auto", + "confirmed": false + } + ] + }, + "9": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.1", + "question": "03", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 105.2826639811198, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 285.82763671875, + "t": 810.5147399902344, + "r": 292.59279378255206, + "b": 801.6024424235026, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.94521077473962, + "r": 539.0979817708334, + "b": 57.21335856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.875328063964844, + "t": 53.1292724609375, + "r": 99.22415161132812, + "b": 17.6796875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "10": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 510.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.2", + "question": "03", + "y_start": 510.9, + "y_end": 263.5, + "label_box": { + "l": 48.62452697753906, + "t": 510.8917643229167, + "r": 102.32291666666667, + "b": 494.76475016276044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 510.9, + "r": 536.6, + "b": 263.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "03.3", + "question": "03", + "y_start": 263.5, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 263.4693806966146, + "r": 101.9000956217448, + "b": 249.03993733723962, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 263.5, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.6340446472168, + "t": 53.21136474609375, + "r": 99.11817169189453, + "b": 17.56353759765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 201.8160858154297, + "t": 721.8503341674805, + "r": 379.07684326171875, + "b": 577.6731567382812, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "11": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.86789957682294, + "t": 813.0611114501953, + "r": 294.7069091796875, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.94521077473962, + "r": 539.0979817708334, + "b": 57.21335856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.61802291870117, + "t": 53.09515380859375, + "r": 99.53155517578125, + "b": 17.68267822265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "12": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.4", + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 23.68609619140625, + "r": 78.22206115722656, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.67570877075195, + "t": 53.21282958984375, + "r": 99.15630340576172, + "b": 17.2843017578125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 129.14149475097656, + "t": 667.7611541748047, + "r": 450.1310119628906, + "b": 488.6637878417969, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "13": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "03.5", + "question": "03", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.94521077473962, + "r": 538.6751708984375, + "b": 57.21335856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.817195892333984, + "t": 53.1468505859375, + "r": 99.11898803710938, + "b": 17.54583740234375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 543.3595581054688, + "t": 479.41790771484375, + "r": 575.8417358398438, + "b": 438.40252685546875, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "14": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 774.0, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.2", + "question": "04", + "y_start": 387.4, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 387.39276123046875, + "r": 104.43702189127605, + "b": 372.96331787109375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 387.4, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.0167541503906, + "r": 78.22206115722656, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.73312759399414, + "t": 53.191162109375, + "r": 99.1208724975586, + "b": 17.85943603515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 218.50071716308594, + "t": 722.6109161376953, + "r": 361.83538818359375, + "b": 524.9989624023438, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "15": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 487.6, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.3", + "question": "04", + "y_start": 487.6, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 487.55002848307294, + "r": 100.63162231445312, + "b": 474.39377848307294, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 487.6, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 297.24383544921875, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.8290608723958, + "t": 69.52081298828125, + "r": 538.2523600260416, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.66131591796875, + "t": 53.1983642578125, + "r": 99.0597152709961, + "b": 17.4285888671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 218.16305541992188, + "t": 735.5035705566406, + "r": 361.9599609375, + "b": 514.8138427734375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "16": { + "role": "continuation", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 799.9048614501953, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 103.5913798014323, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 45.604835510253906, + "t": 776.7489929199219, + "r": 106.06902313232422, + "b": 758.4946517944336, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "chrome_picture", + "docling_label": "picture", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.60740280151367, + "t": 53.19488525390625, + "r": 99.07420349121094, + "b": 17.50262451171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 92.74071502685547, + "t": 705.5439300537109, + "r": 462.9246520996094, + "b": 567.9103393554688, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "17": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "04.5", + "question": "04", + "y_start": 775.3, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 775.2899424235026, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 283.7135416666667, + "t": 811.3635304768881, + "r": 295.55255126953125, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.94521077473962, + "r": 538.6751708984375, + "b": 57.21335856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.799156188964844, + "t": 53.12493896484375, + "r": 99.204345703125, + "b": 17.88525390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "18": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.1", + "question": "05", + "y_start": 558.4, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 558.4240112304688, + "r": 100.63162231445312, + "b": 543.9945678710938, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 558.4, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.8655446370443, + "r": 78.64488220214844, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 49.89299011230469, + "t": 774.8655446370443, + "r": 78.64488220214844, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 73.14819844563802, + "t": 24.53489176432288, + "r": 78.64488220214844, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.65611267089844, + "t": 53.18243408203125, + "r": 99.09671783447266, + "b": 17.6627197265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "19": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 775.3, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.2", + "question": "05", + "y_start": 775.3, + "y_end": 507.5, + "label_box": { + "l": 49.47016906738281, + "t": 775.2899424235026, + "r": 102.74573771158855, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.6, + "b": 507.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.3", + "question": "05", + "y_start": 507.5, + "y_end": 0.0, + "label_box": { + "l": 47.77887980143229, + "t": 507.49660237630206, + "r": 103.16855875651042, + "b": 491.36956787109375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 507.5, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.445068359375, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.52081298828125, + "r": 537.8295491536459, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.8003044128418, + "t": 53.18994140625, + "r": 99.22151947021484, + "b": 17.74847412109375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "20": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.4", + "question": "05", + "y_start": 774.9, + "y_end": 574.1, + "label_box": { + "l": 49.47016906738281, + "t": 774.8655446370443, + "r": 102.32291666666667, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 536.6, + "b": 574.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "05.5", + "question": "05", + "y_start": 574.1, + "y_end": 0.0, + "label_box": { + "l": 49.04734802246094, + "t": 574.1266276041667, + "r": 515.8427734375, + "b": 546.5409545898438, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 574.1, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 799.4804662068685, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 58.77225240071615, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.0979817708334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74028778076172, + "t": 53.14093017578125, + "r": 99.16525268554688, + "b": 17.38323974609375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "21": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "05.6", + "question": "05", + "y_start": 774.9, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 774.8655446370443, + "r": 101.9000956217448, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 295.97536214192706, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.9833984375, + "t": 69.52081298828125, + "r": 537.8295491536459, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.686729431152344, + "t": 53.1051025390625, + "r": 99.13709259033203, + "b": 17.62286376953125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 148.14927673339844, + "t": 696.1988983154297, + "r": 432.6424560546875, + "b": 517.8292236328125, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "22": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 774.9, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.1", + "question": "06", + "y_start": 496.0, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 496.03794352213544, + "r": 101.47727457682292, + "b": 481.60850016276044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 496.0, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 50.31581115722656, + "t": 774.8655446370443, + "r": 78.64488220214844, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 50.31581115722656, + "t": 774.8655446370443, + "r": 78.64488220214844, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.74589157104492, + "t": 53.1539306640625, + "r": 99.09431457519531, + "b": 17.24566650390625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "23": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "06", + "y_start": 775.7, + "y_end": 0.0, + "is_start": false, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "06.2", + "question": "06", + "y_start": 775.7, + "y_end": 379.8, + "label_box": { + "l": 49.04734802246094, + "t": 775.7143351236979, + "r": 105.2826639811198, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 536.6, + "b": 379.8, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "06.3", + "question": "06", + "y_start": 379.8, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 379.75364176432294, + "r": 101.054443359375, + "b": 365.32419840494794, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 379.8, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.0174967447916, + "t": 789.2949829101562, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.40625, + "t": 69.52081298828125, + "r": 537.8295491536459, + "b": 58.06215413411462, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 63.84611511230469, + "t": 25.38368733723962, + "r": 79.06770833333333, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.0572916666667, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.82809066772461, + "t": 53.14093017578125, + "r": 99.1424560546875, + "b": 17.41925048828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "24": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "07", + "y_start": 461.7, + "y_end": 280.0, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "08", + "y_start": 280.0, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "07.0", + "question": "07", + "y_start": 461.7, + "y_end": 280.0, + "label_box": { + "l": 49.89299011230469, + "t": 461.66192626953125, + "r": 340.79449462890625, + "b": 446.38368733723956, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 461.7, + "r": 536.6, + "b": 280.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "08.0", + "question": "08", + "y_start": 280.0, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 280.0207722981771, + "r": 379.6941324869792, + "b": 265.59136962890625, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 280.0, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.664512634277344, + "t": 53.15869140625, + "r": 99.07539367675781, + "b": 17.5406494140625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 103.25153350830078, + "t": 561.8157043457031, + "r": 130.67306518554688, + "b": 540.962646484375, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 474.3487548828125, + "t": 605.8225555419922, + "r": 500.7398681640625, + "b": 586.4608612060547, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + }, + "25": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "11", + "y_start": 358.5, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "11.0", + "question": "11", + "y_start": 358.5, + "y_end": 0.0, + "label_box": { + "l": 50.31581115722656, + "t": 358.53387451171875, + "r": 77.79924011230469, + "b": 346.65081787109375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 358.5, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 79.91335042317708, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 539.0979817708334, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.768917083740234, + "t": 53.206298828125, + "r": 99.21061706542969, + "b": 17.35614013671875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "26": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "12", + "y_start": 775.3, + "y_end": 594.1, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "13", + "y_start": 594.1, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "12.0", + "question": "12", + "y_start": 775.3, + "y_end": 594.1, + "label_box": { + "l": 49.04734802246094, + "t": 775.2899424235026, + "r": 229.16949462890625, + "b": 760.01171875, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.6, + "b": 594.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "13.0", + "question": "13", + "y_start": 594.1, + "y_end": 0.0, + "label_box": { + "l": 49.89299011230469, + "t": 594.0732014973959, + "r": 294.7069091796875, + "b": 579.2193806966145, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 594.1, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.88636271158854, + "t": 24.11049397786462, + "r": 65.5374043782552, + "b": 17.74460856119788, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.72139358520508, + "t": 53.19293212890625, + "r": 99.13709259033203, + "b": 17.373779296875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "27": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "15", + "y_start": 774.4, + "y_end": 561.0, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "16", + "y_start": 561.0, + "y_end": 280.4, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "17", + "y_start": 280.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "15.0", + "question": "15", + "y_start": 774.4, + "y_end": 561.0, + "label_box": { + "l": 50.31581115722656, + "t": 774.441151936849, + "r": 79.06770833333333, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.4, + "r": 536.6, + "b": 561.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "16.0", + "question": "16", + "y_start": 561.0, + "y_end": 280.4, + "label_box": { + "l": 50.31581115722656, + "t": 560.9703776041667, + "r": 534.8697916666666, + "b": 533.809102376302, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 561.0, + "r": 536.6, + "b": 280.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "17.0", + "question": "17", + "y_start": 280.4, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 280.4451700846354, + "r": 79.91335042317708, + "b": 265.1669718424479, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 280.4, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.79400634765625, + "r": 538.6751708984375, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 61.73200480143229, + "t": 23.26169840494788, + "r": 65.11458333333333, + "b": 18.16900634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7583122253418, + "t": 53.1724853515625, + "r": 99.12340545654297, + "b": 17.5716552734375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "28": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "18", + "y_start": 774.4, + "y_end": 317.4, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "20", + "y_start": 317.4, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "18.0", + "question": "18", + "y_start": 774.4, + "y_end": 317.4, + "label_box": { + "l": 50.31581115722656, + "t": 774.441151936849, + "r": 78.22206115722656, + "b": 760.8605041503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.4, + "r": 536.6, + "b": 317.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "20.0", + "question": "20", + "y_start": 317.4, + "y_end": 0.0, + "label_box": { + "l": 48.62452697753906, + "t": 317.3675740559896, + "r": 333.18369547526044, + "b": 276.6256306966146, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 317.4, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.23248291015625, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.66642379760742, + "t": 53.19677734375, + "r": 99.13784790039062, + "b": 17.37799072265625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "29": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "21", + "y_start": 775.3, + "y_end": 554.2, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "22", + "y_start": 554.2, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "21.0", + "question": "21", + "y_start": 775.3, + "y_end": 554.2, + "label_box": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 478.2116292317708, + "b": 745.1578877766927, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.6, + "b": 554.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "22.0", + "question": "22", + "y_start": 554.2, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 554.1800537109375, + "r": 466.3726399739583, + "b": 538.4774373372395, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 554.2, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 539.0979817708334, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.7064323425293, + "t": 53.25390625, + "r": 99.08885192871094, + "b": 17.55670166015625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "30": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "23", + "y_start": 775.3, + "y_end": 554.2, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "24", + "y_start": 554.2, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "23.0", + "question": "23", + "y_start": 775.3, + "y_end": 554.2, + "label_box": { + "l": 48.201700846354164, + "t": 775.2899424235026, + "r": 475.6747233072917, + "b": 745.582285563151, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.3, + "r": 536.6, + "b": 554.2, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "24.0", + "question": "24", + "y_start": 554.2, + "y_end": 0.0, + "label_box": { + "l": 49.47016906738281, + "t": 554.1800537109375, + "r": 79.4905293782552, + "b": 540.175028483073, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 554.2, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.6178944905599, + "t": 25.80808512369788, + "r": 79.91335042317708, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.8705851236979, + "r": 584.7627766927084, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.5898551940918, + "t": 53.221923828125, + "r": 99.1150131225586, + "b": 17.39642333984375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "31": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "25", + "y_start": 774.9, + "y_end": 386.5, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "26", + "y_start": 386.5, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "25.0", + "question": "25", + "y_start": 774.9, + "y_end": 386.5, + "label_box": { + "l": 47.77887980143229, + "t": 774.8655446370443, + "r": 497.2386067708333, + "b": 759.5873209635416, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.9, + "r": 536.6, + "b": 386.5, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "26.0", + "question": "26", + "y_start": 386.5, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 386.54396565755206, + "r": 79.91335042317708, + "b": 371.26572672526044, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 386.5, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.398193359375, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.8631591796875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 473.5605875651042, + "t": 70.36960856119788, + "r": 538.6751708984375, + "b": 56.78896077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.6134147644043, + "t": 53.18646240234375, + "r": 99.23092651367188, + "b": 17.52117919921875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "32": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "27", + "y_start": 775.7, + "y_end": 516.4, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "28", + "y_start": 516.4, + "y_end": 268.6, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "29", + "y_start": 268.6, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "27.0", + "question": "27", + "y_start": 775.7, + "y_end": 516.4, + "label_box": { + "l": 48.62452697753906, + "t": 775.7143351236979, + "r": 505.695068359375, + "b": 721.3917541503906, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 775.7, + "r": 536.6, + "b": 516.4, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "28.0", + "question": "28", + "y_start": 516.4, + "y_end": 268.6, + "label_box": { + "l": 48.62452697753906, + "t": 516.4088948567708, + "r": 512.0373942057291, + "b": 489.24761962890625, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 516.4, + "r": 536.6, + "b": 268.6, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "29.0", + "question": "29", + "y_start": 268.6, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 268.5621134440104, + "r": 313.73388671875, + "b": 254.55706787109375, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 268.6, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 813.0611114501953, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 59.19507344563802, + "t": 26.65688069661462, + "r": 80.33617146809895, + "b": 15.62261962890625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.9029134114583, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.62717819213867, + "t": 53.14801025390625, + "r": 99.07987976074219, + "b": 17.21087646484375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "33": { + "role": "question", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [ + { + "question": "30", + "y_start": 774.4, + "y_end": 594.1, + "is_start": true, + "source": "auto", + "confirmed": false + }, + { + "question": "31", + "y_start": 594.1, + "y_end": 0.0, + "is_start": true, + "source": "auto", + "confirmed": false + } + ], + "part_bands": [ + { + "label": "30.0", + "question": "30", + "y_start": 774.4, + "y_end": 594.1, + "label_box": { + "l": 49.04734802246094, + "t": 774.441151936849, + "r": 79.06770833333333, + "b": 760.4361114501953, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 774.4, + "r": 536.6, + "b": 594.1, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + }, + { + "label": "31.0", + "question": "31", + "y_start": 594.1, + "y_end": 0.0, + "label_box": { + "l": 48.201700846354164, + "t": 594.0732014973959, + "r": 532.7556559244791, + "b": 563.941141764323, + "coord_origin": "BOTTOMLEFT" + }, + "box": { + "l": 41.9, + "t": 594.1, + "r": 536.6, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 788.4461924235026, + "r": 584.7627766927084, + "b": 763.4068756103516, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.651397705078125, + "t": 53.1204833984375, + "r": 99.10762023925781, + "b": 17.42449951171875, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "34": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 281.59942626953125, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.7193756103516, + "r": 585.6083984375, + "b": 763.8312733968099, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.563106536865234, + "t": 52.9520263671875, + "r": 99.4925765991211, + "b": 17.06787109375, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "35": { + "role": "blank", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": false, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.3292566935221, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.463541666666664, + "t": 25.38368733723962, + "r": 67.65151468912761, + "b": 16.89581298828125, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 64.69175720214844, + "t": 26.23248291015625, + "r": 79.4905293782552, + "b": 16.47141520182288, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.9436442057291, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.705772399902344, + "t": 53.1787109375, + "r": 99.34980773925781, + "b": 16.9459228515625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [], + "tables": [] + }, + "36": { + "role": "appendix", + "role_source": "auto", + "role_confirmed": false, + "margins_enabled": true, + "main_bands": [], + "part_bands": [], + "furniture": [ + { + "box": { + "l": 282.02223714192706, + "t": 812.6367162068685, + "r": 296.82102457682294, + "b": 800.753651936849, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 545.4403076171875, + "t": 789.2949829101562, + "r": 584.3399658203125, + "b": 764.2556660970052, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "page_header", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 55.8125, + "t": 769.3484090169271, + "r": 94.28929646809895, + "b": 757.8897399902344, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "header_or_page_number", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 60.463541666666664, + "t": 25.38368733723962, + "r": 67.22869364420573, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "text", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 479.4801025390625, + "t": 25.80808512369788, + "r": 539.5208333333334, + "b": 17.32021077473962, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "footer", + "docling_label": "page_footer", + "source": "auto", + "confirmed": false + }, + { + "box": { + "l": 43.670074462890625, + "t": 53.22137451171875, + "r": 99.135986328125, + "b": 17.025634765625, + "coord_origin": "BOTTOMLEFT" + }, + "kind": "barcode", + "docling_label": "picture", + "source": "auto", + "confirmed": false + } + ], + "figures": [ + { + "box": { + "l": 362.7693786621094, + "t": 84.42547607421875, + "r": 527.0680541992188, + "b": 48.60748291015625, + "coord_origin": "BOTTOMLEFT" + }, + "source": "auto", + "confirmed": false + } + ], + "tables": [] + } + } +} \ No newline at end of file diff --git a/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/validate.json b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/validate.json new file mode 100644 index 0000000..89fadd4 --- /dev/null +++ b/api/services/docling/results/final/b1-aqa-physics-7408-1-2022jun/validate.json @@ -0,0 +1,259 @@ +{ + "paper_code": "7408/1", + "board": "aqa", + "summary": { + "worst_severity": "warn", + "needs_priority_review": true, + "n_flags": 4, + "marks_sum": 76, + "official_max": 85, + "parts_total": 47, + "parts_low_conf": 0, + "questions_expected": 31, + "questions_recovered": 27 + }, + "flags": [ + "[warn] C1_marks_sum: marks sum 76 below official max 85 (-9) \u2014 missing parts or unread marks", + "[warn] C3_question_seq: top-level questions [9, 10, 14, 19] missing between 1-31 \u2014 expected but unrecovered; surface as second-pass slots in the question tree", + "[warn] C4_subpart_seq: sub-part gaps: Q04 missing ['4']", + "[warn] C5_coverage: 52.4% vs GT (22/42); missed ['04.1', '04.4', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3', '08.4', '08.5']" + ], + "checks": [ + { + "id": "C1_marks_sum", + "severity": "warn", + "status": "under", + "detail": "marks sum 76 below official max 85 (-9) \u2014 missing parts or unread marks" + }, + { + "id": "C2_part_marks", + "severity": "info", + "status": "ok", + "detail": "every part carries a plausible mark" + }, + { + "id": "C3_question_seq", + "severity": "warn", + "status": "gap", + "detail": "top-level questions [9, 10, 14, 19] missing between 1-31 \u2014 expected but unrecovered; surface as second-pass slots in the question tree" + }, + { + "id": "C4_subpart_seq", + "severity": "warn", + "status": "gap", + "detail": "sub-part gaps: Q04 missing ['4']" + }, + { + "id": "C5_coverage", + "severity": "warn", + "status": "missed", + "detail": "52.4% vs GT (22/42); missed ['04.1', '04.4', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3', '08.4', '08.5']" + } + ], + "part_confidence": { + "01.1": "medium", + "01.2": "medium", + "01.3": "medium", + "01.4": "medium", + "01.5": "medium", + "02.1": "medium", + "02.2": "medium", + "02.3": "medium", + "02.4": "medium", + "03.1": "medium", + "03.2": "medium", + "03.3": "medium", + "03.4": "medium", + "03.5": "medium", + "04.2": "medium", + "04.3": "medium", + "04.5": "medium", + "05.1": "medium", + "05.2": "medium", + "05.3": "medium", + "05.4": "medium", + "05.5": "medium", + "05.6": "medium", + "06.1": "medium", + "06.2": "medium", + "06.3": "medium", + "07.0": "medium", + "08.0": "medium", + "11.0": "medium", + "12.0": "medium", + "13.0": "medium", + "15.0": "medium", + "16.0": "medium", + "17.0": "medium", + "18.0": "medium", + "20.0": "medium", + "21.0": "medium", + "22.0": "medium", + "23.0": "medium", + "24.0": "medium", + "25.0": "medium", + "26.0": "medium", + "27.0": "medium", + "28.0": "medium", + "29.0": "medium", + "30.0": "medium", + "31.0": "medium" + }, + "question_sequence": [ + { + "n": 1, + "label": "01", + "recovered": true + }, + { + "n": 2, + "label": "02", + "recovered": true + }, + { + "n": 3, + "label": "03", + "recovered": true + }, + { + "n": 4, + "label": "04", + "recovered": true + }, + { + "n": 5, + "label": "05", + "recovered": true + }, + { + "n": 6, + "label": "06", + "recovered": true + }, + { + "n": 7, + "label": "07", + "recovered": true + }, + { + "n": 8, + "label": "08", + "recovered": true + }, + { + "n": 9, + "label": "09", + "recovered": false + }, + { + "n": 10, + "label": "10", + "recovered": false + }, + { + "n": 11, + "label": "11", + "recovered": true + }, + { + "n": 12, + "label": "12", + "recovered": true + }, + { + "n": 13, + "label": "13", + "recovered": true + }, + { + "n": 14, + "label": "14", + "recovered": false + }, + { + "n": 15, + "label": "15", + "recovered": true + }, + { + "n": 16, + "label": "16", + "recovered": true + }, + { + "n": 17, + "label": "17", + "recovered": true + }, + { + "n": 18, + "label": "18", + "recovered": true + }, + { + "n": 19, + "label": "19", + "recovered": false + }, + { + "n": 20, + "label": "20", + "recovered": true + }, + { + "n": 21, + "label": "21", + "recovered": true + }, + { + "n": 22, + "label": "22", + "recovered": true + }, + { + "n": 23, + "label": "23", + "recovered": true + }, + { + "n": 24, + "label": "24", + "recovered": true + }, + { + "n": 25, + "label": "25", + "recovered": true + }, + { + "n": 26, + "label": "26", + "recovered": true + }, + { + "n": 27, + "label": "27", + "recovered": true + }, + { + "n": 28, + "label": "28", + "recovered": true + }, + { + "n": 29, + "label": "29", + "recovered": true + }, + { + "n": 30, + "label": "30", + "recovered": true + }, + { + "n": 31, + "label": "31", + "recovered": true + } + ] +} \ No newline at end of file diff --git a/api/services/docling/results/final/catalog.json b/api/services/docling/results/final/catalog.json new file mode 100644 index 0000000..d5a980b --- /dev/null +++ b/api/services/docling/results/final/catalog.json @@ -0,0 +1,279 @@ +{ + "generated_at": "2026-06-08T01:48:56", + "papers": [ + { + "slug": "b1-aqa-biology-7402-1-2023jun", + "title": "AQA A-level Biology 7402/1 2023 Jun (image-only OCR baseline)", + "board": "aqa", + "level": "A-level", + "kind": "geometry", + "path": "B1 image-only OCR (RapidOCR margin-pass)", + "dir": "results/final/b1-aqa-biology-7402-1-2023jun", + "overlay_images": 0, + "paper_code": "7402/1", + "n_questions": 10, + "n_parts": 36, + "marks_sum": null, + "official_max": null, + "marks_pct": null, + "coverage_pct": 92.3, + "coverage_recovered": 36, + "coverage_total": 39, + "coverage_source": "fixtures/b1_gt_labels.json", + "coverage_missed": [ + "02.3", + "07.1", + "89.6" + ], + "answer_regions": 199, + "validate_verdict": "warn", + "validate_flags": [ + "[info] C1_marks_sum: no official max available to check the sum against", + "[warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens", + "[warn] C5_coverage: 71.4% vs GT (30/42); missed ['01.4', '02.3', '02.4', '04.4', '04.5', '07.1', '07.3', '08.5', '11.1', '11.2']" + ], + "questions_expected": 10, + "questions_recovered": 10, + "second_pass_slots": [] + }, + { + "slug": "b1-aqa-chemistry-7405-1-2022jun", + "title": "AQA A-level Chemistry 7405/1 2022 Jun (image-only OCR baseline)", + "board": "aqa", + "level": "A-level", + "kind": "geometry", + "path": "B1 image-only OCR (RapidOCR margin-pass)", + "dir": "results/final/b1-aqa-chemistry-7405-1-2022jun", + "overlay_images": 0, + "paper_code": "7405/1", + "n_questions": 8, + "n_parts": 36, + "marks_sum": null, + "official_max": null, + "marks_pct": null, + "coverage_pct": 76.6, + "coverage_recovered": 36, + "coverage_total": 47, + "coverage_source": "fixtures/b1_gt_labels.json", + "coverage_missed": [ + "02.1", + "02.3", + "02.4", + "04.1", + "05.1", + "05.4", + "05.6", + "06.1", + "07.4", + "07.7", + "08.1" + ], + "answer_regions": 150, + "validate_verdict": "warn", + "validate_flags": [ + "[info] C1_marks_sum: no official max available to check the sum against", + "[warn] C4_subpart_seq: sub-part gaps: Q02 missing ['3', '4'], Q05 missing ['4', '6'], Q07 missing ['4']", + "[warn] C5_coverage: 57.1% vs GT (24/42); missed ['02.1', '02.3', '02.4', '04.1', '05.1', '05.4', '06.1', '08.1', '09.1', '09.2']" + ], + "questions_expected": 8, + "questions_recovered": 8, + "second_pass_slots": [] + }, + { + "slug": "b1-aqa-physics-7408-1-2022jun", + "title": "AQA A-level Physics 7408/1 2022 Jun (image-only OCR baseline)", + "board": "aqa", + "level": "A-level", + "kind": "geometry", + "path": "B1 image-only OCR (RapidOCR margin-pass)", + "dir": "results/final/b1-aqa-physics-7408-1-2022jun", + "overlay_images": 0, + "paper_code": "7408/1", + "n_questions": 27, + "n_parts": 47, + "marks_sum": 76, + "official_max": 85, + "marks_pct": 89.4, + "coverage_pct": 88.7, + "coverage_recovered": 47, + "coverage_total": 53, + "coverage_source": "fixtures/b1_gt_labels.json", + "coverage_missed": [ + "04.1", + "04.4", + "09.0", + "10.0", + "14.0", + "19.0" + ], + "answer_regions": 325, + "validate_verdict": "warn", + "validate_flags": [ + "[warn] C1_marks_sum: marks sum 76 below official max 85 (-9) \u2014 missing parts or unread marks", + "[warn] C3_question_seq: top-level questions [9, 10, 14, 19] missing between 1-31 \u2014 expected but unrecovered; surface as second-pass slots in the question tree", + "[warn] C4_subpart_seq: sub-part gaps: Q04 missing ['4']", + "[warn] C5_coverage: 52.4% vs GT (22/42); missed ['04.1', '04.4', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3', '08.4', '08.5']" + ], + "questions_expected": 31, + "questions_recovered": 27, + "second_pass_slots": [ + "09", + "10", + "14", + "19" + ] + }, + { + "slug": "b1-aqa-biology-8461-1h-2022jun", + "title": "AQA GCSE Biology 8461/1H 2022 Jun (image-only OCR baseline)", + "board": "aqa", + "level": "GCSE", + "kind": "geometry", + "path": "B1 image-only OCR (RapidOCR margin-pass)", + "dir": "results/final/b1-aqa-biology-8461-1h-2022jun", + "overlay_images": 0, + "paper_code": "8461/1", + "n_questions": 7, + "n_parts": 40, + "marks_sum": 94, + "official_max": 100, + "marks_pct": 94.0, + "coverage_pct": 93.0, + "coverage_recovered": 40, + "coverage_total": 43, + "coverage_source": "fixtures/b1_gt_labels.json", + "coverage_missed": [ + "01.8", + "07.2", + "07.7" + ], + "answer_regions": 246, + "validate_verdict": "warn", + "validate_flags": [ + "[warn] C1_marks_sum: marks sum 94 below official max 100 (-6) \u2014 missing parts or unread marks", + "[warn] C4_subpart_seq: sub-part gaps: Q01 missing ['8'], Q07 missing ['2', '7']", + "[warn] C5_coverage: 61.9% vs GT (26/42); missed ['07.2', '08.1', '08.2', '08.3', '08.4', '08.5', '09.1', '09.2', '09.3', '10.1']" + ], + "questions_expected": 7, + "questions_recovered": 7, + "second_pass_slots": [] + }, + { + "slug": "b1-aqa-chemistry-8462-1h-2022jun", + "title": "AQA GCSE Chemistry 8462/1H 2022 Jun (image-only OCR baseline)", + "board": "aqa", + "level": "GCSE", + "kind": "geometry", + "path": "B1 image-only OCR (RapidOCR margin-pass)", + "dir": "results/final/b1-aqa-chemistry-8462-1h-2022jun", + "overlay_images": 0, + "paper_code": "8462/1", + "n_questions": 8, + "n_parts": 42, + "marks_sum": 91, + "official_max": 100, + "marks_pct": 91.0, + "coverage_pct": 89.4, + "coverage_recovered": 42, + "coverage_total": 47, + "coverage_source": "fixtures/b1_gt_labels.json", + "coverage_missed": [ + "02.2", + "02.4", + "04.1", + "08.1", + "08.4" + ], + "answer_regions": 192, + "validate_verdict": "warn", + "validate_flags": [ + "[warn] C1_marks_sum: marks sum 91 below official max 100 (-9) \u2014 missing parts or unread marks", + "[warn] C4_subpart_seq: sub-part gaps: Q02 missing ['2', '4'], Q08 missing ['4']", + "[warn] C5_coverage: 64.3% vs GT (27/42); missed ['02.2', '02.4', '04.1', '08.1', '08.4', '09.1', '09.2', '09.3', '10.1', '10.2']" + ], + "questions_expected": 8, + "questions_recovered": 8, + "second_pass_slots": [] + }, + { + "slug": "b1-aqa-combined-8464-b1h-2022jun", + "title": "AQA GCSE Combined Science Trilogy 8464/B/1H 2022 Jun (image-only OCR baseline)", + "board": "aqa", + "level": "GCSE", + "kind": "geometry", + "path": "B1 image-only OCR (RapidOCR margin-pass)", + "dir": "results/final/b1-aqa-combined-8464-b1h-2022jun", + "overlay_images": 0, + "paper_code": null, + "n_questions": 6, + "n_parts": 32, + "marks_sum": 62, + "official_max": 70, + "marks_pct": 88.6, + "coverage_pct": 88.9, + "coverage_recovered": 32, + "coverage_total": 36, + "coverage_source": "fixtures/b1_gt_labels.json", + "coverage_missed": [ + "02.1", + "03.1", + "04.1", + "05.1" + ], + "answer_regions": 214, + "validate_verdict": "warn", + "validate_flags": [ + "[warn] C1_marks_sum: marks sum 62 below official max 70 (-8) \u2014 missing parts or unread marks", + "[warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens", + "[warn] C5_coverage: 47.6% vs GT (20/42); missed ['02.1', '03.1', '04.1', '05.1', '07.1', '07.2', '07.3', '08.1', '08.2', '08.3']" + ], + "questions_expected": 6, + "questions_recovered": 6, + "second_pass_slots": [] + }, + { + "slug": "b1-aqa-combined-8464-c1h-2022jun", + "title": "AQA GCSE Combined Science Trilogy 8464/C/1H 2022 Jun (image-only OCR baseline; 8465 not present in dev catalogue)", + "board": "aqa", + "level": "GCSE", + "kind": "geometry", + "path": "B1 image-only OCR (RapidOCR margin-pass)", + "dir": "results/final/b1-aqa-combined-8464-c1h-2022jun", + "overlay_images": 0, + "paper_code": null, + "n_questions": 6, + "n_parts": 25, + "marks_sum": 51, + "official_max": 70, + "marks_pct": 72.9, + "coverage_pct": 75.8, + "coverage_recovered": 25, + "coverage_total": 33, + "coverage_source": "fixtures/b1_gt_labels.json", + "coverage_missed": [ + "01.3", + "03.0", + "04.1", + "04.7", + "05.1", + "06.1", + "06.4", + "07.6" + ], + "answer_regions": 147, + "validate_verdict": "warn", + "validate_flags": [ + "[warn] C1_marks_sum: marks sum 51 below official max 70 (-19) \u2014 missing parts or unread marks", + "[warn] C2_part_marks: 1 part(s) with no mark, 0 with 0 marks \u2014 unread/garbled mark tokens", + "[warn] C3_question_seq: top-level questions [3] missing between 1-7 \u2014 expected but unrecovered; surface as second-pass slots in the question tree", + "[warn] C4_subpart_seq: sub-part gaps: Q01 missing ['3'], Q06 missing ['4']", + "[warn] C5_coverage: 45.2% vs GT (19/42); missed ['01.3', '03.1', '03.2', '03.3', '03.4', '04.1', '05.1', '06.1', '08.1', '08.2']" + ], + "questions_expected": 7, + "questions_recovered": 6, + "second_pass_slots": [ + "03" + ] + } + ] +} \ No newline at end of file diff --git a/api/services/docling/samples/b1/aqa-biology-7402-1-2023jun.pdf b/api/services/docling/samples/b1/aqa-biology-7402-1-2023jun.pdf new file mode 100644 index 0000000..b695e6f Binary files /dev/null and b/api/services/docling/samples/b1/aqa-biology-7402-1-2023jun.pdf differ diff --git a/api/services/docling/samples/b1/aqa-biology-8461-1h-2022jun.pdf b/api/services/docling/samples/b1/aqa-biology-8461-1h-2022jun.pdf new file mode 100644 index 0000000..e78bfcf Binary files /dev/null and b/api/services/docling/samples/b1/aqa-biology-8461-1h-2022jun.pdf differ diff --git a/api/services/docling/samples/b1/aqa-chemistry-7405-1-2022jun.pdf b/api/services/docling/samples/b1/aqa-chemistry-7405-1-2022jun.pdf new file mode 100644 index 0000000..b401f4f Binary files /dev/null and b/api/services/docling/samples/b1/aqa-chemistry-7405-1-2022jun.pdf differ diff --git a/api/services/docling/samples/b1/aqa-chemistry-8462-1h-2022jun.pdf b/api/services/docling/samples/b1/aqa-chemistry-8462-1h-2022jun.pdf new file mode 100644 index 0000000..54836a8 Binary files /dev/null and b/api/services/docling/samples/b1/aqa-chemistry-8462-1h-2022jun.pdf differ diff --git a/api/services/docling/samples/b1/aqa-combined-8464-b1h-2022jun.pdf b/api/services/docling/samples/b1/aqa-combined-8464-b1h-2022jun.pdf new file mode 100644 index 0000000..c82bcb6 Binary files /dev/null and b/api/services/docling/samples/b1/aqa-combined-8464-b1h-2022jun.pdf differ diff --git a/api/services/docling/samples/b1/aqa-combined-8464-c1h-2022jun.pdf b/api/services/docling/samples/b1/aqa-combined-8464-c1h-2022jun.pdf new file mode 100644 index 0000000..a1f68d0 Binary files /dev/null and b/api/services/docling/samples/b1/aqa-combined-8464-c1h-2022jun.pdf differ diff --git a/api/services/docling/samples/b1/aqa-physics-7408-1-2022jun.pdf b/api/services/docling/samples/b1/aqa-physics-7408-1-2022jun.pdf new file mode 100644 index 0000000..f34f1f5 Binary files /dev/null and b/api/services/docling/samples/b1/aqa-physics-7408-1-2022jun.pdf differ diff --git a/api/services/docling/scripts/make_b1_gt.py b/api/services/docling/scripts/make_b1_gt.py new file mode 100644 index 0000000..48c72ca --- /dev/null +++ b/api/services/docling/scripts/make_b1_gt.py @@ -0,0 +1,32 @@ +import json, sys +from pathlib import Path +base=Path('/app/api/services/docling') +sys.path.insert(0, str(base)) +import extract +papers=[ +('b1-aqa-biology-7402-1-2023jun','samples/b1/aqa-biology-7402-1-2023jun.pdf','cc.examboards/aqa/biology/7402/1/2023-jun/qp.pdf'), +('b1-aqa-chemistry-7405-1-2022jun','samples/b1/aqa-chemistry-7405-1-2022jun.pdf','cc.examboards/aqa/chemistry/7405/1/2022-jun/qp.pdf'), +('b1-aqa-physics-7408-1-2022jun','samples/b1/aqa-physics-7408-1-2022jun.pdf','cc.examboards/aqa/physics/7408/1/2022-jun/qp.pdf'), +('b1-aqa-biology-8461-1h-2022jun','samples/b1/aqa-biology-8461-1h-2022jun.pdf','cc.examboards/aqa/biology/8461/1h/2022-jun/qp.pdf'), +('b1-aqa-chemistry-8462-1h-2022jun','samples/b1/aqa-chemistry-8462-1h-2022jun.pdf','cc.examboards/aqa/chemistry/8462/1h/2022-jun/qp.pdf'), +('b1-aqa-combined-8464-b1h-2022jun','samples/b1/aqa-combined-8464-b1h-2022jun.pdf','cc.examboards/aqa/combined-science-trilogy/8464/b-1h/2022-jun/qp.pdf'), +('b1-aqa-combined-8464-c1h-2022jun','samples/b1/aqa-combined-8464-c1h-2022jun.pdf','cc.examboards/aqa/combined-science-trilogy/8464/c-1h/2022-jun/qp.pdf'), +] +out={} +for slug, rel, storage in papers: + lines=extract.lines_from_pdftext(str(base/rel)) + board, code=extract.detect_board(lines) + if board != 'aqa': + raise RuntimeError(f'{slug}: expected AQA board, detected {board!r} ({code!r})') + parts=extract.parse_text_by_board(lines, board) + labels=list(parts) + out[slug]={ + 'source_pdf': storage, + 'source_method': 'AQA born-digital text-layer parsed with existing extract.py AQA grammar; used as reproducible GT label set for image-only OCR baseline.', + 'board_detected': board, + 'paper_code_detected': code, + 'labels': labels, + } + print(slug, board, code, len(labels), labels[:5], labels[-5:]) +Path(base/'fixtures').mkdir(exist_ok=True) +Path(base/'fixtures/b1_gt_labels.json').write_text(json.dumps(out, indent=2)+"\n") diff --git a/api/services/docling/scripts/rapid_pass.py b/api/services/docling/scripts/rapid_pass.py new file mode 100644 index 0000000..c5b0bc5 --- /dev/null +++ b/api/services/docling/scripts/rapid_pass.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python3 +""" +rapid_pass.py — generalise the proven AQA "RapidOCR margin-pass" (95.2% on the image-only +8463 paper) to any AQA paper. Born-digital AQA QPs ship a text layer, so we force RapidOCR +over the *rendered* page (`force_ocr:true`) to simulate the image-only redistribution case +and recover the boxed `NN.M` question numbers Tesseract shatters. + +For each page it writes results//p{N}.json (a full per-page DoclingDocument, the +shape extract.py's aqa_questions_rapid expects) and a merged.json (for board / front-matter +detection). All GPU work is serialised + OOM-resilient through dsync. + +Usage: + python scripts/rapid_pass.py samples/extra/aqa-alevel-physics-7408-1-jun22-qp.pdf rapid_7408 + python scripts/rapid_pass.py [first_page] [last_page] +""" +import os, sys, json, subprocess, re +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +import dsync + +OPTS = {"ocr_engine": "rapidocr", "force_ocr": True} + + +def npages(pdf): + out = subprocess.check_output(["pdfinfo", pdf]).decode() + return int(out.split("Pages:")[1].split()[0]) + + +def main(): + pdf = sys.argv[1] + slug = sys.argv[2] + if os.path.isabs(slug) or ".." in slug.split(os.sep) or not re.fullmatch(r"[A-Za-z0-9._/-]+", slug): + raise SystemExit(f"unsafe output slug: {slug!r}") + n = npages(pdf) + first = int(sys.argv[3]) if len(sys.argv) > 3 else 1 + last = min(int(sys.argv[4]), n) if len(sys.argv) > 4 else n + if first > n or first > last: + print(f"requested page range {first}-{last} is outside PDF ({n} pages); nothing to do") + return + outdir = os.path.join("results", slug) + os.makedirs(outdir, exist_ok=True) + + r = dsync._redis() + print(f"redis: {'connected' if r else 'NO CACHE'} pdf={pdf} pages {first}-{last}/{n}") + merged = {"texts": [], "tables": [], "pictures": [], "pages": {}, "_failed_pages": []} + for pg in range(first, last + 1): + page_path = os.path.join(outdir, f"p{pg}.json") + if os.path.exists(page_path): + doc = json.load(open(page_path)) + print(f" p{pg}: file cache HIT ({len(doc.get(texts, []))} texts)") + else: + doc = dsync.convert_page(pdf, pg, OPTS, r=r) + if not doc: + merged["_failed_pages"].append(pg) + print(f" p{pg}: FAILED") + continue + json.dump(doc, open(page_path, "w")) + for k in ("texts", "tables", "pictures"): + merged[k].extend(doc.get(k, [])) + merged["pages"].update(doc.get("pages", {})) + nmarg = sum(1 for t in doc.get("texts", []) + if (t.get("prov") or [{}])[0].get("bbox", {}).get("l", 999) <= 140) + print(f" p{pg}: {len(doc.get('texts', []))} texts ({nmarg} left-margin)") + json.dump(merged, open(os.path.join(outdir, "merged.json"), "w")) + print(f"-> {outdir}/ ({last-first+1-len(merged['_failed_pages'])} pages, " + f"failed={merged['_failed_pages']})") + + +if __name__ == "__main__": + main()