[verified] add B1 OCR eval baseline harness

This commit is contained in:
kcar 2026-06-08 02:51:33 +01:00
parent a6753d092f
commit f511a336c0
305 changed files with 61441 additions and 12 deletions

View File

@ -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 |",

View File

@ -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"
]
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

View File

@ -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}}}

File diff suppressed because one or more lines are too long

View File

@ -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}}}

View File

@ -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}}}

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

View File

@ -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}}}

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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}}}

View File

@ -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}}}

File diff suppressed because one or more lines are too long

View File

@ -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}}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More